pollymc/tests/tst_userutils.cpp

72 lines
1.6 KiB
C++
Raw Normal View History

2013-12-02 20:21:30 +05:30
#include <QTest>
#include <QStandardPaths>
#include "TestUtil.h"
2015-02-09 06:21:14 +05:30
#include "userutils.h"
2013-12-02 20:21:30 +05:30
class UserUtilsTest : public QObject
{
Q_OBJECT
private
slots:
void initTestCase()
{
}
void cleanupTestCase()
{
}
void test_getDesktop()
{
QCOMPARE(Util::getDesktopDir(), QStandardPaths::writableLocation(QStandardPaths::DesktopLocation));
}
2013-12-17 06:39:58 +05:30
// this is only valid on linux
// FIXME: implement on windows, OSX, then test.
#if defined(Q_OS_LINUX)
2013-12-02 20:21:30 +05:30
void test_createShortcut_data()
{
QTest::addColumn<QString>("location");
QTest::addColumn<QString>("dest");
QTest::addColumn<QStringList>("args");
QTest::addColumn<QString>("name");
QTest::addColumn<QString>("iconLocation");
QTest::addColumn<QByteArray>("result");
QTest::newRow("unix") << QDir::currentPath()
<< "asdfDest"
<< (QStringList() << "arg1" << "arg2")
<< "asdf"
<< QString()
#if defined(Q_OS_LINUX)
<< MULTIMC_GET_TEST_FILE("data/tst_userutils-test_createShortcut-unix")
#elif defined(Q_OS_WIN)
2013-12-17 06:39:58 +05:30
<< QByteArray()
2013-12-02 20:21:30 +05:30
#endif
;
}
void test_createShortcut()
{
QFETCH(QString, location);
QFETCH(QString, dest);
QFETCH(QStringList, args);
QFETCH(QString, name);
QFETCH(QString, iconLocation);
QFETCH(QByteArray, result);
QVERIFY(Util::createShortCut(location, dest, args, name, iconLocation));
QCOMPARE(QString::fromLocal8Bit(TestsInternal::readFile(location + QDir::separator() + name + ".desktop")), QString::fromLocal8Bit(result));
//QDir().remove(location);
}
2013-12-17 06:39:58 +05:30
#endif
2013-12-02 20:21:30 +05:30
};
2013-12-17 06:39:58 +05:30
QTEST_GUILESS_MAIN(UserUtilsTest)
2013-12-02 20:21:30 +05:30
#include "tst_userutils.moc"