Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kieschnick <christian.kieschnick@hicknhack-software.com>2018-01-16 10:34:56 +0300
committerJanek Bevendorff <janek@jbev.net>2018-01-23 02:57:04 +0300
commit258438f01fdf4c33fee41fd242e561acff3ef9fa (patch)
treed45452b7dd43b6f81b0b882260a4f8b09ba1d76d /tests/TestModified.cpp
parent943dc6cdd603fae915c8f3cb476b8374e908c4a7 (diff)
Fix code-style issues
Fixed issues pointed out during review
Diffstat (limited to 'tests/TestModified.cpp')
-rw-r--r--tests/TestModified.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/tests/TestModified.cpp b/tests/TestModified.cpp
index 9ae28b80c..4c5ce1c2b 100644
--- a/tests/TestModified.cpp
+++ b/tests/TestModified.cpp
@@ -400,8 +400,10 @@ void TestModified::testHistoryItem()
entry2->endUpdate();
QCOMPARE(entry2->historyItems().size(), 0);
+ const int historyMaxSize = 17000;
+
db->metadata()->setHistoryMaxItems(-1);
- db->metadata()->setHistoryMaxSize(17000);
+ db->metadata()->setHistoryMaxSize(historyMaxSize);
entry2->beginUpdate();
entry2->attachments()->set("test", QByteArray(18000, 'X'));
@@ -469,19 +471,21 @@ void TestModified::testHistoryItem()
entry4->setGroup(root);
QCOMPARE(entry4->historyItems().size(), 0);
+ const QString key("test");
+
int reservedSize = entry4->attributes()->attributesSize();
entry4->beginUpdate();
- entry4->attachments()->set("test1", QByteArray(17000 - 5 - reservedSize + 1, 'a'));
+ entry4->attachments()->set(key, QByteArray(historyMaxSize - key.size() - reservedSize + 1, 'a'));
entry4->endUpdate();
QCOMPARE(entry4->historyItems().size(), 1);
entry4->beginUpdate();
- entry4->attachments()->remove("test1");
+ entry4->attachments()->remove(key);
entry4->endUpdate();
QCOMPARE(entry4->historyItems().size(), 0);
entry4->beginUpdate();
- entry4->setTags(QByteArray(17000 - reservedSize + 1, 'a'));
+ entry4->setTags(QByteArray(historyMaxSize - reservedSize + 1, 'a'));
entry4->endUpdate();
QCOMPARE(entry4->historyItems().size(), 1);
@@ -491,19 +495,19 @@ void TestModified::testHistoryItem()
QCOMPARE(entry4->historyItems().size(), 0);
entry4->beginUpdate();
- entry4->attributes()->set("test3", QByteArray(17000 - 5 - reservedSize + 1, 'a'));
+ entry4->attributes()->set(key, QByteArray(historyMaxSize - key.size() - reservedSize + 1, 'a'));
entry4->endUpdate();
QCOMPARE(entry4->historyItems().size(), 1);
entry4->beginUpdate();
- entry4->attributes()->remove("test3");
+ entry4->attributes()->remove(key);
entry4->endUpdate();
QCOMPARE(entry4->historyItems().size(), 0);
entry4->beginUpdate();
AutoTypeAssociations::Association association;
- association.window = "test3";
- association.sequence = QByteArray(17000 - 5 - reservedSize + 1, 'a');
+ association.window = key;
+ association.sequence = QByteArray(historyMaxSize - key.size() - reservedSize + 1, 'a');
entry4->autoTypeAssociations()->add(association);
entry4->endUpdate();
QCOMPARE(entry4->historyItems().size(), 1);