Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml1 / core / impl / AttributeTest.h
index 8a99211..1047d83 100644 (file)
@@ -1,87 +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
-        assertEquals("AttributeName", expectedAttributeName, a.getAttributeName());\r
-        assertEquals("AttributeNamespace", expectedAttributeNamespace, a.getAttributeNamespace());\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
+/*
+ *  Copyright 2001-2006 Internet2
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "internal.h"
+#include <saml/saml1/core/Assertions.h>
+
+using namespace opensaml::saml1;
+
+class AttributeTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    XMLCh* expectedAttributeName;
+    XMLCh* expectedAttributeNamespace;
+
+public:
+    void setUp() {
+        expectedAttributeName=XMLString::transcode("AttributeName");
+        expectedAttributeNamespace=XMLString::transcode("namespace");
+        singleElementFile = data_path + "saml1/core/impl/singleAttribute.xml";
+        singleElementOptionalAttributesFile = data_path + "saml1/core/impl/singleAttributeAttributes.xml";
+        childElementsFile = data_path + "saml1/core/impl/AttributeWithChildren.xml";
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        XMLString::release(&expectedAttributeName);
+        XMLString::release(&expectedAttributeNamespace);
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        Attribute& a = dynamic_cast<Attribute&>(*xo.get());
+        TSM_ASSERT("AttributeName", a.getAttributeName()==NULL);
+        TSM_ASSERT("AttributeNamespace", a.getAttributeNamespace()==NULL);
+        TSM_ASSERT_EQUALS("<AttributeValue> subelement found", 0, a.getAttributeValues().size());
+    }
+
+    void testSingleElementOptionalAttributesUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));
+        Attribute& a = dynamic_cast<Attribute&>(*xo.get());
+        assertEquals("AttributeName", expectedAttributeName, a.getAttributeName());
+        assertEquals("AttributeNamespace", expectedAttributeNamespace, a.getAttributeNamespace());
+    }
+
+    void testChildElementsUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));
+        Attribute& a = dynamic_cast<Attribute&>(*xo.get());
+        TSM_ASSERT_EQUALS("Number of <AttributeValue> subelements", 4, a.getAttributeValues().size());
+    }
+
+    void testSingleElementMarshall() {
+        assertEquals(expectedDOM, AttributeBuilder::buildAttribute());
+    }
+
+    void testSingleElementOptionalAttributesMarshall() {
+        Attribute* a=AttributeBuilder::buildAttribute();
+        a->setAttributeName(expectedAttributeName);
+        a->setAttributeNamespace(expectedAttributeNamespace);
+        assertEquals(expectedOptionalAttributesDOM, a);
+    }
+
+    void testChildElementsMarshall(){
+        Attribute* a=AttributeBuilder::buildAttribute();
+        
+        const XMLCh xsdstring[] = UNICODE_LITERAL_6(s,t,r,i,n,g);
+       
+        const XMLObjectBuilder* builder=XMLObjectBuilder::getBuilder(QName(SAMLConstants::SAML1_NS,AttributeValue::LOCAL_NAME));
+        TS_ASSERT(builder!=NULL);
+        QName xsitype(XMLConstants::XSD_NS,xsdstring,XMLConstants::XSD_PREFIX);
+        for (int i=0; i<4; i++)
+            a->getAttributeValues().push_back(builder->buildObject(SAMLConstants::SAML1_NS, AttributeValue::LOCAL_NAME, SAMLConstants::SAML1_PREFIX, &xsitype)); 
+
+        assertEquals(expectedChildElementsDOM, a);
+    }
+};