Convert from NULL macro to nullptr, remove unused zlib code.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / Action20Test.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 #include <saml/util/SAMLConstants.h>
20
21 using namespace opensaml::saml2;
22
23 class Action20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
24     XMLCh* expectedNamespace; 
25     XMLCh* expectedContent; 
26
27 public:
28     void setUp() {
29         expectedNamespace = XMLString::transcode("urn:string:namespace"); 
30         expectedContent = XMLString::transcode("someActionName"); 
31
32         singleElementFile = data_path + "saml2/core/impl/Action.xml";
33         SAMLObjectBaseTestCase::setUp();
34     }
35     
36     void tearDown() {
37         XMLString::release(&expectedNamespace);
38         XMLString::release(&expectedContent);
39         SAMLObjectBaseTestCase::tearDown();
40     }
41
42     void testSingleElementUnmarshall() {
43         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
44         Action* action = dynamic_cast<Action*>(xo.get());
45         TS_ASSERT(action!=nullptr);
46
47         assertEquals("Element content", expectedContent, action->getAction());
48         assertEquals("Namespace attribute", expectedNamespace, action->getNamespace());
49     }
50
51
52     void testSingleElementMarshall() {
53         Action* action = ActionBuilder::buildAction();
54         TS_ASSERT(action!=nullptr);
55
56         action->setAction(expectedContent);
57         action->setNamespace(expectedNamespace);
58         assertEquals(expectedDOM, action);
59     }
60
61 };