Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / NewEncryptedID20Test.h
index e9a3ef7..54bbea3 100644 (file)
@@ -1,71 +1,71 @@
-/*\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 <xmltooling/encryption/Encryption.h>\r
-#include <xmltooling/util/XMLConstants.h>\r
-\r
-using namespace opensaml;\r
-using namespace opensaml::saml2p;\r
-using namespace xmlencryption;\r
-\r
-class NewEncryptedID20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-\r
-public:\r
-    void setUp() {\r
-        singleElementFile = data_path + "saml2/core/impl/NewEncryptedID.xml";\r
-        childElementsFile  = data_path + "saml2/core/impl/NewEncryptedIDChildElements.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
-        NewEncryptedID* encID = dynamic_cast<NewEncryptedID*>(xo.get());\r
-        TS_ASSERT(encID!=NULL);\r
-        TSM_ASSERT("EncryptedData child element", encID->getEncryptedData()==NULL);\r
-        TSM_ASSERT_EQUALS("# of EncryptedKey child elements", 0, encID->getEncryptedKeys().size());\r
-    }\r
-\r
-    void testChildElementsUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
-        NewEncryptedID* encID = dynamic_cast<NewEncryptedID*>(xo.get());\r
-        TS_ASSERT(encID!=NULL);\r
-        TSM_ASSERT("EncryptedData child element", encID->getEncryptedData()!=NULL);\r
-        TSM_ASSERT_EQUALS("# of EncryptedKey child elements", 2, encID->getEncryptedKeys().size());\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        NewEncryptedID* encID=NewEncryptedIDBuilder::buildNewEncryptedID();\r
-        assertEquals(expectedDOM, encID);\r
-    }\r
-\r
-    void testChildElementsMarshall() {\r
-        NewEncryptedID* encID=NewEncryptedIDBuilder::buildNewEncryptedID();\r
-        // Do this just so don't have to redeclare the xenc namespace prefix on every child element in the control XML file\r
-        Namespace* ns = new Namespace(xmltooling::XMLConstants::XMLENC_NS, xmltooling::XMLConstants::XMLENC_PREFIX);\r
-        encID->addNamespace(*ns);\r
-        encID->setEncryptedData(EncryptedDataBuilder::buildEncryptedData());\r
-        encID->getEncryptedKeys().push_back(EncryptedKeyBuilder::buildEncryptedKey());\r
-        encID->getEncryptedKeys().push_back(EncryptedKeyBuilder::buildEncryptedKey());\r
-        assertEquals(expectedChildElementsDOM, encID);\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 <xmltooling/encryption/Encryption.h>
+#include <xmltooling/util/XMLConstants.h>
+
+using namespace opensaml;
+using namespace opensaml::saml2p;
+using namespace xmlencryption;
+
+class NewEncryptedID20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+
+public:
+    void setUp() {
+        singleElementFile = data_path + "saml2/core/impl/NewEncryptedID.xml";
+        childElementsFile  = data_path + "saml2/core/impl/NewEncryptedIDChildElements.xml";    
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        NewEncryptedID* encID = dynamic_cast<NewEncryptedID*>(xo.get());
+        TS_ASSERT(encID!=NULL);
+        TSM_ASSERT("EncryptedData child element", encID->getEncryptedData()==NULL);
+        TSM_ASSERT_EQUALS("# of EncryptedKey child elements", 0, encID->getEncryptedKeys().size());
+    }
+
+    void testChildElementsUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));
+        NewEncryptedID* encID = dynamic_cast<NewEncryptedID*>(xo.get());
+        TS_ASSERT(encID!=NULL);
+        TSM_ASSERT("EncryptedData child element", encID->getEncryptedData()!=NULL);
+        TSM_ASSERT_EQUALS("# of EncryptedKey child elements", 2, encID->getEncryptedKeys().size());
+    }
+
+    void testSingleElementMarshall() {
+        NewEncryptedID* encID=NewEncryptedIDBuilder::buildNewEncryptedID();
+        assertEquals(expectedDOM, encID);
+    }
+
+    void testChildElementsMarshall() {
+        NewEncryptedID* encID=NewEncryptedIDBuilder::buildNewEncryptedID();
+        // Do this just so don't have to redeclare the xenc namespace prefix on every child element in the control XML file
+        Namespace* ns = new Namespace(xmltooling::XMLConstants::XMLENC_NS, xmltooling::XMLConstants::XMLENC_PREFIX);
+        encID->addNamespace(*ns);
+        encID->setEncryptedData(EncryptedDataBuilder::buildEncryptedData());
+        encID->getEncryptedKeys().push_back(EncryptedKeyBuilder::buildEncryptedKey());
+        encID->getEncryptedKeys().push_back(EncryptedKeyBuilder::buildEncryptedKey());
+        assertEquals(expectedChildElementsDOM, encID);
+    }
+
+};