summaryrefslogtreecommitdiff
path: root/qhexedit2/test/main.cpp
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-07-07 12:37:21 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-07-07 12:37:21 +0200
commitfebaef00017278ac65cb7e285564ebc9d5dadfe5 (patch)
tree940ac1386117785496334432dc03a3c0cfa02de5 /qhexedit2/test/main.cpp
parentf41f2dce18111c923c331a3fe6900edee731d040 (diff)
parent004b73ed7ef33cb407897f7eccbec5f3861f99d7 (diff)
Merge commit '004b73ed7ef33cb407897f7eccbec5f3861f99d7' as 'qhexedit2'
Diffstat (limited to 'qhexedit2/test/main.cpp')
-rw-r--r--qhexedit2/test/main.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/qhexedit2/test/main.cpp b/qhexedit2/test/main.cpp
new file mode 100644
index 0000000..bf03695
--- /dev/null
+++ b/qhexedit2/test/main.cpp
@@ -0,0 +1,63 @@
+#include <QCoreApplication>
+#include <QtCore>
+#include <QDir>
+
+#include "testchunks.h"
+
+
+int main()
+{
+ QDir dir("logs");
+ dir.setNameFilters(QStringList() << "*.*");
+ dir.setFilter(QDir::Files);
+ foreach(QString dirFile, dir.entryList())
+ dir.remove(dirFile);
+
+ QString logFilename = "logs/Summary.log";
+ QFile outFile(logFilename);
+ outFile.open(QIODevice::WriteOnly | QIODevice::Text);
+ QTextStream sumLog(&outFile);
+
+ TestChunks tc(sumLog, "overwrite", 0x4000, true);
+ tc.overwrite(4379, 25);
+ tc.overwrite(0, '.');
+ tc.overwrite(0x50, '.');
+ tc.overwrite(0x100, '.');
+ tc.overwrite(0xfff, '.');
+ tc.overwrite(0x1000, '.');
+ tc.overwrite(0x1fff, '.');
+ tc.overwrite(0x3000, '.');
+ tc.overwrite(0x3fff, '.');
+ tc.overwrite(0x2000, '.');
+ tc.overwrite(0x2fff, '.');
+
+ TestChunks tc2(sumLog, "insert", 0x4000, true);
+ tc2.insert(0, 'E'); // 0
+ tc2.insert(0x50, 'x'); // 1
+ tc2.insert(0x100, 'x'); // 2
+ tc2.insert(0x1002, 'L'); // 3
+ tc2.insert(0x1004, 'E'); // 4
+ tc2.insert(0x2004, 'L'); // 5
+ tc2.insert(0x4005, 'L'); // 6
+ tc2.insert(0x3007, 'E'); // 7
+ tc2.insert(0x2008, 'E'); // 8
+ tc2.insert(0x3008, 'L'); // 9
+
+ TestChunks tc3(sumLog, "remove", 0x4000, true);
+ tc3.removeAt(0); // 0
+ tc3.removeAt(0x50); // f
+ tc3.removeAt(0x100); // e
+ tc3.removeAt(0xffc); // d
+ tc3.removeAt(0xffc); // c
+ tc3.removeAt(0x1ffa); // b
+ tc3.removeAt(0x3ff9); // a
+ tc3.removeAt(0x2ffa); // 9
+ tc3.removeAt(0x2ff7); // 8
+ tc3.removeAt(0x1ff7); // 7
+
+ TestChunks tc4(sumLog, "random", 0x40000, true);
+ tc4.random(1000);
+
+ outFile.close();
+ return 0;
+}