Completed 2.0 assertions schema classes.
[shibboleth/cpp-opensaml.git] / samltest / saml1 / core / impl / AudienceTest.h
1 /*\r
2  *  Copyright 2001-2006 Internet2\r
3  * \r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 #include "internal.h"\r
18 #include <saml/saml1/core/Assertions.h>\r
19 \r
20 using namespace opensaml::saml1;\r
21 \r
22 class AudienceTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
23     XMLCh* expectedUri;\r
24 \r
25 public:\r
26     void setUp() {\r
27         expectedUri=XMLString::transcode("urn:oasis:names:tc:SAML:1.0:assertion");\r
28         singleElementFile = data_path + "saml1/core/impl/singleAudience.xml";\r
29         singleElementOptionalAttributesFile = data_path + "saml1/core/impl/singleAudienceAttributes.xml";\r
30         SAMLObjectBaseTestCase::setUp();\r
31     }\r
32     \r
33     void tearDown() {\r
34         XMLString::release(&expectedUri);\r
35         SAMLObjectBaseTestCase::tearDown();\r
36     }\r
37 \r
38     void testSingleElementUnmarshall() {\r
39         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
40         Audience& a = dynamic_cast<Audience&>(*xo.get());\r
41         TSM_ASSERT("Uri is non-null", a.getAudienceURI()==NULL);\r
42     }\r
43 \r
44     void testSingleElementOptionalAttributesUnmarshall() {\r
45         auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
46         Audience& a = dynamic_cast<Audience&>(*xo.get());\r
47         TSM_ASSERT_SAME_DATA("Uri", expectedUri, a.getAudienceURI(), XMLString::stringLen(expectedUri));\r
48     }\r
49 \r
50     void testSingleElementMarshall() {\r
51         assertEquals(expectedDOM, AudienceBuilder::buildAudience());\r
52     }\r
53 \r
54     void testSingleElementOptionalAttributesMarshall() {\r
55         Audience* a=AudienceBuilder::buildAudience();\r
56         a->setAudienceURI(expectedUri);\r
57         assertEquals(expectedOptionalAttributesDOM, a);\r
58     }\r
59 \r
60 };\r