Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / StatusCode20Test.h
1 /*\r
2  *  Copyright 2001-2006 Internet2\r
3  * \r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 #include "internal.h"\r
18 #include <saml/saml2/core/Protocols.h>\r
19 \r
20 using namespace opensaml::saml2p;\r
21 \r
22 class StatusCode20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
23     XMLCh* Value;\r
24 \r
25 public:\r
26     void setUp() {\r
27         Value=XMLString::transcode("urn:string");\r
28         singleElementFile = data_path + "saml2/core/impl/StatusCode.xml";\r
29         childElementsFile  = data_path + "saml2/core/impl/StatusCodeChildElements.xml";    \r
30         SAMLObjectBaseTestCase::setUp();\r
31     }\r
32     \r
33     void tearDown() {\r
34         XMLString::release(&Value);\r
35         SAMLObjectBaseTestCase::tearDown();\r
36     }\r
37 \r
38     void testSingleElementUnmarshall() {\r
39         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
40         StatusCode* sc = dynamic_cast<StatusCode*>(xo.get());\r
41         TS_ASSERT(sc!=NULL);\r
42         assertEquals("Value attribute", Value, sc->getValue());\r
43         TSM_ASSERT("StatusCode child element", sc->getStatusCode()==NULL);\r
44     }\r
45 \r
46     void testChildElementsUnmarshall() {\r
47         auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));\r
48         StatusCode* sc = dynamic_cast<StatusCode*>(xo.get());\r
49         TS_ASSERT(sc!=NULL);\r
50         TSM_ASSERT("StatusCode child element", sc->getStatusCode()!=NULL);\r
51     }\r
52 \r
53     void testSingleElementMarshall() {\r
54         StatusCode* sc=StatusCodeBuilder::buildStatusCode();\r
55         sc->setValue(Value);\r
56         assertEquals(expectedDOM, sc);\r
57     }\r
58 \r
59     void testChildElementsMarshall() {\r
60         StatusCode* sc=StatusCodeBuilder::buildStatusCode();\r
61         StatusCode* scChild=StatusCodeBuilder::buildStatusCode();\r
62         sc->setStatusCode(scChild);\r
63         assertEquals(expectedChildElementsDOM, sc);\r
64     }\r
65 \r
66 };\r