Simplify db tests.

This commit is contained in:
John Preston 2018-08-24 15:10:42 +03:00
parent d426f7242a
commit 2940023cb0
1 changed files with 116 additions and 288 deletions

View File

@ -72,6 +72,40 @@ const auto GetValue = [](QByteArray value) {
Semaphore.release(); Semaphore.release();
}; };
Error Open(Database &db, const Storage::EncryptionKey &key) {
db.open(key, GetResult);
Semaphore.acquire();
return Result;
}
void Close(Database &db) {
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
}
Error Clear(Database &db) {
db.clear(GetResult);
Semaphore.acquire();
return Result;
}
QByteArray Get(Database &db, const Key &key) {
db.get(key, GetValue);
Semaphore.acquire();
return Value;
}
Error Put(Database &db, const Key &key, const QByteArray &value) {
db.put(key, value, GetResult);
Semaphore.acquire();
return Result;
}
void Remove(Database &db, const Key &key) {
db.remove(Key{ 0, 1 }, [&] { Semaphore.release(); });
Semaphore.acquire();
}
const auto Settings = [] { const auto Settings = [] {
auto result = Database::Settings(); auto result = Database::Settings();
result.trackEstimatedTime = false; result.trackEstimatedTime = false;
@ -96,100 +130,44 @@ TEST_CASE("encrypted cache db", "[storage_cache_database]") {
SECTION("writing db") { SECTION("writing db") {
Database db(name, Settings); Database db(name, Settings);
db.clear(GetResult); REQUIRE(Clear(db).type == Error::Type::None);
Semaphore.acquire(); REQUIRE(Open(db, key).type == Error::Type::None);
REQUIRE(Result.type == Error::Type::None); REQUIRE(Put(db, Key{ 0, 1 }, TestValue1).type == Error::Type::None);
Close(db);
db.open(key, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
db.put(Key{ 0, 1 }, TestValue1, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("reading and writing db") { SECTION("reading and writing db") {
Database db(name, Settings); Database db(name, Settings);
db.open(key, GetResult); REQUIRE(Open(db, key).type == Error::Type::None);
Semaphore.acquire(); REQUIRE((Get(db, Key{ 0, 1 }) == TestValue1));
REQUIRE(Result.type == Error::Type::None); REQUIRE(Put(db, Key{ 1, 0 }, TestValue2).type == Error::Type::None);
REQUIRE((Get(db, Key{ 1, 0 }) == TestValue2));
db.get(Key{ 0, 1 }, GetValue); REQUIRE(Get(db, Key{ 1, 1 }).isEmpty());
Semaphore.acquire(); Close(db);
REQUIRE((Value == TestValue1));
db.put(Key{ 1, 0 }, TestValue2, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
db.get(Key{ 1, 0 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.get(Key{ 1, 1 }, GetValue);
Semaphore.acquire();
REQUIRE(Value.isEmpty());
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("reading db") { SECTION("reading db") {
Database db(name, Settings); Database db(name, Settings);
db.open(key, GetResult); REQUIRE(Open(db, key).type == Error::Type::None);
Semaphore.acquire(); REQUIRE((Get(db, Key{ 0, 1 }) == TestValue1));
REQUIRE(Result.type == Error::Type::None); REQUIRE((Get(db, Key{ 1, 0 }) == TestValue2));
Close(db);
db.get(Key{ 0, 1 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.get(Key{ 1, 0 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("overwriting values") { SECTION("overwriting values") {
Database db(name, Settings); Database db(name, Settings);
db.open(key, GetResult); REQUIRE(Open(db, key).type == Error::Type::None);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto path = GetBinlogPath(); const auto path = GetBinlogPath();
REQUIRE((Get(db, Key{ 0, 1 }) == TestValue1));
db.get(Key{ 0, 1 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
const auto size = QFile(path).size(); const auto size = QFile(path).size();
REQUIRE(Put(db, Key{ 0, 1 }, TestValue2).type == Error::Type::None);
db.put(Key{ 0, 1 }, TestValue2, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto next = QFile(path).size(); const auto next = QFile(path).size();
REQUIRE(next > size); REQUIRE(next > size);
REQUIRE((Get(db, Key{ 0, 1 }) == TestValue2));
db.get(Key{ 0, 1 }, GetValue); REQUIRE(Put(db, Key{ 0, 1 }, TestValue2).type == Error::Type::None);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.put(Key{ 0, 1 }, TestValue2, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto same = QFile(path).size(); const auto same = QFile(path).size();
REQUIRE(same == next); REQUIRE(same == next);
Close(db);
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
} }
@ -197,47 +175,22 @@ TEST_CASE("cache db remove", "[storage_cache_database]") {
SECTION("db remove deletes value") { SECTION("db remove deletes value") {
Database db(name, Settings); Database db(name, Settings);
db.clear(GetResult); REQUIRE(Clear(db).type == Error::Type::None);
Semaphore.acquire(); REQUIRE(Open(db, key).type == Error::Type::None);
REQUIRE(Result.type == Error::Type::None); REQUIRE(Put(db, Key{ 0, 1 }, TestValue1).type == Error::Type::None);
REQUIRE(Put(db, Key{ 1, 0 }, TestValue2).type == Error::Type::None);
db.open(key, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
db.put(Key{ 0, 1 }, TestValue1, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
db.put(Key{ 1, 0 }, TestValue2, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
db.remove(Key{ 0, 1 }, nullptr); db.remove(Key{ 0, 1 }, nullptr);
db.get(Key{ 0, 1 }, GetValue); REQUIRE(Get(db, Key{ 0, 1 }).isEmpty());
Semaphore.acquire(); REQUIRE((Get(db, Key{ 1, 0 }) == TestValue2));
REQUIRE(Value.isEmpty()); Close(db);
db.get(Key{ 1, 0 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("db remove deletes value permanently") { SECTION("db remove deletes value permanently") {
Database db(name, Settings); Database db(name, Settings);
db.open(key, GetResult); REQUIRE(Open(db, key).type == Error::Type::None);
Semaphore.acquire(); REQUIRE(Get(db, Key{ 0, 1 }).isEmpty());
REQUIRE(Result.type == Error::Type::None); REQUIRE((Get(db, Key{ 1, 0 }) == TestValue2));
Close(db);
db.get(Key{ 1, 0 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
} }
@ -247,134 +200,58 @@ TEST_CASE("cache db bundled actions", "[storage_cache_database]") {
settings.trackEstimatedTime = true; settings.trackEstimatedTime = true;
Database db(name, settings); Database db(name, settings);
db.clear(GetResult); REQUIRE(Clear(db).type == Error::Type::None);
Semaphore.acquire(); REQUIRE(Open(db, key).type == Error::Type::None);
REQUIRE(Result.type == Error::Type::None);
db.open(key, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto path = GetBinlogPath(); const auto path = GetBinlogPath();
REQUIRE(Put(db, Key{ 0, 1 }, TestValue1).type == Error::Type::None);
db.put(Key{ 0, 1 }, TestValue1, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto size = QFile(path).size(); const auto size = QFile(path).size();
REQUIRE((Get(db, Key{ 0, 1 }) == TestValue1));
db.get(Key{ 0, 1 }, GetValue); REQUIRE(QFile(path).size() == size);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
const auto same = QFile(path).size();
REQUIRE(same == size);
AdvanceTime(2); AdvanceTime(2);
REQUIRE(QFile(path).size() > size);
const auto next = QFile(path).size(); Close(db);
REQUIRE(next > size);
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("db touched written on close") { SECTION("db touched written on close") {
auto settings = Settings; auto settings = Settings;
settings.trackEstimatedTime = true; settings.trackEstimatedTime = true;
Database db(name, settings); Database db(name, settings);
db.clear(GetResult); REQUIRE(Clear(db).type == Error::Type::None);
Semaphore.acquire(); REQUIRE(Open(db, key).type == Error::Type::None);
REQUIRE(Result.type == Error::Type::None);
db.open(key, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto path = GetBinlogPath(); const auto path = GetBinlogPath();
REQUIRE(Put(db, Key{ 0, 1 }, TestValue1).type == Error::Type::None);
db.put(Key{ 0, 1 }, TestValue1, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto size = QFile(path).size(); const auto size = QFile(path).size();
REQUIRE((Get(db, Key{ 0, 1 }) == TestValue1));
db.get(Key{ 0, 1 }, GetValue); REQUIRE(QFile(path).size() == size);
Semaphore.acquire(); Close(db);
REQUIRE((Value == TestValue1)); REQUIRE(QFile(path).size() > size);
const auto same = QFile(path).size();
REQUIRE(same == size);
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
const auto next = QFile(path).size();
REQUIRE(next > size);
} }
SECTION("db remove written lazily") { SECTION("db remove written lazily") {
Database db(name, Settings); Database db(name, Settings);
db.clear(GetResult); REQUIRE(Clear(db).type == Error::Type::None);
Semaphore.acquire(); REQUIRE(Open(db, key).type == Error::Type::None);
REQUIRE(Result.type == Error::Type::None);
db.open(key, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto path = GetBinlogPath(); const auto path = GetBinlogPath();
REQUIRE(Put(db, Key{ 0, 1 }, TestValue1).type == Error::Type::None);
db.put(Key{ 0, 1 }, TestValue1, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto size = QFile(path).size(); const auto size = QFile(path).size();
Remove(db, Key{ 0, 1 });
db.remove(Key{ 0, 1 }, [&] { Semaphore.release(); }); REQUIRE(QFile(path).size() == size);
Semaphore.acquire();
const auto same = QFile(path).size();
REQUIRE(same == size);
AdvanceTime(2); AdvanceTime(2);
REQUIRE(QFile(path).size() > size);
const auto next = QFile(path).size(); Close(db);
REQUIRE(next > size);
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("db remove written on close") { SECTION("db remove written on close") {
Database db(name, Settings); Database db(name, Settings);
db.clear(GetResult); REQUIRE(Clear(db).type == Error::Type::None);
Semaphore.acquire(); REQUIRE(Open(db, key).type == Error::Type::None);
REQUIRE(Result.type == Error::Type::None);
db.open(key, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto path = GetBinlogPath(); const auto path = GetBinlogPath();
REQUIRE(Put(db, Key{ 0, 1 }, TestValue1).type == Error::Type::None);
db.put(Key{ 0, 1 }, TestValue1, GetResult);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
const auto size = QFile(path).size(); const auto size = QFile(path).size();
Remove(db, Key{ 0, 1 });
db.remove(Key{ 0, 1 }, [&] { Semaphore.release(); }); REQUIRE(QFile(path).size() == size);
Semaphore.acquire(); Close(db);
REQUIRE(QFile(path).size() > size);
const auto same = QFile(path).size();
REQUIRE(same == size);
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
const auto next = QFile(path).size();
REQUIRE(next > size);
} }
} }
@ -397,24 +274,12 @@ TEST_CASE("cache db limits", "[storage_cache_database]") {
db.put(Key{ 2, 0 }, TestValue2, nullptr); db.put(Key{ 2, 0 }, TestValue2, nullptr);
db.put(Key{ 0, 2 }, TestValue1, nullptr); db.put(Key{ 0, 2 }, TestValue1, nullptr);
AdvanceTime(2); AdvanceTime(2);
db.get(Key{ 0, 1 }, GetValue); REQUIRE(Get(db, Key{ 0, 1 }).isEmpty());
Semaphore.acquire(); REQUIRE(Get(db, Key{ 1, 0 }).isEmpty());
REQUIRE(Value.isEmpty()); REQUIRE((Get(db, Key{ 1, 1 }) == TestValue1));
db.get(Key{ 1, 0 }, GetValue); REQUIRE((Get(db, Key{ 2, 0 }) == TestValue2));
Semaphore.acquire(); REQUIRE((Get(db, Key{ 0, 2 }) == TestValue1));
REQUIRE(Value.isEmpty()); Close(db);
db.get(Key{ 1, 1 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.get(Key{ 2, 0 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.get(Key{ 0, 2 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("db size limit") { SECTION("db size limit") {
auto settings = Settings; auto settings = Settings;
@ -434,54 +299,27 @@ TEST_CASE("cache db limits", "[storage_cache_database]") {
db.put(Key{ 2, 0 }, TestValue2, nullptr); db.put(Key{ 2, 0 }, TestValue2, nullptr);
// Removing { 1, 0 } will be scheduled. // Removing { 1, 0 } will be scheduled.
db.get(Key{ 0, 1 }, GetValue); REQUIRE((Get(db, Key{ 0, 1 }) == TestValue1));
Semaphore.acquire(); REQUIRE((Get(db, Key{ 1, 1 }) == TestValue1));
REQUIRE((Value == TestValue1)); REQUIRE((Get(db, Key{ 2, 0 }) == TestValue2));
db.get(Key{ 1, 1 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.get(Key{ 2, 0 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
AdvanceTime(2); AdvanceTime(2);
// Removing { 1, 0 } performed. // Removing { 1, 0 } performed.
db.get(Key{ 1, 0 }, GetValue); REQUIRE(Get(db, Key{ 1, 0 }).isEmpty());
Semaphore.acquire(); REQUIRE((Get(db, Key{ 1, 1 }) == TestValue1));
REQUIRE(Value.isEmpty());
db.get(Key{ 1, 1 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.put(Key{ 0, 2 }, TestValue1, nullptr); db.put(Key{ 0, 2 }, TestValue1, nullptr);
db.put(Key{ 2, 2 }, TestValue2, GetResult); REQUIRE(Put(db, Key{ 2, 2 }, TestValue2).type == Error::Type::None);
Semaphore.acquire();
REQUIRE(Result.type == Error::Type::None);
// Removing { 0, 1 } and { 2, 0 } will be scheduled. // Removing { 0, 1 } and { 2, 0 } will be scheduled.
AdvanceTime(2); AdvanceTime(2);
// Removing { 0, 1 } and { 2, 0 } performed. // Removing { 0, 1 } and { 2, 0 } performed.
db.get(Key{ 0, 1 }, GetValue); REQUIRE(Get(db, Key{ 0, 1 }).isEmpty());
Semaphore.acquire(); REQUIRE(Get(db, Key{ 2, 0 }).isEmpty());
REQUIRE(Value.isEmpty()); REQUIRE((Get(db, Key{ 1, 1 }) == TestValue1));
db.get(Key{ 2, 0 }, GetValue); REQUIRE((Get(db, Key{ 0, 2 }) == TestValue1));
Semaphore.acquire(); REQUIRE((Get(db, Key{ 2, 2 }) == TestValue2));
REQUIRE(Value.isEmpty()); Close(db);
db.get(Key{ 1, 1 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.get(Key{ 0, 2 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.get(Key{ 2, 2 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
SECTION("db time limit") { SECTION("db time limit") {
auto settings = Settings; auto settings = Settings;
@ -505,20 +343,10 @@ TEST_CASE("cache db limits", "[storage_cache_database]") {
db.get(Key{ 1, 0 }, nullptr); db.get(Key{ 1, 0 }, nullptr);
db.get(Key{ 0, 1 }, nullptr); db.get(Key{ 0, 1 }, nullptr);
AdvanceTime(3); AdvanceTime(3);
db.get(Key{ 2, 0 }, GetValue); REQUIRE(Get(db, Key{ 2, 0 }).isEmpty());
Semaphore.acquire(); REQUIRE(Get(db, Key{ 1, 1 }).isEmpty());
REQUIRE(Value.isEmpty()); REQUIRE((Get(db, Key{ 1, 0 }) == TestValue2));
db.get(Key{ 1, 1 }, GetValue); REQUIRE((Get(db, Key{ 0, 1 }) == TestValue1));
Semaphore.acquire(); Close(db);
REQUIRE(Value.isEmpty());
db.get(Key{ 1, 0 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue2));
db.get(Key{ 0, 1 }, GetValue);
Semaphore.acquire();
REQUIRE((Value == TestValue1));
db.close([&] { Semaphore.release(); });
Semaphore.acquire();
} }
} }