20054a0ed00a8307a8049ee5882c672608585f40
[shibboleth/cpp-opensaml.git] / samltest / saml2 / core / impl / IDPList20Test.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 #include <saml/util/SAMLConstants.h>
20
21 using namespace opensaml::saml2p;
22 using namespace opensaml::saml2;
23
24 class IDPList20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
25
26 public:
27     void setUp() {
28         singleElementFile = data_path + "saml2/core/impl/IDPList.xml";
29         childElementsFile  = data_path + "saml2/core/impl/IDPListChildElements.xml";    
30         SAMLObjectBaseTestCase::setUp();
31     }
32     
33     void tearDown() {
34         SAMLObjectBaseTestCase::tearDown();
35     }
36
37     void testSingleElementUnmarshall() {
38         auto_ptr<XMLObject> xo(unmarshallElement(singleElementFile));
39         IDPList* list = dynamic_cast<IDPList*>(xo.get());
40         TS_ASSERT(list!=NULL);
41
42         TS_ASSERT(list->getGetComplete()==NULL);
43         TSM_ASSERT_EQUALS("# of IDPEntry child elements", 0, list->getIDPEntrys().size());
44     }
45
46     void testChildElementsUnmarshall() {
47         auto_ptr<XMLObject> xo(unmarshallElement(childElementsFile));
48         IDPList* list= dynamic_cast<IDPList*>(xo.get());
49         TS_ASSERT(list!=NULL);
50         TS_ASSERT(list->getGetComplete()!=NULL);
51         TSM_ASSERT_EQUALS("# of IDPEntry child elements", 3, list->getIDPEntrys().size());
52     }
53
54     void testSingleElementMarshall() {
55         IDPList* list=IDPListBuilder::buildIDPList();
56         assertEquals(expectedDOM, list);
57     }
58
59     void testChildElementsMarshall() {
60         IDPList* list=IDPListBuilder::buildIDPList();
61         list->getIDPEntrys().push_back(IDPEntryBuilder::buildIDPEntry());
62         list->getIDPEntrys().push_back(IDPEntryBuilder::buildIDPEntry());
63         list->getIDPEntrys().push_back(IDPEntryBuilder::buildIDPEntry());
64         list->setGetComplete(GetCompleteBuilder::buildGetComplete());
65         assertEquals(expectedChildElementsDOM, list);
66     }
67
68 };