Initial check-in of SAML 2.0 Core protocol namespace implementation classes
[shibboleth/opensaml2.git] / samltest / saml2 / core / impl / Status20Test.h
diff --git a/samltest/saml2/core/impl/Status20Test.h b/samltest/saml2/core/impl/Status20Test.h
new file mode 100644 (file)
index 0000000..da96080
--- /dev/null
@@ -0,0 +1,66 @@
+/*\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
+\r
+using namespace opensaml::saml2p;\r
+\r
+class Status20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
+\r
+public:\r
+    void setUp() {\r
+        singleElementFile = data_path + "saml2/core/impl/Status.xml";\r
+        childElementsFile  = data_path + "saml2/core/impl/StatusChildElements.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
+        Status* status = dynamic_cast<Status*>(xo.get());\r
+        TS_ASSERT(status!=NULL);\r
+        TSM_ASSERT("StatusCode child element", status->getStatusCode()==NULL);\r
+        TSM_ASSERT("StatusMessage child element", status->getStatusMessage()==NULL);\r
+        TSM_ASSERT("StatusDetail child element", status->getStatusDetail()==NULL);\r
+    }\r
+\r
+    void testChildElementsUnmarshall() {\r
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
+        Status* status = dynamic_cast<Status*>(xo.get());\r
+        TS_ASSERT(status!=NULL);\r
+        TSM_ASSERT("StatusCode child element", status->getStatusCode()!=NULL);\r
+        TSM_ASSERT("StatusMessage child element", status->getStatusMessage()!=NULL);\r
+        TSM_ASSERT("StatusDetail child element", status->getStatusDetail()!=NULL);\r
+    }\r
+\r
+    void testSingleElementMarshall() {\r
+        Status* status=StatusBuilder::buildStatus();\r
+        assertEquals(expectedDOM, status);\r
+    }\r
+\r
+    void testChildElementsMarshall() {\r
+        Status* status=StatusBuilder::buildStatus();\r
+        status->setStatusCode(StatusCodeBuilder::buildStatusCode());\r
+        status->setStatusMessage(StatusMessageBuilder::buildStatusMessage());\r
+        status->setStatusDetail(StatusDetailBuilder::buildStatusDetail());\r
+        assertEquals(expectedChildElementsDOM, status);\r
+    }\r
+\r
+};\r