Convert from NULL macro to nullptr, remove unused zlib code.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / StatusDetail20Test.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 StatusDetail20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
23
24 public:
25     void setUp() {
26         singleElementFile = data_path + "saml2/core/impl/StatusDetail.xml";
27         childElementsFile  = data_path + "saml2/core/impl/StatusDetailChildElements.xml";    
28         SAMLObjectBaseTestCase::setUp();
29     }
30     
31     void tearDown() {
32         SAMLObjectBaseTestCase::tearDown();
33     }
34
35     void testSingleElementUnmarshall() {
36         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
37         StatusDetail* sd= dynamic_cast<StatusDetail*>(xo.get());
38         TS_ASSERT(sd!=nullptr);
39         TSM_ASSERT_EQUALS("StatusDetail child elements", sd->getUnknownXMLObjects().size(), 0);
40     }
41
42     //TODO test with some XMLObject child elements from another namespace
43     void IGNOREtestChildElementsUnmarshall() {
44         auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));
45         StatusDetail* sd= dynamic_cast<StatusDetail*>(xo.get());
46         TS_ASSERT(sd!=nullptr);
47         TSM_ASSERT_EQUALS("StatusDetail child elements", sd->getUnknownXMLObjects().size(), 3);
48     }
49
50     void testSingleElementMarshall() {
51         StatusDetail* sd=StatusDetailBuilder::buildStatusDetail();
52         assertEquals(expectedDOM, sd);
53     }
54
55     //TODO test with some XMLObject child elements from another namespace
56     void IGNOREtestChildElementsMarshall() {
57         StatusDetail* sd=StatusDetailBuilder::buildStatusDetail();
58         assertEquals(expectedChildElementsDOM, sd);
59     }
60
61 };