kde-workspace/kcontrol/keyboard/tests/keyboard_daemon_test.cpp
2014-11-13 19:30:51 +02:00

101 lines
3.4 KiB
C++

/*
* Copyright (C) 2011 Andriy Rysin (rysin@kde.org)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <kdebug.h>
//#include <kapplication.h>
#include <qtest_kde.h>
#include <QtGui/QIcon>
#include "../flags.h"
#include "../xkb_rules.h"
#include "../keyboard_config.h"
#include "../keyboard_daemon.h"
class KeyboardDaemonTest : public QObject
{
Q_OBJECT
KeyboardDaemon* keyboardDaemon;
// KApplication* kapplication;
private Q_SLOTS:
void initTestCase() {
// kapplication = new KApplication();
// const KAboutData* kAboutData = new KAboutData(i18n("a").toAscii(), i18n("a").toAscii(), KLocalizedString(), i18n("a").toAscii());
// KCmdLineArgs::init(kAboutData);
keyboardDaemon = new KeyboardDaemon(this, QList<QVariant>());
}
void cleanupTestCase() {
delete keyboardDaemon;
// delete kapplication;
}
void testDaemon() {
QVERIFY( keyboardDaemon != NULL );
// QVERIFY( ! flags->getTransparentPixmap().isNull() );
//
// const QIcon iconUs(flags->getIcon("us"));
// QVERIFY( ! iconUs.isNull() );
// QVERIFY( flags->getIcon("--").isNull() );
//
// KeyboardConfig keyboardConfig;
// LayoutUnit layoutUnit("us");
// LayoutUnit layoutUnit1("us", "intl");
// layoutUnit1.setDisplayName("usi");
// LayoutUnit layoutUnit2("us", "other");
//
// keyboardConfig.showFlag = true;
// const QIcon iconUsFlag = flags->getIconWithText(layoutUnit, keyboardConfig);
// QVERIFY( ! iconUsFlag.isNull() );
// QCOMPARE( image(iconUsFlag), image(iconUs) );
//
// keyboardConfig.showFlag = false;
// const QIcon iconUsText = flags->getIconWithText(layoutUnit, keyboardConfig);
// QVERIFY( ! iconUsText.isNull() );
// QVERIFY( image(iconUsText) != image(iconUs) );
//
// keyboardConfig.layouts.append(layoutUnit1);
// QCOMPARE( flags->getShortText(layoutUnit, keyboardConfig), QString("us") );
// QCOMPARE( flags->getShortText(layoutUnit1, keyboardConfig), QString("usi") );
// QCOMPARE( flags->getShortText(layoutUnit2, keyboardConfig), QString("us") );
//
// const Rules* rules = Rules::readRules();
// QCOMPARE( flags->getLongText(layoutUnit, rules), QString("USA") );
// QVERIFY( flags->getLongText(layoutUnit1, rules).startsWith("USA - International") );
// QCOMPARE( flags->getLongText(layoutUnit2, rules), QString("USA - other") );
//
// flags->clearCache();
}
// void loadRulesBenchmark() {
// QBENCHMARK {
// Flags* flags = new Flags();
// delete flags;
// }
// }
};
// need GUI for xkb protocol in xkb_rules.cpp
QTEST_KDEMAIN( KeyboardDaemonTest, GUI )
#include "keyboard_daemon_test.moc"