X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2Fsaml2%2Fbinding%2FSAML2RedirectTest.h;h=992fb47f0b6d08d6964a3999f7cd54799a75a677;hb=e9554c255ad3c91c7c4976e7a1a54905903e66a2;hp=6c4ba2140944141c515b4c0804cb3f81b32281fd;hpb=5cd3da8d9bd792f4a24372ab8e6d24b8409df41a;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/saml2/binding/SAML2RedirectTest.h b/samltest/saml2/binding/SAML2RedirectTest.h index 6c4ba21..992fb47 100644 --- a/samltest/saml2/binding/SAML2RedirectTest.h +++ b/samltest/saml2/binding/SAML2RedirectTest.h @@ -1,5 +1,5 @@ /* - * Copyright 2001-2007 Internet2 + * 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. @@ -33,7 +33,7 @@ public: void testSAML2Redirect() { try { - QName idprole(samlconstants::SAML20MD_NS, IDPSSODescriptor::LOCAL_NAME); + xmltooling::QName idprole(samlconstants::SAML20MD_NS, IDPSSODescriptor::LOCAL_NAME); SecurityPolicy policy(m_metadata, &idprole, m_trust, false); policy.getRules().assign(m_rules.begin(), m_rules.end()); @@ -51,16 +51,16 @@ public: cc.setUsage(Credential::SIGNING_CREDENTIAL); Locker clocker(m_creds); 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->setID(NULL); + toSend->setIssueInstant(time(nullptr)); + toSend->setID(nullptr); // Encode message. auto_ptr encoder( SAMLConfig::getConfig().MessageEncoderManager.newPlugin( - samlconstants::SAML20_BINDING_HTTP_REDIRECT, pair(NULL,NULL) + samlconstants::SAML20_BINDING_HTTP_REDIRECT, pair(nullptr,nullptr) ) ); Locker locker(m_metadata); @@ -70,7 +70,7 @@ public: "https://sp.example.org/SAML/SSO", m_metadata->getEntityDescriptor(MetadataProvider::Criteria("https://sp.example.org/")).first, "state", - NULL, + nullptr, cred ); toSend.release(); @@ -79,7 +79,7 @@ public: string relayState; auto_ptr decoder( SAMLConfig::getConfig().MessageDecoderManager.newPlugin( - samlconstants::SAML20_BINDING_HTTP_REDIRECT, pair(NULL,NULL) + samlconstants::SAML20_BINDING_HTTP_REDIRECT, pair(nullptr,nullptr) ) ); auto_ptr response(dynamic_cast(decoder->decode(relayState,*this,policy)));