Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / samltest / saml1 / core / impl / AttributeDesignatorTest.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 AttributeDesignatorTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
23     XMLCh* expectedAttributeName;\r
24     XMLCh* expectedAttributeNamespace;\r
25 \r
26 public:\r
27     void setUp() {\r
28         expectedAttributeName=XMLString::transcode("AttributeName");\r
29         expectedAttributeNamespace=XMLString::transcode("namespace");\r
30         singleElementFile = data_path + "saml1/core/impl/singleAttributeDesignator.xml";\r
31         singleElementOptionalAttributesFile = data_path + "saml1/core/impl/singleAttributeDesignatorAttributes.xml";\r
32         SAMLObjectBaseTestCase::setUp();\r
33     }\r
34     \r
35     void tearDown() {\r
36         XMLString::release(&expectedAttributeName);\r
37         XMLString::release(&expectedAttributeNamespace);\r
38         SAMLObjectBaseTestCase::tearDown();\r
39     }\r
40 \r
41     void testSingleElementUnmarshall() {\r
42         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));\r
43         AttributeDesignator& ad = dynamic_cast<AttributeDesignator&>(*xo.get());\r
44         TSM_ASSERT("AttributeName", ad.getAttributeName()==NULL);\r
45         TSM_ASSERT("AttributeNamespace", ad.getAttributeNamespace()==NULL);\r
46     }\r
47 \r
48     void testSingleElementOptionalAttributesUnmarshall() {\r
49         auto_ptr<XMLObject> xo(unmarshallElement(singleElementOptionalAttributesFile));\r
50         AttributeDesignator& ad = dynamic_cast<AttributeDesignator&>(*xo.get());\r
51         assertEquals("AttributeName", expectedAttributeName, ad.getAttributeName());\r
52         assertEquals("AttributeNamespace", expectedAttributeNamespace, ad.getAttributeNamespace());\r
53     }\r
54 \r
55     void testSingleElementMarshall() {\r
56         assertEquals(expectedDOM, AttributeDesignatorBuilder::buildAttributeDesignator());\r
57     }\r
58 \r
59     void testSingleElementOptionalAttributesMarshall() {\r
60         AttributeDesignator* ad=AttributeDesignatorBuilder::buildAttributeDesignator();\r
61         ad->setAttributeName(expectedAttributeName);\r
62         ad->setAttributeNamespace(expectedAttributeNamespace);\r
63         assertEquals(expectedOptionalAttributesDOM, ad);\r
64     }\r
65 \r
66 };\r