Convert from NULL macro to nullptr, remove unused zlib code.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / AssertionIDRef20Test.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/Assertions.h>
19
20 using namespace opensaml::saml2;
21
22 class AssertionIDRef20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
23     XMLCh* expectedContent;
24
25 public:
26     void setUp() {
27         expectedContent=XMLString::transcode("assertion ID");
28         singleElementFile = data_path + "saml2/core/impl/AssertionIDRef.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         AssertionIDRef* idref = dynamic_cast<AssertionIDRef*>(xo.get());
40         TS_ASSERT(idref!=nullptr);
41         assertEquals("AssertionIDRef text content", expectedContent, idref->getAssertionID());
42     }
43
44     void testSingleElementMarshall() {
45         AssertionIDRef * idref = AssertionIDRefBuilder::buildAssertionIDRef();
46         idref->setAssertionID(expectedContent);
47         assertEquals(expectedDOM, idref);
48     }
49
50
51 };