Unit test for disk space.

This commit is contained in:
vng 2012-06-29 17:00:40 -07:00 committed by Alex Zolotarev
parent 43fbdfbbe0
commit 65e502c38b
2 changed files with 22 additions and 12 deletions

View file

@ -36,3 +36,25 @@ UNIT_TEST(FileData_Api_Smoke)
TEST_EQUAL(my::GetFileSize(newName, sz), false, ());
}
/*
UNIT_TEST(FileData_NoDiskSpace)
{
char const * name = "/Volumes/KINDLE/file.bin";
vector<uint8_t> bytes(100000000);
try
{
my::FileData f(name, my::FileData::OP_WRITE_TRUNCATE);
for (size_t i = 0; i < 100; ++i)
f.Write(&bytes[0], bytes.size());
}
catch (Writer::Exception const & ex)
{
LOG(LINFO, ("Writer exception catched"));
}
(void)my::DeleteFileX(name);
}
*/

View file

@ -28,15 +28,3 @@ UNIT_TEST(MemWriterSimple)
TEST_EQUAL(data.size(), ARRAY_SIZE(expected)-1, ());
TEST(equal(data.begin(), data.end(), &expected[0]), (data));
}
/*
UNIT_TEST(FileWriter_NoDiskSpace)
{
FileWriter w("/Volumes/Untitled/file.bin");
vector<uint8_t> bytes(100000000);
for (size_t i = 0; i < 10; ++i)
w.Write(&bytes[0], bytes.size());
}
*/