Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / NameIDPolicy20Test.h
index ac4e292..a8f3a3a 100644 (file)
@@ -1,76 +1,76 @@
-/*\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 NameIDPolicy20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    XMLCh* expectedFormat; \r
-    XMLCh* expectedSPNameQualifier; \r
-    bool expectedAllowCreate;\r
-\r
-public:\r
-    void setUp() {\r
-        expectedFormat = XMLString::transcode("urn:string:format");; \r
-        expectedSPNameQualifier = XMLString::transcode("urn:string:spname"); \r
-        expectedAllowCreate=true;\r
-\r
-        singleElementFile = data_path + "saml2/core/impl/NameIDPolicy.xml";\r
-        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/NameIDPolicyOptionalAttributes.xml";\r
-        SAMLObjectBaseTestCase::setUp();\r
-    }\r
-    \r
-    void tearDown() {\r
-        XMLString::release(&expectedFormat);\r
-        XMLString::release(&expectedSPNameQualifier);\r
-        SAMLObjectBaseTestCase::tearDown();\r
-    }\r
-\r
-    void testSingleElementUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
-        NameIDPolicy* policy = dynamic_cast<NameIDPolicy*>(xo.get());\r
-        TS_ASSERT(policy!=NULL);\r
-        TSM_ASSERT_EQUALS("AllowCreate attribute presence", XMLConstants::XML_BOOL_NULL, policy->getAllowCreate());\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
-        NameIDPolicy* policy = dynamic_cast<NameIDPolicy*>(xo.get());\r
-        TS_ASSERT(policy!=NULL);\r
-        assertEquals("Format attribute", expectedFormat, policy->getFormat());\r
-        assertEquals("SPNameQualifier attribute", expectedSPNameQualifier, policy->getSPNameQualifier());\r
-        TSM_ASSERT_DIFFERS("AllowCreate attribute presence", XMLConstants::XML_BOOL_NULL, policy->getAllowCreate());\r
-        TSM_ASSERT_EQUALS("AllowCreate attribute value", expectedAllowCreate, policy->AllowCreate());\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        NameIDPolicy* policy=NameIDPolicyBuilder::buildNameIDPolicy();\r
-        assertEquals(expectedDOM, policy);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesMarshall() {\r
-        NameIDPolicy* policy=NameIDPolicyBuilder::buildNameIDPolicy();\r
-        policy->setFormat(expectedFormat);\r
-        policy->setSPNameQualifier(expectedSPNameQualifier);\r
-        policy->AllowCreate(expectedAllowCreate);\r
-        assertEquals(expectedOptionalAttributesDOM, policy);\r
-    }\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/saml2/core/Protocols.h>
+#include <saml/util/SAMLConstants.h>
+
+using namespace opensaml::saml2p;
+using namespace opensaml::saml2;
+
+class NameIDPolicy20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    XMLCh* expectedFormat; 
+    XMLCh* expectedSPNameQualifier; 
+    bool expectedAllowCreate;
+
+public:
+    void setUp() {
+        expectedFormat = XMLString::transcode("urn:string:format");; 
+        expectedSPNameQualifier = XMLString::transcode("urn:string:spname"); 
+        expectedAllowCreate=true;
+
+        singleElementFile = data_path + "saml2/core/impl/NameIDPolicy.xml";
+        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/NameIDPolicyOptionalAttributes.xml";
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        XMLString::release(&expectedFormat);
+        XMLString::release(&expectedSPNameQualifier);
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        NameIDPolicy* policy = dynamic_cast<NameIDPolicy*>(xo.get());
+        TS_ASSERT(policy!=NULL);
+        TSM_ASSERT_EQUALS("AllowCreate attribute presence", XMLConstants::XML_BOOL_NULL, policy->getAllowCreate());
+    }
+
+    void testSingleElementOptionalAttributesUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));
+        NameIDPolicy* policy = dynamic_cast<NameIDPolicy*>(xo.get());
+        TS_ASSERT(policy!=NULL);
+        assertEquals("Format attribute", expectedFormat, policy->getFormat());
+        assertEquals("SPNameQualifier attribute", expectedSPNameQualifier, policy->getSPNameQualifier());
+        TSM_ASSERT_DIFFERS("AllowCreate attribute presence", XMLConstants::XML_BOOL_NULL, policy->getAllowCreate());
+        TSM_ASSERT_EQUALS("AllowCreate attribute value", expectedAllowCreate, policy->AllowCreate());
+    }
+
+    void testSingleElementMarshall() {
+        NameIDPolicy* policy=NameIDPolicyBuilder::buildNameIDPolicy();
+        assertEquals(expectedDOM, policy);
+    }
+
+    void testSingleElementOptionalAttributesMarshall() {
+        NameIDPolicy* policy=NameIDPolicyBuilder::buildNameIDPolicy();
+        policy->setFormat(expectedFormat);
+        policy->setSPNameQualifier(expectedSPNameQualifier);
+        policy->AllowCreate(expectedAllowCreate);
+        assertEquals(expectedOptionalAttributesDOM, policy);
+    }
+
+};