Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / IDPList20Test.h
diff --git a/samltest/saml2/core/impl/IDPList20Test.h b/samltest/saml2/core/impl/IDPList20Test.h
new file mode 100644 (file)
index 0000000..2231829
--- /dev/null
@@ -0,0 +1,68 @@
+/*\r
+ *  Copyright 2001-2006 Internet2\r
+ * \r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *     http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+#include "internal.h"\r
+#include <saml/saml2/core/Protocols.h>\r
+#include <saml/util/SAMLConstants.h>\r
+\r
+using namespace opensaml::saml2p;\r
+using namespace opensaml::saml2;\r
+\r
+class IDPList20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
+\r
+public:\r
+    void setUp() {\r
+        singleElementFile = data_path + "saml2/core/impl/IDPList.xml";\r
+        childElementsFile  = data_path + "saml2/core/impl/IDPListChildElements.xml";    \r
+        SAMLObjectBaseTestCase::setUp();\r
+    }\r
+    \r
+    void tearDown() {\r
+        SAMLObjectBaseTestCase::tearDown();\r
+    }\r
+\r
+    void testSingleElementUnmarshall() {\r
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
+        IDPList* list = dynamic_cast<IDPList*>(xo.get());\r
+        TS_ASSERT(list!=NULL);\r
+\r
+        TS_ASSERT(list->getGetComplete()==NULL);\r
+        TSM_ASSERT_EQUALS("# of IDPEntry child elements", 0, list->getIDPEntrys().size());\r
+    }\r
+\r
+    void testChildElementsUnmarshall() {\r
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
+        IDPList* list= dynamic_cast<IDPList*>(xo.get());\r
+        TS_ASSERT(list!=NULL);\r
+        TS_ASSERT(list->getGetComplete()!=NULL);\r
+        TSM_ASSERT_EQUALS("# of IDPEntry child elements", 3, list->getIDPEntrys().size());\r
+    }\r
+\r
+    void testSingleElementMarshall() {\r
+        IDPList* list=IDPListBuilder::buildIDPList();\r
+        assertEquals(expectedDOM, list);\r
+    }\r
+\r
+    void testChildElementsMarshall() {\r
+        IDPList* list=IDPListBuilder::buildIDPList();\r
+        list->getIDPEntrys().push_back(IDPEntryBuilder::buildIDPEntry());\r
+        list->getIDPEntrys().push_back(IDPEntryBuilder::buildIDPEntry());\r
+        list->getIDPEntrys().push_back(IDPEntryBuilder::buildIDPEntry());\r
+        list->setGetComplete(GetCompleteBuilder::buildGetComplete());\r
+        assertEquals(expectedChildElementsDOM, list);\r
+    }\r
+\r
+};\r