1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/*
* Copyright (C) 2013 Canonical, Ltd.
*
* 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; version 3.
*
* 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, see <http://www.gnu.org/licenses/>.
*
* Author: Pete Woods <pete.woods@canonical.com>
*/
#include <libusermetricsoutput/GSettingsColorThemeProvider.h>
#include <QtCore/QDir>
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <QDebug>
using namespace std;
using namespace UserMetricsOutput;
using namespace testing;
namespace {
class TestGSettingsColorThemeProvider: public Test {
protected:
TestGSettingsColorThemeProvider() {
qputenv("XDG_DATA_DIRS", DATA_DIR);
qputenv("USERMETRICS_NO_COLOR_SETTINGS", "1");
}
virtual ~TestGSettingsColorThemeProvider() {
}
};
TEST_F(TestGSettingsColorThemeProvider, ReadsThemes) {
qDebug() << DATA_DIR;
GSettingsColorThemeProvider provider;
ColorThemePtrPair themeA(provider.getColorTheme("a"));
EXPECT_EQ(QColor("#e54c19"), themeA.first->start());
EXPECT_EQ(QColor("#ff9900"), themeA.first->main());
EXPECT_EQ(QColor("#e54c19"), themeA.first->end());
EXPECT_EQ(QColor("#ff9900"), themeA.second->start());
EXPECT_EQ(QColor("#e54c19"), themeA.second->main());
EXPECT_EQ(QColor("#cc0000"), themeA.second->end());
ColorThemePtrPair themeB(provider.getColorTheme("b"));
EXPECT_EQ(QColor("#cc19cc"), themeB.first->start());
EXPECT_EQ(QColor("#bf21bf"), themeB.first->main());
EXPECT_EQ(QColor("#7f334c"), themeB.first->end());
EXPECT_EQ(QColor("#ff9900"), themeB.second->start());
EXPECT_EQ(QColor("#e54c19"), themeB.second->main());
EXPECT_EQ(QColor("#cc0000"), themeB.second->end());
ColorThemePtrPair themeC(provider.getColorTheme("c"));
EXPECT_EQ(QColor("#cc19cc"), themeC.first->start());
EXPECT_EQ(QColor("#7f334c"), themeC.first->main());
EXPECT_EQ(QColor("#bf21bf"), themeC.first->end());
EXPECT_EQ(QColor("#cc0000"), themeC.second->start());
EXPECT_EQ(QColor("#cc0000"), themeC.second->main());
EXPECT_EQ(QColor("#cc0000"), themeC.second->end());
ColorThemePtrPair themeD(provider.getColorTheme("d"));
EXPECT_EQ(QColor("#cc19cc"), themeD.first->start());
EXPECT_EQ(QColor("#cc19cc"), themeD.first->main());
EXPECT_EQ(QColor("#cc19cc"), themeD.first->end());
EXPECT_EQ(QColor("#cc19cc"), themeD.second->start());
EXPECT_EQ(QColor("#7f334c"), themeD.second->main());
EXPECT_EQ(QColor("#bf21bf"), themeD.second->end());
// It should wrap at this point
ColorThemePtrPair themeE(provider.getColorTheme("e"));
EXPECT_EQ(QColor("#e54c19"), themeE.first->start());
EXPECT_EQ(QColor("#ff9900"), themeE.first->main());
EXPECT_EQ(QColor("#e54c19"), themeE.first->end());
EXPECT_EQ(QColor("#ff9900"), themeE.second->start());
EXPECT_EQ(QColor("#e54c19"), themeE.second->main());
EXPECT_EQ(QColor("#cc0000"), themeE.second->end());
}
TEST_F(TestGSettingsColorThemeProvider, HandlesMissingXml) {
qputenv("XDG_DATA_DIRS", "/does/not/exist");
GSettingsColorThemeProvider provider;
ColorThemePtrPair themeA(provider.getColorTheme("a"));
EXPECT_EQ(QColor(), themeA.first->start());
EXPECT_EQ(QColor(), themeA.first->main());
EXPECT_EQ(QColor(), themeA.first->end());
EXPECT_EQ(QColor(), themeA.second->start());
EXPECT_EQ(QColor(), themeA.second->main());
EXPECT_EQ(QColor(), themeA.second->end());
EXPECT_EQ(themeA, provider.getColorTheme("b"));
}
TEST_F(TestGSettingsColorThemeProvider, HandlesInvalidXml) {
qputenv("XDG_DATA_DIRS",
QString(TEST_DATADIR).append(":").append(DATA_DIR).toUtf8());
GSettingsColorThemeProvider provider;
ColorThemePtrPair themeA(provider.getColorTheme("a"));
EXPECT_EQ(QColor(), themeA.first->start());
EXPECT_EQ(QColor(), themeA.first->main());
EXPECT_EQ(QColor(), themeA.first->end());
EXPECT_EQ(QColor(), themeA.second->start());
EXPECT_EQ(QColor(), themeA.second->main());
EXPECT_EQ(QColor(), themeA.second->end());
EXPECT_EQ(themeA, provider.getColorTheme("b"));
}
} // namespace
|