2015-05-12 16:49:01 +03:00
|
|
|
/*
|
|
|
|
This software is in the public domain, furnished "as is", without technical
|
|
|
|
support, and with no warranty, express or implied, as to its usefulness for
|
|
|
|
any purpose.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#include "filesystem.h"
|
2017-08-16 09:36:52 +03:00
|
|
|
#include "common/utility.h"
|
2015-05-12 16:49:01 +03:00
|
|
|
|
|
|
|
using namespace OCC::Utility;
|
|
|
|
using namespace OCC::FileSystem;
|
|
|
|
|
|
|
|
class TestFileSystem : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2017-02-09 19:40:32 +03:00
|
|
|
QTemporaryDir _root;
|
2015-05-12 16:49:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
QByteArray shellSum( const QByteArray& cmd, const QString& file )
|
|
|
|
{
|
|
|
|
QProcess md5;
|
|
|
|
QStringList args;
|
|
|
|
args.append(file);
|
|
|
|
md5.start(cmd, args);
|
|
|
|
QByteArray sumShell;
|
|
|
|
qDebug() << "File: "<< file;
|
|
|
|
|
|
|
|
if( md5.waitForFinished() ) {
|
|
|
|
|
|
|
|
sumShell = md5.readAll();
|
|
|
|
sumShell = sumShell.left( sumShell.indexOf(' '));
|
|
|
|
}
|
|
|
|
return sumShell;
|
|
|
|
}
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void testMd5Calc()
|
|
|
|
{
|
2017-02-09 19:40:32 +03:00
|
|
|
QString file( _root.path() + "/file_a.bin");
|
|
|
|
QVERIFY(writeRandomFile(file));
|
|
|
|
QFileInfo fi(file);
|
|
|
|
QVERIFY(fi.exists());
|
|
|
|
QByteArray sum = calcMd5(file);
|
|
|
|
|
|
|
|
QByteArray sSum = shellSum("md5sum", file);
|
|
|
|
if (sSum.isEmpty())
|
|
|
|
QSKIP("Couldn't execute md5sum to calculate checksum, executable missing?", SkipSingle);
|
|
|
|
|
|
|
|
QVERIFY(!sum.isEmpty());
|
|
|
|
QCOMPARE(sSum, sum);
|
2015-05-12 16:49:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void testSha1Calc()
|
|
|
|
{
|
2017-02-09 19:40:32 +03:00
|
|
|
QString file( _root.path() + "/file_b.bin");
|
|
|
|
writeRandomFile(file);
|
|
|
|
QFileInfo fi(file);
|
|
|
|
QVERIFY(fi.exists());
|
|
|
|
QByteArray sum = calcSha1(file);
|
|
|
|
|
|
|
|
QByteArray sSum = shellSum("sha1sum", file);
|
|
|
|
if (sSum.isEmpty())
|
|
|
|
QSKIP("Couldn't execute sha1sum to calculate checksum, executable missing?", SkipSingle);
|
|
|
|
|
|
|
|
QVERIFY(!sum.isEmpty());
|
|
|
|
QCOMPARE(sSum, sum);
|
2015-05-12 16:49:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-05-11 02:17:16 +03:00
|
|
|
QTEST_APPLESS_MAIN(TestFileSystem)
|
2016-03-30 18:58:15 +03:00
|
|
|
#include "testfilesystem.moc"
|