ScreenTranslator/tests/updates_test.cpp

135 lines
2.6 KiB
C++
Raw Permalink Normal View History

2020-04-17 23:43:25 +07:00
#include <gtest/gtest.h>
#include "updates.h"
#include <QDebug>
#include <QFileInfo>
#include <QSignalSpy>
using namespace update;
namespace
{
const auto f1 = "from1.txt";
const auto t1 = "test/to1.txt";
const auto data = "sample";
File toFile(const QString& to)
2020-04-17 23:43:25 +07:00
{
File result;
result.expandedPath = to;
return result;
}
bool writeFile(const QString& name, const QByteArray& data)
{
QFile f(name);
if (!f.open(QFile::WriteOnly))
return false;
f.write(data);
return true;
}
QByteArray readFile(const QString& name)
{
QFile f(name);
if (!f.open(QFile::ReadOnly))
return {};
return f.readAll();
}
bool removeFile(const QString& name)
{
if (!QFile::exists(name))
return true;
return QFile::remove(name);
}
} // namespace
TEST(UpdateInstaller, SuccessInstall)
{
ASSERT_TRUE(removeFile(t1));
Installer testee;
testee.install(toFile(t1), data);
2020-04-17 23:43:25 +07:00
ASSERT_EQ(data, readFile(t1));
ASSERT_TRUE(testee.error().isEmpty());
2020-04-17 23:43:25 +07:00
}
TEST(UpdateInstaller, SuccessRemove)
{
ASSERT_TRUE(writeFile(f1, data));
Installer testee;
testee.remove(toFile(f1));
2020-04-17 23:43:25 +07:00
ASSERT_FALSE(QFile::exists(f1));
ASSERT_TRUE(testee.error().isEmpty());
2020-04-17 23:43:25 +07:00
}
2021-04-16 02:06:23 +07:00
#ifdef Q_OS_LINUX
2020-04-17 23:43:25 +07:00
TEST(UpdateInstaller, FailInstallNoWritable)
{
const auto t1 = "/foo.txt";
QFile f(t1);
ASSERT_FALSE(f.isWritable());
Installer testee;
testee.install(toFile(t1), data);
ASSERT_FALSE(testee.error().isEmpty());
2020-04-17 23:43:25 +07:00
}
2021-04-16 02:06:23 +07:00
#endif
2020-04-17 23:43:25 +07:00
TEST(UpdateInstaller, FailRemove)
{
const auto f1 = QString("/var/log/faillog");
QFile f(f1);
if (!f.exists())
return;
ASSERT_FALSE(QFile::copy(f1, f1 + "1")); // non writable
Installer testee;
testee.remove(toFile(f1));
ASSERT_FALSE(testee.error().isEmpty());
2020-04-17 23:43:25 +07:00
}
TEST(UpdateModel, ParseFail)
{
const auto updates = R"({
})";
Updater updater({});
Model testee(updater);
2020-04-17 23:43:25 +07:00
const auto error = testee.parse(updates);
ASSERT_FALSE(error.isEmpty());
ASSERT_EQ(0, testee.rowCount({}));
}
TEST(UpdateModel, Parse)
{
const auto updates = R"({
"version":1
,"app":{
"comp1":{"version":"3.0.0", "files":[{"path":"$appdir$/screen-translator.exe", "md5":""}]}
}
,"recognizers": {
"Afrikaans":{"files":[
{"url":"https://example.com/test1", "path":"$tessdata$/afr.traineddata", "date":"2020-03-09T08:28:45+01:00", "size":12800552}
]}
}
})";
Updater updater({});
Model testee(updater);
2020-04-17 23:43:25 +07:00
const auto error = testee.parse(updates);
ASSERT_TRUE(error.isEmpty());
ASSERT_EQ(2, testee.rowCount({}));
const auto app = testee.index(0, 0, {});
const auto comp1 = testee.index(0, 0, app);
const auto comp1Name =
comp1.sibling(comp1.row(), int(Model::Column::Name)).data().toString();
ASSERT_EQ("comp1", comp1Name);
}