504f71157c65d9241d39d17ef895bf3436b5bc71
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / Terminate20Test.h
1 /*
2  *  Copyright 2001-2007 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 Terminate20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
23
24 public:
25     void setUp() {
26         singleElementFile = data_path + "saml2/core/impl/Terminate.xml";
27         SAMLObjectBaseTestCase::setUp();
28     }
29     
30     void tearDown() {
31         SAMLObjectBaseTestCase::tearDown();
32     }
33
34     void testSingleElementUnmarshall() {
35         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
36         Terminate* terminate = dynamic_cast<Terminate*>(xo.get());
37         TS_ASSERT(terminate!=NULL);
38     }
39
40     void testSingleElementMarshall() {
41         Terminate * terminate = TerminateBuilder::buildTerminate();
42         assertEquals(expectedDOM, terminate);
43     }
44
45
46 };