diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-12-31 10:00:37 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-12-31 10:00:37 -0500 |
| commit | 218e8119306349f0212ca6142789dbcedd152500 (patch) | |
| tree | 8a3c4250fbc5ce18eab5587a916320c4b9b1291b | |
| parent | 79f5886518a75f54bb9612e513a1782745b4e5a0 (diff) | |
Added Weather tests
| -rw-r--r-- | sigmod/test/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | sigmod/test/TestWeather.cpp | 137 | ||||
| -rw-r--r-- | sigmod/test/TestWeather.h | 52 |
3 files changed, 190 insertions, 1 deletions
diff --git a/sigmod/test/CMakeLists.txt b/sigmod/test/CMakeLists.txt index feb4eb3c..a6e0d95c 100644 --- a/sigmod/test/CMakeLists.txt +++ b/sigmod/test/CMakeLists.txt @@ -59,6 +59,6 @@ MAKE_TEST(sigmod-tests libraries Status) # MAKE_TEST(sigmod-tests libraries Time) # MAKE_TEST(sigmod-tests libraries Trainer) # MAKE_TEST(sigmod-tests libraries Type) -# MAKE_TEST(sigmod-tests libraries Weather) +MAKE_TEST(sigmod-tests libraries Weather) MAKE_TEST_GROUP(sigmod sigmod-tests) diff --git a/sigmod/test/TestWeather.cpp b/sigmod/test/TestWeather.cpp new file mode 100644 index 00000000..915c65ec --- /dev/null +++ b/sigmod/test/TestWeather.cpp @@ -0,0 +1,137 @@ +/* + * Copyright 2008 Ben Boeckel <MathStuf@gmail.com> + * + * 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 3 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, see <http://www.gnu.org/licenses/>. + */ + +// Header include +#include "TestWeather.h" + +// Sigmod includes +#include "../Sigmod.h" +#include "../Weather.h" + +// Qt includes +#include <QtCore/QFile> +#include <QtTest/QTest> + +#include <QtCore/QtDebug> + +void TestWeather::initTestCase() +{ + TestSigmodObject::initTestCase(); + + m_weather1 = m_sigmod->newWeather(); + m_weather2 = m_sigmod->newWeather(); + m_weather3 = m_sigmod->newWeather(); +} + +void TestWeather::cleanupTestCase() +{ + TestSigmodObject::cleanupTestCase(); +} + +void TestWeather::init() +{ + TestSigmodObject::init(); + + makeConnections(m_weather1); + makeConnections(m_weather2); + makeConnections(m_weather3); +} + +void TestWeather::cleanup() +{ + closeConnections(m_weather1); + closeConnections(m_weather2); + closeConnections(m_weather3); + + TestSigmodObject::cleanup(); +} + +void TestWeather::validation() +{ + m_weather1->validate(); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 1); + + m_weather1->setName("Foo"); + m_weather1->validate(); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 1); +} + +void TestWeather::saving() +{ + QDomDocument xml = Sigmod::Object::xml(m_weather1); + QFile file("weather.xml"); + + QVERIFY(file.open(QIODevice::WriteOnly)); + file.write(xml.toByteArray()); + file.close(); +} + +void TestWeather::loading() +{ + QDomDocument xml; + QFile file("weather.xml"); + + m_weather1->setName("Bar"); + m_weather1->setScript(Sigcore::Script("python", "import os")); + + QVERIFY(file.open(QIODevice::ReadOnly)); + QVERIFY(xml.setContent(&file)); + m_weather1->load(xml.firstChildElement("Weather")); + + QCOMPARE(m_weather1->name(), QString("Foo")); + QCOMPARE(m_weather1->script(), Sigcore::Script()); +} + +void TestWeather::setName() +{ + m_weather2->setName("Foo"); + m_weather2->setName("Foo"); + + QCOMPARE(m_weather2->name(), QString("Foo")); + + QCOMPARE(m_changedCount, 1); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 0); +} + +void TestWeather::setScript() +{ + m_weather2->setScript(Sigcore::Script("python", "import os")); + m_weather2->setScript(Sigcore::Script("python", "import os")); + + QCOMPARE(m_weather2->script(), Sigcore::Script("python", "import os")); + + QCOMPARE(m_changedCount, 1); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 0); +} + +void TestWeather::assignment() +{ + *m_weather3 = *m_weather2; + + QCOMPARE(m_weather3->name(), QString("Foo")); + QCOMPARE(m_weather3->script(), Sigcore::Script("python", "import os")); +} + +QTEST_APPLESS_MAIN(TestWeather) diff --git a/sigmod/test/TestWeather.h b/sigmod/test/TestWeather.h new file mode 100644 index 00000000..f5fa57d0 --- /dev/null +++ b/sigmod/test/TestWeather.h @@ -0,0 +1,52 @@ +/* + * Copyright 2008 Ben Boeckel <MathStuf@gmail.com> + * + * 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 3 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, see <http://www.gnu.org/licenses/>. + */ + +#ifndef SIGMOD_TESTWEATHER +#define SIGMOD_TESTWEATHER + +// Test includes +#include "TestSigmodObject.h" + +// Sigmod includes +#include "../Weather.h" + +class TestWeather : public TestSigmodObject +{ + Q_OBJECT + + private slots: + void initTestCase(); + void cleanupTestCase(); + + void init(); + void cleanup(); + + void validation(); + void saving(); + void loading(); + + void setName(); + void setScript(); + + void assignment(); + private: + Sigmod::Weather* m_weather1; + Sigmod::Weather* m_weather2; + Sigmod::Weather* m_weather3; +}; + +#endif |
