diff options
Diffstat (limited to 'Swiften/Elements/UnitTest')
-rw-r--r-- | Swiften/Elements/UnitTest/FormTest.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Swiften/Elements/UnitTest/FormTest.cpp b/Swiften/Elements/UnitTest/FormTest.cpp new file mode 100644 index 0000000..3852d98 --- /dev/null +++ b/Swiften/Elements/UnitTest/FormTest.cpp @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#include <cppunit/extensions/HelperMacros.h> +#include <cppunit/extensions/TestFactoryRegistry.h> +#include <boost/shared_ptr.hpp> + +#include "Swiften/Elements/Form.h" + +using namespace Swift; + +class FormTest : public CppUnit::TestFixture { + CPPUNIT_TEST_SUITE(FormTest); + CPPUNIT_TEST(testGetFormType); + CPPUNIT_TEST_SUITE_END(); + + public: + void testGetFormType() { + Form form; + + form.addField(FixedFormField::create("Foo")); + + FormField::ref field = HiddenFormField::create("jabber:bot"); + field->setName("FORM_TYPE"); + form.addField(field); + + form.addField(FixedFormField::create("Bar")); + + CPPUNIT_ASSERT_EQUAL(String("jabber:bot"), form.getFormType()); + } +}; + +CPPUNIT_TEST_SUITE_REGISTRATION(FormTest); |