Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / Scoping20Test.h
index 4db0986..34dd5a6 100644 (file)
@@ -1,91 +1,91 @@
-/*\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 Scoping20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    int expectedProxycount;\r
-\r
-public:\r
-    void setUp() {\r
-        expectedProxycount = 5;\r
-        singleElementFile = data_path + "saml2/core/impl/Scoping.xml";\r
-        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/ScopingOptionalAttributes.xml";\r
-        childElementsFile  = data_path + "saml2/core/impl/ScopingChildElements.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
-        Scoping* scoping = dynamic_cast<Scoping*>(xo.get());\r
-        TS_ASSERT(scoping!=NULL);\r
-\r
-        TSM_ASSERT_EQUALS("ProxyCount attribute presence", false, scoping->getProxyCount().first);\r
-        TS_ASSERT(scoping->getIDPList()==NULL);\r
-        TSM_ASSERT_EQUALS("# of RequesterID child elements", 0, scoping->getRequesterIDs().size());\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
-        Scoping* scoping = dynamic_cast<Scoping*>(xo.get());\r
-        TS_ASSERT(scoping!=NULL);\r
-\r
-        TSM_ASSERT_EQUALS("ProxyCount attribute presence", true, scoping->getProxyCount().first);\r
-        TSM_ASSERT_EQUALS("ProxyCount attribute value", expectedProxycount, scoping->getProxyCount().second);\r
-        TS_ASSERT(scoping->getIDPList()==NULL);\r
-        TSM_ASSERT_EQUALS("# of RequesterID child elements", 0, scoping->getRequesterIDs().size());\r
-    }\r
-\r
-    void testChildElementsUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
-        Scoping* scoping= dynamic_cast<Scoping*>(xo.get());\r
-        TS_ASSERT(scoping!=NULL);\r
-\r
-        TSM_ASSERT_EQUALS("ProxyCount attribute presence", false, scoping->getProxyCount().first);\r
-        TS_ASSERT(scoping->getIDPList()!=NULL);\r
-        TSM_ASSERT_EQUALS("# of RequesterID child elements", 3, scoping->getRequesterIDs().size());\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        Scoping* scoping=ScopingBuilder::buildScoping();\r
-        assertEquals(expectedDOM, scoping);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesMarshall() {\r
-        Scoping* scoping=ScopingBuilder::buildScoping();\r
-        scoping->setProxyCount(expectedProxycount);\r
-        assertEquals(expectedOptionalAttributesDOM, scoping);\r
-    }\r
-\r
-    void testChildElementsMarshall() {\r
-        Scoping* scoping=ScopingBuilder::buildScoping();\r
-        scoping->setIDPList(IDPListBuilder::buildIDPList());\r
-        scoping->getRequesterIDs().push_back(RequesterIDBuilder::buildRequesterID());\r
-        scoping->getRequesterIDs().push_back(RequesterIDBuilder::buildRequesterID());\r
-        scoping->getRequesterIDs().push_back(RequesterIDBuilder::buildRequesterID());\r
-        assertEquals(expectedChildElementsDOM, scoping);\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 Scoping20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    int expectedProxycount;
+
+public:
+    void setUp() {
+        expectedProxycount = 5;
+        singleElementFile = data_path + "saml2/core/impl/Scoping.xml";
+        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/ScopingOptionalAttributes.xml";
+        childElementsFile  = data_path + "saml2/core/impl/ScopingChildElements.xml";    
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        Scoping* scoping = dynamic_cast<Scoping*>(xo.get());
+        TS_ASSERT(scoping!=NULL);
+
+        TSM_ASSERT_EQUALS("ProxyCount attribute presence", false, scoping->getProxyCount().first);
+        TS_ASSERT(scoping->getIDPList()==NULL);
+        TSM_ASSERT_EQUALS("# of RequesterID child elements", 0, scoping->getRequesterIDs().size());
+    }
+
+    void testSingleElementOptionalAttributesUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));
+        Scoping* scoping = dynamic_cast<Scoping*>(xo.get());
+        TS_ASSERT(scoping!=NULL);
+
+        TSM_ASSERT_EQUALS("ProxyCount attribute presence", true, scoping->getProxyCount().first);
+        TSM_ASSERT_EQUALS("ProxyCount attribute value", expectedProxycount, scoping->getProxyCount().second);
+        TS_ASSERT(scoping->getIDPList()==NULL);
+        TSM_ASSERT_EQUALS("# of RequesterID child elements", 0, scoping->getRequesterIDs().size());
+    }
+
+    void testChildElementsUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));
+        Scoping* scoping= dynamic_cast<Scoping*>(xo.get());
+        TS_ASSERT(scoping!=NULL);
+
+        TSM_ASSERT_EQUALS("ProxyCount attribute presence", false, scoping->getProxyCount().first);
+        TS_ASSERT(scoping->getIDPList()!=NULL);
+        TSM_ASSERT_EQUALS("# of RequesterID child elements", 3, scoping->getRequesterIDs().size());
+    }
+
+    void testSingleElementMarshall() {
+        Scoping* scoping=ScopingBuilder::buildScoping();
+        assertEquals(expectedDOM, scoping);
+    }
+
+    void testSingleElementOptionalAttributesMarshall() {
+        Scoping* scoping=ScopingBuilder::buildScoping();
+        scoping->setProxyCount(expectedProxycount);
+        assertEquals(expectedOptionalAttributesDOM, scoping);
+    }
+
+    void testChildElementsMarshall() {
+        Scoping* scoping=ScopingBuilder::buildScoping();
+        scoping->setIDPList(IDPListBuilder::buildIDPList());
+        scoping->getRequesterIDs().push_back(RequesterIDBuilder::buildRequesterID());
+        scoping->getRequesterIDs().push_back(RequesterIDBuilder::buildRequesterID());
+        scoping->getRequesterIDs().push_back(RequesterIDBuilder::buildRequesterID());
+        assertEquals(expectedChildElementsDOM, scoping);
+    }
+
+};