Attribute test
[shibboleth/cpp-opensaml.git] / samltest / saml1 / core / impl / AttributeTest.h
diff --git a/samltest/saml1/core/impl/AttributeTest.h b/samltest/saml1/core/impl/AttributeTest.h
new file mode 100644 (file)
index 0000000..0e5afe8
--- /dev/null
@@ -0,0 +1,87 @@
+/*\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/saml1/core/Assertions.h>\r
+\r
+using namespace opensaml::saml1;\r
+\r
+class AttributeTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
+    XMLCh* expectedAttributeName;\r
+    XMLCh* expectedAttributeNamespace;\r
+\r
+public:\r
+    void setUp() {\r
+        expectedAttributeName=XMLString::transcode("AttributeName");\r
+        expectedAttributeNamespace=XMLString::transcode("namespace");\r
+        singleElementFile = data_path + "saml1/core/impl/singleAttribute.xml";\r
+        singleElementOptionalAttributesFile = data_path + "saml1/core/impl/singleAttributeAttributes.xml";\r
+        childElementsFile = data_path + "saml1/core/impl/AttributeWithChildren.xml";\r
+        SAMLObjectBaseTestCase::setUp();\r
+    }\r
+    \r
+    void tearDown() {\r
+        XMLString::release(&expectedAttributeName);\r
+        XMLString::release(&expectedAttributeNamespace);\r
+        SAMLObjectBaseTestCase::tearDown();\r
+    }\r
+\r
+    void testSingleElementUnmarshall() {\r
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
+        Attribute& a = dynamic_cast<Attribute&>(*xo.get());\r
+        TSM_ASSERT("AttributeName", a.getAttributeName()==NULL);\r
+        TSM_ASSERT("AttributeNamespace", a.getAttributeNamespace()==NULL);\r
+        TSM_ASSERT_EQUALS("<AttributeValue> subelement found", 0, a.getAttributeValues().size());\r
+    }\r
+\r
+    void testSingleElementOptionalAttributesUnmarshall() {\r
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
+        Attribute& a = dynamic_cast<Attribute&>(*xo.get());\r
+        TSM_ASSERT_SAME_DATA("AttributeName", expectedAttributeName, a.getAttributeName(), XMLString::stringLen(expectedAttributeName));\r
+        TSM_ASSERT_SAME_DATA("AttributeNamespace", expectedAttributeNamespace, a.getAttributeNamespace(), XMLString::stringLen(expectedAttributeNamespace));\r
+    }\r
+\r
+    void testChildElementsUnmarshall() {\r
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
+        Attribute& a = dynamic_cast<Attribute&>(*xo.get());\r
+        TSM_ASSERT_EQUALS("Number of <AttributeValue> subelements", 4, a.getAttributeValues().size());\r
+    }\r
+\r
+    void testSingleElementMarshall() {\r
+        assertEquals(expectedDOM, AttributeBuilder::buildAttribute());\r
+    }\r
+\r
+    void testSingleElementOptionalAttributesMarshall() {\r
+        Attribute* a=AttributeBuilder::buildAttribute();\r
+        a->setAttributeName(expectedAttributeName);\r
+        a->setAttributeNamespace(expectedAttributeNamespace);\r
+        assertEquals(expectedOptionalAttributesDOM, a);\r
+    }\r
+\r
+    void testChildElementsMarshall(){\r
+        Attribute* a=AttributeBuilder::buildAttribute();\r
+        \r
+        const XMLCh xsdstring[] = UNICODE_LITERAL_6(s,t,r,i,n,g);\r
+       \r
+        const XMLObjectBuilder* builder=XMLObjectBuilder::getBuilder(QName(SAMLConstants::SAML1_NS,AttributeValue::LOCAL_NAME));\r
+        TS_ASSERT(builder!=NULL);\r
+        QName xsitype(XMLConstants::XSD_NS,xsdstring,XMLConstants::XSD_PREFIX);\r
+        for (int i=0; i<4; i++)\r
+            a->getAttributeValues().push_back(builder->buildObject(SAMLConstants::SAML1_NS, AttributeValue::LOCAL_NAME, SAMLConstants::SAML1_PREFIX, &xsitype)); \r
+\r
+        assertEquals(expectedChildElementsDOM, a);\r
+    }\r
+};\r