1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/*
This file is part of the KDE Baloo project.
SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>
SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "documentdatadb.h"
#include "singledbtest.h"
using namespace Baloo;
class DocumentDataDBTest : public SingleDBTest
{
Q_OBJECT
private Q_SLOTS:
void test() {
DocumentDataDB db(DocumentDataDB::create(m_txn), m_txn);
QByteArray arr = "/home/blah";
db.put(1, arr);
QCOMPARE(db.get(1), arr);
QVERIFY(db.contains(1));
db.del(1);
QCOMPARE(db.get(1), QByteArray());
QVERIFY(!db.contains(1));
}
};
QTEST_MAIN(DocumentDataDBTest)
#include "documentdatadbtest.moc"
|