X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fcpp-opensaml.git;a=blobdiff_plain;f=samltest%2Fsaml2%2Fcore%2Fimpl%2FSubject20Test.h;h=07cd2369f6ae7d0087262a627f6b21b7f1483d61;hp=36f4ef0b435c07c9cb2ac72ce9a4a27d2d559798;hb=1ffcb743f90aeb3da11054316f3d005ff7edbf7b;hpb=e8d75900802dfa84c06290f88e365fd355ce6881 diff --git a/samltest/saml2/core/impl/Subject20Test.h b/samltest/saml2/core/impl/Subject20Test.h index 36f4ef0..07cd236 100644 --- a/samltest/saml2/core/impl/Subject20Test.h +++ b/samltest/saml2/core/impl/Subject20Test.h @@ -1,71 +1,71 @@ -/* - * Copyright 2001-2006 Internet2 - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "internal.h" -#include -#include - -using namespace opensaml::saml2; - -class Subject20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase { - -public: - void setUp() { - singleElementFile = data_path + "saml2/core/impl/Subject.xml"; - childElementsFile = data_path + "saml2/core/impl/SubjectChildElements.xml"; - SAMLObjectBaseTestCase::setUp(); - } - - void tearDown() { - SAMLObjectBaseTestCase::tearDown(); - } - - void testSingleElementUnmarshall() { - auto_ptr xo(unmarshallElement(singleElementFile)); - Subject* subject = dynamic_cast(xo.get()); - TS_ASSERT(subject!=NULL); - - TS_ASSERT(subject->getBaseID()==NULL); - TS_ASSERT(subject->getNameID()==NULL); - TS_ASSERT(subject->getEncryptedID()==NULL); - TSM_ASSERT_EQUALS("# of SubjectConfirmation child elements", 0, subject->getSubjectConfirmations().size()); - } - - void testChildElementsUnmarshall() { - auto_ptr xo(unmarshallElement(childElementsFile)); - Subject* subject= dynamic_cast(xo.get()); - TS_ASSERT(subject!=NULL); - - TS_ASSERT(subject->getBaseID()==NULL); - TS_ASSERT(subject->getNameID()!=NULL); - TS_ASSERT(subject->getEncryptedID()==NULL); - TSM_ASSERT_EQUALS("# of SubjectConfirmation child elements", 2, subject->getSubjectConfirmations().size()); - } - - void testSingleElementMarshall() { - Subject* subject=SubjectBuilder::buildSubject(); - assertEquals(expectedDOM, subject); - } - - void testChildElementsMarshall() { - Subject* subject=SubjectBuilder::buildSubject(); - subject->setNameID(NameIDBuilder::buildNameID()); - subject->getSubjectConfirmations().push_back(SubjectConfirmationBuilder::buildSubjectConfirmation()); - subject->getSubjectConfirmations().push_back(SubjectConfirmationBuilder::buildSubjectConfirmation()); - assertEquals(expectedChildElementsDOM, subject); - } - -}; +/* + * Copyright 2001-2006 Internet2 + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "internal.h" +#include +#include + +using namespace opensaml::saml2; + +class Subject20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase { + +public: + void setUp() { + singleElementFile = data_path + "saml2/core/impl/Subject.xml"; + childElementsFile = data_path + "saml2/core/impl/SubjectChildElements.xml"; + SAMLObjectBaseTestCase::setUp(); + } + + void tearDown() { + SAMLObjectBaseTestCase::tearDown(); + } + + void testSingleElementUnmarshall() { + auto_ptr xo(unmarshallElement(singleElementFile)); + Subject* subject = dynamic_cast(xo.get()); + TS_ASSERT(subject!=NULL); + + TS_ASSERT(subject->getBaseID()==NULL); + TS_ASSERT(subject->getNameID()==NULL); + TS_ASSERT(subject->getEncryptedID()==NULL); + TSM_ASSERT_EQUALS("# of SubjectConfirmation child elements", 0, subject->getSubjectConfirmations().size()); + } + + void testChildElementsUnmarshall() { + auto_ptr xo(unmarshallElement(childElementsFile)); + Subject* subject= dynamic_cast(xo.get()); + TS_ASSERT(subject!=NULL); + + TS_ASSERT(subject->getBaseID()==NULL); + TS_ASSERT(subject->getNameID()!=NULL); + TS_ASSERT(subject->getEncryptedID()==NULL); + TSM_ASSERT_EQUALS("# of SubjectConfirmation child elements", 2, subject->getSubjectConfirmations().size()); + } + + void testSingleElementMarshall() { + Subject* subject=SubjectBuilder::buildSubject(); + assertEquals(expectedDOM, subject); + } + + void testChildElementsMarshall() { + Subject* subject=SubjectBuilder::buildSubject(); + subject->setNameID(NameIDBuilder::buildNameID()); + subject->getSubjectConfirmations().push_back(SubjectConfirmationBuilder::buildSubjectConfirmation()); + subject->getSubjectConfirmations().push_back(SubjectConfirmationBuilder::buildSubjectConfirmation()); + assertEquals(expectedChildElementsDOM, subject); + } + +};