diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-12-24 10:00:27 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-12-24 10:00:27 -0500 |
| commit | a1983e23d58509c1c6f2258256faceb264d439d3 (patch) | |
| tree | 3fe9a6509d43884d6fa86a47abb4c5eddb40688a | |
| parent | 1ef84ba5b731f3954a8cb8fded2d85416c9516b1 (diff) | |
Added GlobalScript tests
| -rw-r--r-- | sigmod/test/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | sigmod/test/TestGlobalScript.cpp | 135 | ||||
| -rw-r--r-- | sigmod/test/TestGlobalScript.h | 52 |
3 files changed, 188 insertions, 1 deletions
diff --git a/sigmod/test/CMakeLists.txt b/sigmod/test/CMakeLists.txt index b3411333..6ef17cd8 100644 --- a/sigmod/test/CMakeLists.txt +++ b/sigmod/test/CMakeLists.txt @@ -26,7 +26,7 @@ MAKE_TEST(Badge libraries) MAKE_TEST(CoinList libraries) MAKE_TEST(CoinListItem libraries) MAKE_TEST(EggGroup libraries) -# MAKE_TEST(GlobalScript libraries) +MAKE_TEST(GlobalScript libraries) # MAKE_TEST(Item libraries) # MAKE_TEST(ItemType libraries) # MAKE_TEST(Map libraries) diff --git a/sigmod/test/TestGlobalScript.cpp b/sigmod/test/TestGlobalScript.cpp new file mode 100644 index 00000000..8556e4ad --- /dev/null +++ b/sigmod/test/TestGlobalScript.cpp @@ -0,0 +1,135 @@ +/* + * 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 "TestGlobalScript.h" + +// Sigmod includes +#include "../GlobalScript.h" +#include "../Sigmod.h" + +// Qt includes +#include <QtCore/QFile> +#include <QtTest/QTest> + +void TestGlobalScript::initTestCase() +{ + TestSigmodObject::initTestCase(); + + m_globalScript1 = m_sigmod->newGlobalScript(); + m_globalScript2 = m_sigmod->newGlobalScript(); + m_globalScript3 = m_sigmod->newGlobalScript(); +} + +void TestGlobalScript::cleanupTestCase() +{ + TestSigmodObject::cleanupTestCase(); +} + +void TestGlobalScript::init() +{ + TestSigmodObject::init(); + + makeConnections(m_globalScript1); + makeConnections(m_globalScript2); + makeConnections(m_globalScript3); +} + +void TestGlobalScript::cleanup() +{ + closeConnections(m_globalScript1); + closeConnections(m_globalScript2); + closeConnections(m_globalScript3); + + TestSigmodObject::cleanup(); +} + +void TestGlobalScript::validation() +{ + m_globalScript1->validate(); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 1); + + m_globalScript1->setName("Foo"); + m_globalScript1->validate(); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 1); +} + +void TestGlobalScript::saving() +{ + QDomDocument xml = Sigmod::Object::xml(m_globalScript1); + QFile file("globalScript.xml"); + + QVERIFY(file.open(QIODevice::WriteOnly)); + file.write(xml.toByteArray()); + file.close(); +} + +void TestGlobalScript::loading() +{ + QDomDocument xml; + QFile file("globalScript.xml"); + + m_globalScript1->setName("Bar"); + m_globalScript1->setScript(Sigcore::Script("python", "import os")); + + QVERIFY(file.open(QIODevice::ReadOnly)); + QVERIFY(xml.setContent(&file)); + m_globalScript1->load(xml.firstChildElement("GlobalScript")); + + QCOMPARE(m_globalScript1->name(), QString("Foo")); + QCOMPARE(m_globalScript1->script(), Sigcore::Script()); +} + +void TestGlobalScript::setName() +{ + m_globalScript2->setName("Foo"); + m_globalScript2->setName("Foo"); + + QCOMPARE(m_globalScript2->name(), QString("Foo")); + + QCOMPARE(m_changedCount, 1); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 0); +} + +void TestGlobalScript::setScript() +{ + m_globalScript2->setScript(Sigcore::Script("python", "import os")); + m_globalScript2->setScript(Sigcore::Script("python", "import os")); + + QCOMPARE(m_globalScript2->script(), Sigcore::Script("python", "import os")); + + QCOMPARE(m_changedCount, 1); + + QCOMPARE(m_warnings.size(), 0); + QCOMPARE(m_errors.size(), 0); +} + +void TestGlobalScript::assignment() +{ + *m_globalScript3 = *m_globalScript2; + + QCOMPARE(m_globalScript3->name(), QString("Foo")); + QCOMPARE(m_globalScript3->script(), Sigcore::Script("python", "import os")); +} + +QTEST_APPLESS_MAIN(TestGlobalScript) diff --git a/sigmod/test/TestGlobalScript.h b/sigmod/test/TestGlobalScript.h new file mode 100644 index 00000000..a72883f6 --- /dev/null +++ b/sigmod/test/TestGlobalScript.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_TESTGLOBALSCRIPT +#define SIGMOD_TESTGLOBALSCRIPT + +// Test includes +#include "TestSigmodObject.h" + +// Sigmod includes +#include "../GlobalScript.h" + +class TestGlobalScript : 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::GlobalScript* m_globalScript1; + Sigmod::GlobalScript* m_globalScript2; + Sigmod::GlobalScript* m_globalScript3; +}; + +#endif |
