ea6ba41de8b0c6ecbdbba50a5093ea9062213e40
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / AuthnContextClassRef20Test.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/Assertions.h>
19
20 using namespace opensaml::saml2;
21
22 class AuthnContextClassRef20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
23     XMLCh* expectedContent;
24
25 public:
26     void setUp() {
27         expectedContent=XMLString::transcode("class reference");
28         singleElementFile = data_path + "saml2/core/impl/AuthnContextClassRef.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         AuthnContextClassRef* classref = dynamic_cast<AuthnContextClassRef*>(xo.get());
40         TS_ASSERT(classref!=NULL);
41         assertEquals("AuthnContextClassRef text content", expectedContent, classref->getReference());
42     }
43
44     void testSingleElementMarshall() {
45         AuthnContextClassRef * classref = AuthnContextClassRefBuilder::buildAuthnContextClassRef();
46         classref->setReference(expectedContent);
47         assertEquals(expectedDOM, classref);
48     }
49
50
51 };