Convert from NULL macro to nullptr, remove unused zlib code.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / GetComplete20Test.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 GetComplete20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
23     XMLCh* expectedContent;
24
25 public:
26     void setUp() {
27         expectedContent=XMLString::transcode("http://sp.example.org/idplist.xml");
28         singleElementFile = data_path + "saml2/core/impl/GetComplete.xml";
29         SAMLObjectBaseTestCase::setUp();
30     }
31     
32     void tearDown() {
33         XMLString::release(&expectedContent);
34         SAMLObjectBaseTestCase::tearDown();
35     }
36
37     void testSingleElementUnmarshall() {
38         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
39         GetComplete* gc = dynamic_cast<GetComplete*>(xo.get());
40         TS_ASSERT(gc!=nullptr);
41         assertEquals("GetComplete text content", expectedContent, gc->getGetComplete());
42     }
43
44     void testSingleElementMarshall() {
45         GetComplete * gc = GetCompleteBuilder::buildGetComplete();
46         gc->setGetComplete(expectedContent);
47         assertEquals(expectedDOM, gc);
48     }
49
50
51 };