File: documentiddbtest.cpp

package info (click to toggle)
baloo-kf5 5.103.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,880 kB
  • sloc: cpp: 25,143; sh: 23; xml: 15; makefile: 9
file content (59 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download | duplicates (3)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
    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 "documentiddb.h"
#include "singledbtest.h"

using namespace Baloo;

class DocIdDBTest : public SingleDBTest
{
    Q_OBJECT
private Q_SLOTS:
    void test();
    void testFetchItems();

    void testSize()
    {
        DocumentIdDB db(DocumentIdDB::create("foo", m_txn), m_txn);

        db.put(1);
        db.put(6);
        db.put(8);
        QCOMPARE(db.size(), static_cast<uint>(3));
    }
};

void DocIdDBTest::test()
{
    DocumentIdDB db(DocumentIdDB::create("foo", m_txn), m_txn);

    QCOMPARE(db.contains(1), false);
    db.put(1);
    QCOMPARE(db.contains(1), true);

    db.del(1);
    QCOMPARE(db.contains(1), false);
}

void DocIdDBTest::testFetchItems()
{
    DocumentIdDB db(DocumentIdDB::create("foo", m_txn), m_txn);

    db.put(1);
    db.put(6);
    db.put(8);

    QVector<quint64> acVec = db.fetchItems(10);
    QVector<quint64> exVec = {1, 6, 8};

    QCOMPARE(acVec, exVec);
}

QTEST_MAIN(DocIdDBTest)

#include "documentiddbtest.moc"