fix testbase and improve settings behaviour
This commit is contained in:
parent
f803963fc6
commit
5dd930ebee
@ -164,9 +164,14 @@ void GuhConfiguration::setServerName(const QString &serverName)
|
|||||||
|
|
||||||
GuhSettings settings(GuhSettings::SettingsRoleGlobal);
|
GuhSettings settings(GuhSettings::SettingsRoleGlobal);
|
||||||
settings.beginGroup("guhd");
|
settings.beginGroup("guhd");
|
||||||
settings.setValue("name", serverName);
|
if (settings.value("name").toString() == serverName) {
|
||||||
settings.endGroup();
|
qCDebug(dcApplication()) << "Configuration: Server name unchainged.";
|
||||||
emit serverNameChanged();
|
settings.endGroup();
|
||||||
|
} else {
|
||||||
|
settings.setValue("name", serverName);
|
||||||
|
settings.endGroup();
|
||||||
|
emit serverNameChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray GuhConfiguration::timeZone() const
|
QByteArray GuhConfiguration::timeZone() const
|
||||||
@ -182,9 +187,14 @@ void GuhConfiguration::setTimeZone(const QByteArray &timeZone)
|
|||||||
|
|
||||||
GuhSettings settings(GuhSettings::SettingsRoleGlobal);
|
GuhSettings settings(GuhSettings::SettingsRoleGlobal);
|
||||||
settings.beginGroup("guhd");
|
settings.beginGroup("guhd");
|
||||||
settings.setValue("timeZone", timeZone);
|
if (settings.value("timeZone").toByteArray() == timeZone) {
|
||||||
settings.endGroup();
|
qCDebug(dcApplication()) << "Configuration: Time zone unchainged.";
|
||||||
emit timeZoneChanged();
|
settings.endGroup();
|
||||||
|
} else {
|
||||||
|
settings.setValue("timeZone", timeZone);
|
||||||
|
settings.endGroup();
|
||||||
|
emit timeZoneChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QLocale GuhConfiguration::locale() const
|
QLocale GuhConfiguration::locale() const
|
||||||
@ -200,9 +210,14 @@ void GuhConfiguration::setLocale(const QLocale &locale)
|
|||||||
|
|
||||||
GuhSettings settings(GuhSettings::SettingsRoleGlobal);
|
GuhSettings settings(GuhSettings::SettingsRoleGlobal);
|
||||||
settings.beginGroup("guhd");
|
settings.beginGroup("guhd");
|
||||||
settings.setValue("language", locale.name());
|
if (settings.value("language").toString() == locale.name()) {
|
||||||
settings.endGroup();
|
qCDebug(dcApplication()) << "Configuration: Language unchainged.";
|
||||||
emit localeChanged();
|
settings.endGroup();
|
||||||
|
} else {
|
||||||
|
settings.setValue("language", locale.name());
|
||||||
|
settings.endGroup();
|
||||||
|
emit localeChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QHash<QString, ServerConfiguration> GuhConfiguration::tcpServerConfigurations() const
|
QHash<QString, ServerConfiguration> GuhConfiguration::tcpServerConfigurations() const
|
||||||
|
|||||||
@ -20,4 +20,3 @@ SUBDIRS = versioning \
|
|||||||
#coap \ # temporary removed until fixed
|
#coap \ # temporary removed until fixed
|
||||||
configurations \
|
configurations \
|
||||||
timemanager \
|
timemanager \
|
||||||
settings \
|
|
||||||
|
|||||||
@ -43,6 +43,10 @@ private slots:
|
|||||||
void testTimeZones();
|
void testTimeZones();
|
||||||
void testServerName();
|
void testServerName();
|
||||||
|
|
||||||
|
void testLanguages();
|
||||||
|
|
||||||
|
private:
|
||||||
|
QVariantMap loadBasicConfiguration();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -62,19 +66,52 @@ void TestConfigurations::getConfigurations()
|
|||||||
|
|
||||||
void TestConfigurations::testTimeZones()
|
void TestConfigurations::testTimeZones()
|
||||||
{
|
{
|
||||||
QVariantMap params; QVariant response; QVariantMap configurations;
|
enableNotifications();
|
||||||
|
|
||||||
|
QVariantMap params; QVariant response; QVariantMap configurations; QVariantList configurationChangedNotifications;
|
||||||
|
|
||||||
|
QSignalSpy notificationSpy(m_mockTcpServer, SIGNAL(outgoingData(QUuid,QByteArray)));
|
||||||
|
|
||||||
QVariantList timeZones = injectAndWait("Configuration.GetTimeZones").toMap().value("params").toMap().value("timeZones").toList();
|
QVariantList timeZones = injectAndWait("Configuration.GetTimeZones").toMap().value("params").toMap().value("timeZones").toList();
|
||||||
QVERIFY(timeZones.count() > 0);
|
QVERIFY(timeZones.count() > 0);
|
||||||
QVERIFY(timeZones.contains("America/Toronto"));
|
QVERIFY(timeZones.contains("America/Toronto"));
|
||||||
QVERIFY(timeZones.contains("Europe/Vienna"));
|
QVERIFY(timeZones.contains("Europe/Vienna"));
|
||||||
|
QVERIFY(timeZones.contains("Africa/Dakar"));
|
||||||
|
|
||||||
// Set current timezone (Europe/Vienna)
|
// Get current configurations
|
||||||
|
QVariantMap basicConfigurationMap = loadBasicConfiguration();
|
||||||
|
|
||||||
|
// Set timezone unchainged
|
||||||
params.clear(); response.clear(); configurations.clear();
|
params.clear(); response.clear(); configurations.clear();
|
||||||
params.insert("timeZone", "Europe/Vienna");
|
params.insert("timeZone", basicConfigurationMap.value("timeZone").toString());
|
||||||
response = injectAndWait("Configuration.SetTimeZone", params);
|
response = injectAndWait("Configuration.SetTimeZone", params);
|
||||||
verifyConfigurationError(response);
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
|
// Check notification not emitted
|
||||||
|
notificationSpy.wait(200);
|
||||||
|
configurationChangedNotifications = checkNotifications(notificationSpy, "Configuration.BasicConfigurationChanged");
|
||||||
|
QVERIFY2(configurationChangedNotifications.count() == 0, "Got Configuration.BasicConfigurationChanged notification but should have not.");
|
||||||
|
|
||||||
|
// Set new timezone (Africa/Dakar)
|
||||||
|
QString newTimeZone("Africa/Dakar");
|
||||||
|
params.clear(); response.clear(); configurations.clear(); notificationSpy.clear();
|
||||||
|
params.insert("timeZone", newTimeZone);
|
||||||
|
response = injectAndWait("Configuration.SetTimeZone", params);
|
||||||
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
|
notificationSpy.wait(200);
|
||||||
|
configurationChangedNotifications = checkNotifications(notificationSpy, "Configuration.BasicConfigurationChanged");
|
||||||
|
QVERIFY2(configurationChangedNotifications.count() == 1, "Should get only one Configuration.BasicConfigurationChanged notification");
|
||||||
|
QVariantMap notificationContent = configurationChangedNotifications.first().toMap().value("params").toMap();
|
||||||
|
QVERIFY2(notificationContent.contains("basicConfiguration"), "Notification does not contain basicConfiguration");
|
||||||
|
QVariantMap basicConfigurationNotificationMap = notificationContent.value("basicConfiguration").toMap();
|
||||||
|
QVERIFY2(basicConfigurationNotificationMap.contains("language"), "Notification does not contain key language");
|
||||||
|
QVERIFY2(basicConfigurationNotificationMap.contains("serverName"), "Notification does not contain key serverName");
|
||||||
|
QVERIFY2(basicConfigurationNotificationMap.contains("serverTime"), "Notification does not contain key serverTime");
|
||||||
|
QVERIFY2(basicConfigurationNotificationMap.contains("serverUuid"), "Notification does not contain key serverUuid");
|
||||||
|
QVERIFY2(basicConfigurationNotificationMap.contains("timeZone"), "Notification does not contain key timeZone");
|
||||||
|
QVERIFY2(basicConfigurationNotificationMap.value("timeZone").toString() == newTimeZone, "Notification does not contain the new timeZone");
|
||||||
|
|
||||||
// Get current timezone and time
|
// Get current timezone and time
|
||||||
params.clear(); response.clear(); configurations.clear();
|
params.clear(); response.clear(); configurations.clear();
|
||||||
configurations = injectAndWait("Configuration.GetConfigurations").toMap().value("params").toMap();
|
configurations = injectAndWait("Configuration.GetConfigurations").toMap().value("params").toMap();
|
||||||
@ -97,7 +134,7 @@ void TestConfigurations::testTimeZones()
|
|||||||
// Check new timezone
|
// Check new timezone
|
||||||
params.clear(); response.clear(); configurations.clear();
|
params.clear(); response.clear(); configurations.clear();
|
||||||
configurations = injectAndWait("Configuration.GetConfigurations").toMap().value("params").toMap();
|
configurations = injectAndWait("Configuration.GetConfigurations").toMap().value("params").toMap();
|
||||||
QString newTimeZone = configurations.value("basicConfiguration").toMap().value("timeZone").toString();
|
newTimeZone = configurations.value("basicConfiguration").toMap().value("timeZone").toString();
|
||||||
int newTime = configurations.value("basicConfiguration").toMap().value("serverTime").toInt();
|
int newTime = configurations.value("basicConfiguration").toMap().value("serverTime").toInt();
|
||||||
qDebug() << newTimeZone << QDateTime::fromTime_t(newTime);
|
qDebug() << newTimeZone << QDateTime::fromTime_t(newTime);
|
||||||
QVERIFY(currentTimeZone != newTimeZone);
|
QVERIFY(currentTimeZone != newTimeZone);
|
||||||
@ -109,33 +146,143 @@ void TestConfigurations::testTimeZones()
|
|||||||
QString reloadedTimeZone = configurations.value("basicConfiguration").toMap().value("timeZone").toString();
|
QString reloadedTimeZone = configurations.value("basicConfiguration").toMap().value("timeZone").toString();
|
||||||
QVERIFY(newTimeZone == reloadedTimeZone);
|
QVERIFY(newTimeZone == reloadedTimeZone);
|
||||||
|
|
||||||
|
// Reset the timezone
|
||||||
params.clear(); response.clear();
|
params.clear(); response.clear();
|
||||||
params.insert("timeZone", "Europe/Vienna");
|
params.insert("timeZone", "Europe/Vienna");
|
||||||
response = injectAndWait("Configuration.SetTimeZone", params);
|
response = injectAndWait("Configuration.SetTimeZone", params);
|
||||||
verifyConfigurationError(response);
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
|
disableNotifications();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestConfigurations::testServerName()
|
void TestConfigurations::testServerName()
|
||||||
{
|
{
|
||||||
QVariantMap params; QVariant response; QVariantMap configurations;
|
enableNotifications();
|
||||||
configurations = injectAndWait("Configuration.GetConfigurations").toMap().value("params").toMap();
|
|
||||||
QString serverName = configurations.value("basicConfiguration").toMap().value("serverName").toString();
|
// Get current configurations
|
||||||
QString serverUuid = configurations.value("basicConfiguration").toMap().value("serverUuid").toString();
|
QVariantMap basicConfigurationMap = loadBasicConfiguration();
|
||||||
|
|
||||||
|
QString serverName = basicConfigurationMap.value("serverName").toString();
|
||||||
|
QString serverUuid = basicConfigurationMap.value("serverUuid").toString();
|
||||||
qDebug() << "Server name" << serverName << "(" << serverUuid << ")";
|
qDebug() << "Server name" << serverName << "(" << serverUuid << ")";
|
||||||
|
|
||||||
params.insert("serverName", "Test server");
|
QSignalSpy notificationSpy(m_mockTcpServer, SIGNAL(outgoingData(QUuid,QByteArray)));
|
||||||
|
|
||||||
|
// Set name unchainged
|
||||||
|
QVariantMap params; QVariant response; QVariantList configurationChangedNotifications;
|
||||||
|
params.insert("serverName", serverName);
|
||||||
response = injectAndWait("Configuration.SetServerName", params);
|
response = injectAndWait("Configuration.SetServerName", params);
|
||||||
verifyConfigurationError(response);
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
configurations = injectAndWait("Configuration.GetConfigurations").toMap().value("params").toMap();
|
// Check notification not emitted
|
||||||
QString newServerName = configurations.value("basicConfiguration").toMap().value("serverName").toString();
|
notificationSpy.wait(200);
|
||||||
QVERIFY(newServerName == "Test server");
|
configurationChangedNotifications = checkNotifications(notificationSpy, "Configuration.BasicConfigurationChanged");
|
||||||
|
QVERIFY2(configurationChangedNotifications.count() == 0, "Got Configuration.BasicConfigurationChanged notification but should have not.");
|
||||||
|
|
||||||
|
// TODO: verify notification
|
||||||
|
|
||||||
|
// Set new server name
|
||||||
|
QString newServerName = QString("Test server %1").arg(QUuid::createUuid().toString());
|
||||||
|
params.clear(); response.clear(); configurationChangedNotifications.clear();
|
||||||
|
params.insert("serverName", newServerName);
|
||||||
|
|
||||||
|
notificationSpy.clear();
|
||||||
|
response = injectAndWait("Configuration.SetServerName", params);
|
||||||
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
|
// Check notification not emitted
|
||||||
|
notificationSpy.wait(500);
|
||||||
|
configurationChangedNotifications = checkNotifications(notificationSpy, "Configuration.BasicConfigurationChanged");
|
||||||
|
QVERIFY2(configurationChangedNotifications.count() == 1, "Should get only one Configuration.BasicConfigurationChanged notification");
|
||||||
|
|
||||||
|
basicConfigurationMap = loadBasicConfiguration();
|
||||||
|
QString loadedServerName = basicConfigurationMap.value("serverName").toString();
|
||||||
|
QVERIFY2(loadedServerName == newServerName, "Server name not set correctly");
|
||||||
|
|
||||||
restartServer();
|
restartServer();
|
||||||
|
|
||||||
configurations = injectAndWait("Configuration.GetConfigurations").toMap().value("params").toMap();
|
basicConfigurationMap = loadBasicConfiguration();
|
||||||
QString reloadedServerName = configurations.value("basicConfiguration").toMap().value("serverName").toString();
|
loadedServerName = basicConfigurationMap.value("serverName").toString();
|
||||||
QVERIFY(newServerName == reloadedServerName);
|
QVERIFY2(newServerName == loadedServerName, "Server name not loaded correctly after restart");
|
||||||
|
|
||||||
|
disableNotifications();
|
||||||
|
}
|
||||||
|
|
||||||
|
void TestConfigurations::testLanguages()
|
||||||
|
{
|
||||||
|
enableNotifications();
|
||||||
|
|
||||||
|
// Get current configurations
|
||||||
|
QVariantMap basicConfigurationMap = loadBasicConfiguration();
|
||||||
|
|
||||||
|
QSignalSpy notificationSpy(m_mockTcpServer, SIGNAL(outgoingData(QUuid,QByteArray)));
|
||||||
|
|
||||||
|
// Set language unchainged
|
||||||
|
QVariant response; QVariantMap params;
|
||||||
|
params.insert("language", basicConfigurationMap.value("language"));
|
||||||
|
response = injectAndWait("Configuration.SetLanguage", params);
|
||||||
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
|
// Check notification not emitted
|
||||||
|
notificationSpy.wait(200);
|
||||||
|
QVariantList languageChangedNotifications = checkNotifications(notificationSpy, "Configuration.LanguageChanged");
|
||||||
|
QVERIFY2(languageChangedNotifications.count() == 0, "Got Configuration.LanguageChanged notification but should have not.");
|
||||||
|
|
||||||
|
// Get available languages
|
||||||
|
response = injectAndWait("Configuration.GetAvailableLanguages");
|
||||||
|
QVERIFY2(response.toMap().value("params").toMap().contains("languages"), "Did not get list of languages");
|
||||||
|
QVariantMap responseMap = response.toMap().value("params").toMap();
|
||||||
|
QVERIFY2(responseMap.value("languages").toList().count() >= 2, "Avaliable languages list to short: " + responseMap.value("languages").toList().count());
|
||||||
|
|
||||||
|
QVariantList languageVariantList = responseMap.value("languages").toList();
|
||||||
|
foreach (const QVariant &languageVariant, languageVariantList) {
|
||||||
|
// Get current configurations
|
||||||
|
basicConfigurationMap = loadBasicConfiguration();
|
||||||
|
|
||||||
|
// Set language
|
||||||
|
params.clear(); response.clear(); notificationSpy.clear();
|
||||||
|
params.insert("language", languageVariant);
|
||||||
|
QVariant response = injectAndWait("Configuration.SetLanguage", params);
|
||||||
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
|
// Check notification
|
||||||
|
notificationSpy.wait(200);
|
||||||
|
QVariantList languageChangedNotifications = checkNotifications(notificationSpy, "Configuration.LanguageChanged");
|
||||||
|
|
||||||
|
// If the language did not change no notification should be emited
|
||||||
|
if (basicConfigurationMap.value("language").toString() == languageVariant.toString()) {
|
||||||
|
QVERIFY2(languageChangedNotifications.count() == 0, "Got Configuration.LanguageChanged notification but should have not.");
|
||||||
|
} else {
|
||||||
|
QVERIFY2(languageChangedNotifications.count() == 1, "Should get only one Configuration.LanguageChanged notification");
|
||||||
|
|
||||||
|
// TODO: verify notification
|
||||||
|
|
||||||
|
// Restart the server and check if the language will be loaded correctly
|
||||||
|
restartServer();
|
||||||
|
|
||||||
|
// Get configuration
|
||||||
|
basicConfigurationMap = loadBasicConfiguration();
|
||||||
|
|
||||||
|
QCOMPARE(basicConfigurationMap.value("language").toString(), languageVariant.toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset the language to en_US
|
||||||
|
params.clear(); response.clear();
|
||||||
|
params.insert("language", "en_US");
|
||||||
|
|
||||||
|
// Set language
|
||||||
|
response = injectAndWait("Configuration.SetLanguage", params);
|
||||||
|
verifyConfigurationError(response);
|
||||||
|
|
||||||
|
disableNotifications();
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariantMap TestConfigurations::loadBasicConfiguration()
|
||||||
|
{
|
||||||
|
QVariant response = injectAndWait("Configuration.GetConfigurations");
|
||||||
|
QVariantMap configurationMap = response.toMap().value("params").toMap();
|
||||||
|
return configurationMap.value("basicConfiguration").toMap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "testconfigurations.moc"
|
#include "testconfigurations.moc"
|
||||||
|
|||||||
@ -116,27 +116,30 @@ GuhTestBase::GuhTestBase(QObject *parent) :
|
|||||||
qsrand(QDateTime::currentMSecsSinceEpoch());
|
qsrand(QDateTime::currentMSecsSinceEpoch());
|
||||||
m_mockDevice1Port = 1337 + (qrand() % 1000);
|
m_mockDevice1Port = 1337 + (qrand() % 1000);
|
||||||
m_mockDevice2Port = 7331 + (qrand() % 1000);
|
m_mockDevice2Port = 7331 + (qrand() % 1000);
|
||||||
|
|
||||||
|
// Important for settings
|
||||||
QCoreApplication::instance()->setOrganizationName("guh-test");
|
QCoreApplication::instance()->setOrganizationName("guh-test");
|
||||||
|
|
||||||
QSignalSpy spy(GuhCore::instance(), SIGNAL(initialized()));
|
|
||||||
spy.wait();
|
|
||||||
|
|
||||||
// Yes, we're intentionally mixing upper/lower case email here... username should not be case sensitive
|
|
||||||
GuhCore::instance()->userManager()->removeUser("dummy@guh.io");
|
|
||||||
GuhCore::instance()->userManager()->createUser("dummy@guh.io", "DummyPW1!");
|
|
||||||
m_apiToken = GuhCore::instance()->userManager()->authenticate("Dummy@guh.io", "DummyPW1!", "testcase");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GuhTestBase::initTestCase()
|
void GuhTestBase::initTestCase()
|
||||||
{
|
{
|
||||||
qDebug() << "GuhTestBase starting.";
|
qDebug() << "GuhTestBase starting.";
|
||||||
|
|
||||||
// If testcase asserts cleanup won't do. Lets clear any previous test run settings leftovers
|
// If testcase asserts cleanup won't do. Lets clear any previous test run settings leftovers
|
||||||
|
qDebug() << "Reset test settings";
|
||||||
GuhSettings rulesSettings(GuhSettings::SettingsRoleRules);
|
GuhSettings rulesSettings(GuhSettings::SettingsRoleRules);
|
||||||
rulesSettings.clear();
|
rulesSettings.clear();
|
||||||
GuhSettings deviceSettings(GuhSettings::SettingsRoleDevices);
|
GuhSettings deviceSettings(GuhSettings::SettingsRoleDevices);
|
||||||
deviceSettings.clear();
|
deviceSettings.clear();
|
||||||
GuhSettings pluginSettings(GuhSettings::SettingsRolePlugins);
|
GuhSettings pluginSettings(GuhSettings::SettingsRolePlugins);
|
||||||
pluginSettings.clear();
|
pluginSettings.clear();
|
||||||
|
GuhSettings statesSettings(GuhSettings::SettingsRoleDeviceStates);
|
||||||
|
statesSettings.clear();
|
||||||
|
|
||||||
|
// Reset to default settings
|
||||||
|
GuhSettings guhdSettings(GuhSettings::SettingsRoleGlobal);
|
||||||
|
guhdSettings.clear();
|
||||||
|
|
||||||
// debug categories
|
// debug categories
|
||||||
// logging filers for core and libguh
|
// logging filers for core and libguh
|
||||||
@ -171,18 +174,29 @@ void GuhTestBase::initTestCase()
|
|||||||
|
|
||||||
QLoggingCategory::installFilter(loggingCategoryFilter);
|
QLoggingCategory::installFilter(loggingCategoryFilter);
|
||||||
|
|
||||||
|
// Start the server
|
||||||
GuhCore::instance();
|
GuhCore::instance();
|
||||||
|
|
||||||
|
// Wait unitl the server is initialized
|
||||||
|
QSignalSpy coreInitializedSpy(GuhCore::instance(), SIGNAL(initialized()));
|
||||||
|
coreInitializedSpy.wait();
|
||||||
|
|
||||||
// Wait for the DeviceManager to signal that it has loaded plugins and everything
|
// Wait for the DeviceManager to signal that it has loaded plugins and everything
|
||||||
QSignalSpy spy(GuhCore::instance()->deviceManager(), SIGNAL(loaded()));
|
QSignalSpy deviceManagerSpy(GuhCore::instance()->deviceManager(), SIGNAL(loaded()));
|
||||||
QVERIFY(spy.isValid());
|
QVERIFY(deviceManagerSpy.isValid());
|
||||||
QVERIFY(spy.wait());
|
QVERIFY(deviceManagerSpy.wait());
|
||||||
|
|
||||||
|
// Yes, we're intentionally mixing upper/lower case email here... username should not be case sensitive
|
||||||
|
GuhCore::instance()->userManager()->removeUser("dummy@guh.io");
|
||||||
|
GuhCore::instance()->userManager()->createUser("dummy@guh.io", "DummyPW1!");
|
||||||
|
m_apiToken = GuhCore::instance()->userManager()->authenticate("Dummy@guh.io", "DummyPW1!", "testcase");
|
||||||
|
|
||||||
if (MockTcpServer::servers().isEmpty()) {
|
if (MockTcpServer::servers().isEmpty()) {
|
||||||
qWarning() << "no mock tcp server found";
|
qWarning() << "no mock tcp server found";
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add the mockdevice
|
||||||
m_mockTcpServer = MockTcpServer::servers().first();
|
m_mockTcpServer = MockTcpServer::servers().first();
|
||||||
m_clientId = QUuid::createUuid();
|
m_clientId = QUuid::createUuid();
|
||||||
|
|
||||||
|
|||||||
@ -171,7 +171,7 @@ protected:
|
|||||||
// just for debugging
|
// just for debugging
|
||||||
inline void printJson(const QVariant &response) {
|
inline void printJson(const QVariant &response) {
|
||||||
QJsonDocument jsonDoc = QJsonDocument::fromVariant(response);
|
QJsonDocument jsonDoc = QJsonDocument::fromVariant(response);
|
||||||
qDebug() << jsonDoc.toJson();
|
qDebug() << qUtf8Printable(jsonDoc.toJson());
|
||||||
}
|
}
|
||||||
|
|
||||||
void restartServer();
|
void restartServer();
|
||||||
|
|||||||
@ -46,54 +46,7 @@ private slots:
|
|||||||
|
|
||||||
void TestSettings::getSetLanguages()
|
void TestSettings::getSetLanguages()
|
||||||
{
|
{
|
||||||
enableNotifications();
|
|
||||||
|
|
||||||
QVariant response; QVariantMap params;
|
|
||||||
response = injectAndWait("Configuration.GetAvailableLanguages");
|
|
||||||
QVERIFY2(response.toMap().value("params").toMap().contains("languages"), "Did not get list of languages");
|
|
||||||
QVariantMap responseMap = response.toMap().value("params").toMap();
|
|
||||||
QVERIFY2(responseMap.value("languages").toList().count() >= 2, "Avaliable languages list to short: " + responseMap.value("languages").toList().count());
|
|
||||||
|
|
||||||
QVariantList languageVariantList = responseMap.value("languages").toList();
|
|
||||||
|
|
||||||
|
|
||||||
QSignalSpy notificationSpy(m_mockTcpServer, SIGNAL(outgoingData(QUuid,QByteArray)));
|
|
||||||
|
|
||||||
foreach (const QVariant &languageVariant, languageVariantList) {
|
|
||||||
|
|
||||||
// Get current configurations
|
|
||||||
response = injectAndWait("Configuration.GetConfigurations");
|
|
||||||
QVariantMap configurationMap = response.toMap().value("params").toMap();
|
|
||||||
|
|
||||||
params.clear();
|
|
||||||
params.insert("language", languageVariant);
|
|
||||||
|
|
||||||
notificationSpy.clear();
|
|
||||||
|
|
||||||
// Set language
|
|
||||||
QVariant response = injectAndWait("Configuration.SetLanguage", params);
|
|
||||||
verifyConfigurationError(response);
|
|
||||||
|
|
||||||
// Check notification
|
|
||||||
notificationSpy.wait(500);
|
|
||||||
QVariantList configurationChangedNotifications = checkNotifications(notificationSpy, "Configuration.LanguageChanged");
|
|
||||||
printJson(configurationChangedNotifications);
|
|
||||||
|
|
||||||
// If the language did not change no notification should be emited
|
|
||||||
if (configurationMap.value("basicConfiguration").toMap().value("language").toString() == languageVariant.toString()) {
|
|
||||||
QVERIFY2(configurationChangedNotifications.count() == 0, "Got Configuration.LanguageChanged notification but should have not.");
|
|
||||||
} else {
|
|
||||||
QVERIFY2(configurationChangedNotifications.count() == 1, "Should get only one Configuration.LanguageChanged notification");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reset the language to en_US
|
|
||||||
params.clear(); response.clear();
|
|
||||||
params.insert("language", "en_US");
|
|
||||||
|
|
||||||
// Set language
|
|
||||||
response = injectAndWait("Configuration.SetLanguage", params);
|
|
||||||
verifyConfigurationError(response);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "testsettings.moc"
|
#include "testsettings.moc"
|
||||||
|
|||||||
Reference in New Issue
Block a user