Fix linefeeds
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / AuthnStatement20Test.h
index e4223be..be23b20 100644 (file)
-/*\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/Assertions.h>\r
-#include <saml/util/SAMLConstants.h>\r
-\r
-using namespace opensaml::saml2;\r
-\r
-class AuthnStatement20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    DateTime* expectedAuthnInstant;\r
-    XMLCh* expectedSessionIndex;\r
-    DateTime* expectedSessionNotOnOrAfter;\r
-\r
-public:\r
-    void setUp() {\r
-        expectedAuthnInstant = new DateTime(XMLString::transcode("1984-08-26T10:01:30.043Z"));\r
-        expectedAuthnInstant->parseDateTime();\r
-        expectedSessionIndex = (XMLString::transcode("abc123"));\r
-        expectedSessionNotOnOrAfter = new DateTime(XMLString::transcode("1984-08-26T10:11:30.043Z"));\r
-        expectedSessionNotOnOrAfter->parseDateTime();\r
-\r
-        singleElementFile = data_path + "saml2/core/impl/AuthnStatement.xml";\r
-        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/AuthnStatementOptionalAttributes.xml";\r
-        childElementsFile  = data_path + "saml2/core/impl/AuthnStatementChildElements.xml";    \r
-        SAMLObjectBaseTestCase::setUp();\r
-    }\r
-    \r
-    void tearDown() {\r
-        delete expectedAuthnInstant;\r
-        XMLString::release(&expectedSessionIndex);\r
-        delete expectedSessionNotOnOrAfter;\r
-        SAMLObjectBaseTestCase::tearDown();\r
-    }\r
-\r
-    void testSingleElementUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
-        AuthnStatement* statement = dynamic_cast<AuthnStatement*>(xo.get());\r
-        TS_ASSERT(statement!=NULL);\r
-\r
-        TSM_ASSERT_EQUALS("AuthnInstant attribute", expectedAuthnInstant->getEpoch(), statement->getAuthnInstant()->getEpoch());\r
-        TS_ASSERT(statement->getSessionIndex()==NULL);\r
-        TS_ASSERT(statement->getSessionNotOnOrAfter()==NULL);\r
-\r
-        TS_ASSERT(statement->getSubjectLocality()==NULL);\r
-        TS_ASSERT(statement->getAuthnContext()==NULL);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
-        AuthnStatement* statement = dynamic_cast<AuthnStatement*>(xo.get());\r
-        TS_ASSERT(statement!=NULL);\r
-\r
-        TSM_ASSERT_EQUALS("AuthnInstant attribute", expectedAuthnInstant->getEpoch(), statement->getAuthnInstant()->getEpoch());\r
-        assertEquals("SessionIndex attribute", expectedSessionIndex, statement->getSessionIndex());\r
-        TSM_ASSERT_EQUALS("SessionNotOnOrAfter attribute", expectedSessionNotOnOrAfter->getEpoch(), statement->getSessionNotOnOrAfter()->getEpoch());\r
-\r
-        TS_ASSERT(statement->getSubjectLocality()==NULL);\r
-        TS_ASSERT(statement->getAuthnContext()==NULL);\r
-\r
-    }\r
-\r
-    void testChildElementsUnmarshall() {\r
-        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
-        AuthnStatement* statement= dynamic_cast<AuthnStatement*>(xo.get());\r
-        TS_ASSERT(statement!=NULL);\r
-\r
-        TS_ASSERT(statement->getAuthnInstant()==NULL);\r
-        TS_ASSERT(statement->getSessionIndex()==NULL);\r
-        TS_ASSERT(statement->getSessionNotOnOrAfter()==NULL);\r
-\r
-        TS_ASSERT(statement->getSubjectLocality()!=NULL);\r
-        TS_ASSERT(statement->getAuthnContext()!=NULL);\r
-\r
-    }\r
-\r
-    void testSingleElementMarshall() {\r
-        AuthnStatement* statement=AuthnStatementBuilder::buildAuthnStatement();\r
-        statement->setAuthnInstant(expectedAuthnInstant);\r
-        assertEquals(expectedDOM, statement);\r
-    }\r
-\r
-    void testSingleElementOptionalAttributesMarshall() {\r
-        AuthnStatement* statement=AuthnStatementBuilder::buildAuthnStatement();\r
-        statement->setAuthnInstant(expectedAuthnInstant);\r
-        statement->setSessionIndex(expectedSessionIndex);\r
-        statement->setSessionNotOnOrAfter(expectedSessionNotOnOrAfter);\r
-        assertEquals(expectedOptionalAttributesDOM, statement);\r
-    }\r
-\r
-    void testChildElementsMarshall() {\r
-        AuthnStatement* statement=AuthnStatementBuilder::buildAuthnStatement();\r
-        statement->setSubjectLocality(SubjectLocalityBuilder::buildSubjectLocality());\r
-        statement->setAuthnContext(AuthnContextBuilder::buildAuthnContext());\r
-        assertEquals(expectedChildElementsDOM, statement);\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/Assertions.h>
+#include <saml/util/SAMLConstants.h>
+
+using namespace opensaml::saml2;
+
+class AuthnStatement20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
+    DateTime* expectedAuthnInstant;
+    XMLCh* expectedSessionIndex;
+    DateTime* expectedSessionNotOnOrAfter;
+
+public:
+    void setUp() {
+        expectedAuthnInstant = new DateTime(XMLString::transcode("1984-08-26T10:01:30.043Z"));
+        expectedAuthnInstant->parseDateTime();
+        expectedSessionIndex = (XMLString::transcode("abc123"));
+        expectedSessionNotOnOrAfter = new DateTime(XMLString::transcode("1984-08-26T10:11:30.043Z"));
+        expectedSessionNotOnOrAfter->parseDateTime();
+
+        singleElementFile = data_path + "saml2/core/impl/AuthnStatement.xml";
+        singleElementOptionalAttributesFile = data_path + "saml2/core/impl/AuthnStatementOptionalAttributes.xml";
+        childElementsFile  = data_path + "saml2/core/impl/AuthnStatementChildElements.xml";    
+        SAMLObjectBaseTestCase::setUp();
+    }
+    
+    void tearDown() {
+        delete expectedAuthnInstant;
+        XMLString::release(&expectedSessionIndex);
+        delete expectedSessionNotOnOrAfter;
+        SAMLObjectBaseTestCase::tearDown();
+    }
+
+    void testSingleElementUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
+        AuthnStatement* statement = dynamic_cast<AuthnStatement*>(xo.get());
+        TS_ASSERT(statement!=NULL);
+
+        TSM_ASSERT_EQUALS("AuthnInstant attribute", expectedAuthnInstant->getEpoch(), statement->getAuthnInstant()->getEpoch());
+        TS_ASSERT(statement->getSessionIndex()==NULL);
+        TS_ASSERT(statement->getSessionNotOnOrAfter()==NULL);
+
+        TS_ASSERT(statement->getSubjectLocality()==NULL);
+        TS_ASSERT(statement->getAuthnContext()==NULL);
+    }
+
+    void testSingleElementOptionalAttributesUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));
+        AuthnStatement* statement = dynamic_cast<AuthnStatement*>(xo.get());
+        TS_ASSERT(statement!=NULL);
+
+        TSM_ASSERT_EQUALS("AuthnInstant attribute", expectedAuthnInstant->getEpoch(), statement->getAuthnInstant()->getEpoch());
+        assertEquals("SessionIndex attribute", expectedSessionIndex, statement->getSessionIndex());
+        TSM_ASSERT_EQUALS("SessionNotOnOrAfter attribute", expectedSessionNotOnOrAfter->getEpoch(), statement->getSessionNotOnOrAfter()->getEpoch());
+
+        TS_ASSERT(statement->getSubjectLocality()==NULL);
+        TS_ASSERT(statement->getAuthnContext()==NULL);
+
+    }
+
+    void testChildElementsUnmarshall() {
+        auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));
+        AuthnStatement* statement= dynamic_cast<AuthnStatement*>(xo.get());
+        TS_ASSERT(statement!=NULL);
+
+        TS_ASSERT(statement->getAuthnInstant()==NULL);
+        TS_ASSERT(statement->getSessionIndex()==NULL);
+        TS_ASSERT(statement->getSessionNotOnOrAfter()==NULL);
+
+        TS_ASSERT(statement->getSubjectLocality()!=NULL);
+        TS_ASSERT(statement->getAuthnContext()!=NULL);
+
+    }
+
+    void testSingleElementMarshall() {
+        AuthnStatement* statement=AuthnStatementBuilder::buildAuthnStatement();
+        statement->setAuthnInstant(expectedAuthnInstant);
+        assertEquals(expectedDOM, statement);
+    }
+
+    void testSingleElementOptionalAttributesMarshall() {
+        AuthnStatement* statement=AuthnStatementBuilder::buildAuthnStatement();
+        statement->setAuthnInstant(expectedAuthnInstant);
+        statement->setSessionIndex(expectedSessionIndex);
+        statement->setSessionNotOnOrAfter(expectedSessionNotOnOrAfter);
+        assertEquals(expectedOptionalAttributesDOM, statement);
+    }
+
+    void testChildElementsMarshall() {
+        AuthnStatement* statement=AuthnStatementBuilder::buildAuthnStatement();
+        statement->setSubjectLocality(SubjectLocalityBuilder::buildSubjectLocality());
+        statement->setAuthnContext(AuthnContextBuilder::buildAuthnContext());
+        assertEquals(expectedChildElementsDOM, statement);
+    }
+
+};