X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2Fsaml2%2Fcore%2Fimpl%2FStatusCode20Test.h;h=50487ab4e9b43813357e66eca50b1bb502b5c41e;hb=e9554c255ad3c91c7c4976e7a1a54905903e66a2;hp=139d48beb6b5fd926fc0e7231745c3f54d8d574e;hpb=31bc751c4d57cbefbcda84e5a6afc7dffee22dcf;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/saml2/core/impl/StatusCode20Test.h b/samltest/saml2/core/impl/StatusCode20Test.h index 139d48b..50487ab 100644 --- a/samltest/saml2/core/impl/StatusCode20Test.h +++ b/samltest/saml2/core/impl/StatusCode20Test.h @@ -1,66 +1,66 @@ -/* - * 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 - -using namespace opensaml::saml2p; - -class StatusCode20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase { - XMLCh* Value; - -public: - void setUp() { - Value=XMLString::transcode("urn:string"); - singleElementFile = data_path + "saml2/core/impl/StatusCode.xml"; - childElementsFile = data_path + "saml2/core/impl/StatusCodeChildElements.xml"; - SAMLObjectBaseTestCase::setUp(); - } - - void tearDown() { - XMLString::release(&Value); - SAMLObjectBaseTestCase::tearDown(); - } - - void testSingleElementUnmarshall() { - auto_ptr xo(unmarshallElement(singleElementFile)); - StatusCode* sc = dynamic_cast(xo.get()); - TS_ASSERT(sc!=NULL); - assertEquals("Value attribute", Value, sc->getValue()); - TSM_ASSERT("StatusCode child element", sc->getStatusCode()==NULL); - } - - void testChildElementsUnmarshall() { - auto_ptr xo(unmarshallElement(childElementsFile)); - StatusCode* sc = dynamic_cast(xo.get()); - TS_ASSERT(sc!=NULL); - TSM_ASSERT("StatusCode child element", sc->getStatusCode()!=NULL); - } - - void testSingleElementMarshall() { - StatusCode* sc=StatusCodeBuilder::buildStatusCode(); - sc->setValue(Value); - assertEquals(expectedDOM, sc); - } - - void testChildElementsMarshall() { - StatusCode* sc=StatusCodeBuilder::buildStatusCode(); - StatusCode* scChild=StatusCodeBuilder::buildStatusCode(); - sc->setStatusCode(scChild); - assertEquals(expectedChildElementsDOM, sc); - } - -}; +/* + * Copyright 2001-2010 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 + +using namespace opensaml::saml2p; + +class StatusCode20Test : public CxxTest::TestSuite, public SAMLObjectBaseTestCase { + XMLCh* Value; + +public: + void setUp() { + Value=XMLString::transcode("urn:string"); + singleElementFile = data_path + "saml2/core/impl/StatusCode.xml"; + childElementsFile = data_path + "saml2/core/impl/StatusCodeChildElements.xml"; + SAMLObjectBaseTestCase::setUp(); + } + + void tearDown() { + XMLString::release(&Value); + SAMLObjectBaseTestCase::tearDown(); + } + + void testSingleElementUnmarshall() { + auto_ptr xo(unmarshallElement(singleElementFile)); + StatusCode* sc = dynamic_cast(xo.get()); + TS_ASSERT(sc!=nullptr); + assertEquals("Value attribute", Value, sc->getValue()); + TSM_ASSERT("StatusCode child element", sc->getStatusCode()==nullptr); + } + + void testChildElementsUnmarshall() { + auto_ptr xo(unmarshallElement(childElementsFile)); + StatusCode* sc = dynamic_cast(xo.get()); + TS_ASSERT(sc!=nullptr); + TSM_ASSERT("StatusCode child element", sc->getStatusCode()!=nullptr); + } + + void testSingleElementMarshall() { + StatusCode* sc=StatusCodeBuilder::buildStatusCode(); + sc->setValue(Value); + assertEquals(expectedDOM, sc); + } + + void testChildElementsMarshall() { + StatusCode* sc=StatusCodeBuilder::buildStatusCode(); + StatusCode* scChild=StatusCodeBuilder::buildStatusCode(); + sc->setStatusCode(scChild); + assertEquals(expectedChildElementsDOM, sc); + } + +};