afdfd39c240aff2ef43b4d86a8584a8510e87dd0
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / Audience20Test.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 Audience20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
23     XMLCh* expectedContent;
24
25 public:
26     void setUp() {
27         expectedContent=XMLString::transcode("audience URI");
28         singleElementFile = data_path + "saml2/core/impl/Audience.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         Audience* audience = dynamic_cast<Audience*>(xo.get());
40         TS_ASSERT(audience!=NULL);
41         assertEquals("Audience text content", expectedContent, audience->getAudienceURI());
42     }
43
44     void testSingleElementMarshall() {
45         Audience * audience = AudienceBuilder::buildAudience();
46         audience->setAudienceURI(expectedContent);
47         assertEquals(expectedDOM, audience);
48     }
49
50
51 };