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