X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2Fsaml1%2Fbinding%2FSAML1POSTTest.h;h=87bad33221595369d8bcd07fbdafa024c2bc7149;hb=78554aeb050d4e7f84acd30d4d332a625f32e352;hp=6b8230d98866b34b0efc8572c7b6a1723f581b5f;hpb=11cd3b15c71ee22f2818d810a17c213123e8c248;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/saml1/binding/SAML1POSTTest.h b/samltest/saml1/binding/SAML1POSTTest.h index 6b8230d..87bad33 100644 --- a/samltest/saml1/binding/SAML1POSTTest.h +++ b/samltest/saml1/binding/SAML1POSTTest.h @@ -1,17 +1,21 @@ -/* - * Copyright 2001-2007 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 +/** + * Licensed to the University Corporation for Advanced Internet + * Development, Inc. (UCAID) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. * - * http://www.apache.org/licenses/LICENSE-2.0 + * UCAID licenses this file to you 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 * - * 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. + * 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 "binding.h" @@ -33,8 +37,9 @@ public: void testSAML1POST() { try { - QName idprole(samlconstants::SAML20MD_NS, IDPSSODescriptor::LOCAL_NAME); - SecurityPolicy policy(m_rules1, m_metadata, &idprole, m_trust, false); + xmltooling::QName idprole(samlconstants::SAML20MD_NS, IDPSSODescriptor::LOCAL_NAME); + SecurityPolicy policy(m_metadata.get(), &idprole, m_trust.get(), false); + policy.getRules().assign(m_rules.begin(), m_rules.end()); // Read message to use from file. string path = data_path + "saml1/binding/SAML1Response.xml"; @@ -47,14 +52,14 @@ public: janitor.release(); CredentialCriteria cc; - cc.setUsage(CredentialCriteria::SIGNING_CREDENTIAL); - Locker clocker(m_creds); + cc.setUsage(Credential::SIGNING_CREDENTIAL); + Locker clocker(m_creds.get()); const Credential* cred = m_creds->resolve(&cc); - TSM_ASSERT("Retrieved credential was null", cred!=NULL); + TSM_ASSERT("Retrieved credential was null", cred!=nullptr); // Freshen timestamp and ID. - toSend->setIssueInstant(time(NULL)); - toSend->setResponseID(NULL); + toSend->setIssueInstant(time(nullptr)); + toSend->setResponseID(nullptr); // Encode message. auto_ptr_XMLCh lit1("MessageEncoder"); @@ -63,33 +68,39 @@ public: auto_ptr_XMLCh lit3(path.c_str()); DOMDocument* encoder_config = XMLToolingConfig::getConfig().getParser().newDocument(); XercesJanitor janitor2(encoder_config); - encoder_config->appendChild(encoder_config->createElementNS(NULL,lit1.get())); - encoder_config->getDocumentElement()->setAttributeNS(NULL,lit2.get(),lit3.get()); - auto_ptr encoder( + encoder_config->appendChild(encoder_config->createElementNS(nullptr,lit1.get())); + encoder_config->getDocumentElement()->setAttributeNS(nullptr,lit2.get(),lit3.get()); + boost::scoped_ptr encoder( SAMLConfig::getConfig().MessageEncoderManager.newPlugin( - samlconstants::SAML1_PROFILE_BROWSER_POST, pair(encoder_config->getDocumentElement(),NULL) + samlconstants::SAML1_PROFILE_BROWSER_POST, pair(encoder_config->getDocumentElement(),nullptr) ) ); - Locker locker(m_metadata); + Locker locker(m_metadata.get()); encoder->encode( - *this,toSend.get(),"https://sp.example.org/SAML/SSO",m_metadata->getEntityDescriptor("https://sp.example.org/"),"state",NULL,cred + *this, + toSend.get(), + "https://sp.example.org/SAML/SSO", + m_metadata->getEntityDescriptor(MetadataProvider::Criteria("https://sp.example.org/")).first, + "state", + nullptr, + cred ); toSend.release(); // Decode message. string relayState; - auto_ptr decoder( + boost::scoped_ptr decoder( SAMLConfig::getConfig().MessageDecoderManager.newPlugin( - samlconstants::SAML1_PROFILE_BROWSER_POST, pair(NULL,NULL) + samlconstants::SAML1_PROFILE_BROWSER_POST, pair(nullptr,nullptr) ) ); - auto_ptr response(dynamic_cast(decoder->decode(relayState,*this,policy))); + boost::scoped_ptr response(dynamic_cast(decoder->decode(relayState,*this,policy))); // Test the results. TSM_ASSERT_EQUALS("TARGET was not the expected result.", relayState, "state"); TSM_ASSERT("SAML Response not decoded successfully.", response.get()); - TSM_ASSERT("Message was not verified.", policy.isSecure()); + TSM_ASSERT("Message was not verified.", policy.isAuthenticated()); auto_ptr_char entityID(policy.getIssuer()->getName()); TSM_ASSERT("Issuer was not expected.", !strcmp(entityID.get(),"https://idp.example.org/")); TSM_ASSERT_EQUALS("Assertion count was not correct.", response->getAssertions().size(), 1);