[tests] Added empty files test.

Signed-off-by: vng <viktor.govako@gmail.com>
This commit is contained in:
vng 2021-04-05 13:18:35 +03:00 committed by Roman Tsisyk
parent 3f776782f7
commit 17edeb29bb

View file

@ -177,3 +177,31 @@ UNIT_TEST(Equal_Function_Test_For_Big_Files)
TEST(base::DeleteFileX(name2), ());
}
}
UNIT_TEST(EmptyFile)
{
using namespace base;
std::string const name = "test.empty";
std::string const copy = "test.empty.copy";
{
FileData f(name, base::FileData::OP_WRITE_TRUNCATE);
}
uint64_t sz;
TEST(GetFileSize(name, sz), ());
TEST_EQUAL(sz, 0, ());
TEST(CopyFileX(name, copy), ());
//TEST(!RenameFileX(name, copy), ());
TEST(DeleteFileX(copy), ());
TEST(RenameFileX(name, copy), ());
TEST(!GetFileSize(name, sz), ());
TEST(GetFileSize(copy, sz), ());
TEST_EQUAL(sz, 0, ());
TEST(DeleteFileX(copy), ());
}