Raw signature trust support, Redirect binding, "simple" signing rule.
[shibboleth/cpp-opensaml.git] / samltest / saml2 / binding / SAML2RedirectTest.h
1 /*
2  *  Copyright 2001-2005 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 "binding.h"
18
19 #include <saml/saml2/core/Protocols.h>
20
21 using namespace opensaml::saml2p;
22 using namespace opensaml::saml2;
23
24 class SAML2RedirectTest : public CxxTest::TestSuite, public SAMLBindingBaseTestCase {
25 public:
26     void setUp() {
27         SAMLBindingBaseTestCase::setUp();
28     }
29
30     void tearDown() {
31         SAMLBindingBaseTestCase::tearDown();
32     }
33
34     void testSAML2Redirect() {
35         try {
36             QName idprole(samlconstants::SAML20MD_NS, IDPSSODescriptor::LOCAL_NAME);
37             SecurityPolicy policy(m_rules, m_metadata, &idprole, m_trust);
38
39             // Read message to use from file.
40             string path = data_path + "saml2/binding/SAML2Response.xml";
41             ifstream in(path.c_str());
42             DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
43             XercesJanitor<DOMDocument> janitor(doc);
44             auto_ptr<Response> toSend(
45                 dynamic_cast<Response*>(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(),true))
46                 );
47             janitor.release();
48
49             // Freshen timestamp and ID.
50             toSend->setIssueInstant(time(NULL));
51             toSend->setID(NULL);
52     
53             // Encode message.
54             auto_ptr<MessageEncoder> encoder(
55                 SAMLConfig::getConfig().MessageEncoderManager.newPlugin(samlconstants::SAML20_BINDING_HTTP_REDIRECT, NULL)
56                 );
57             encoder->encode(*this,toSend.get(),"https://sp.example.org/SAML/SSO","https://sp.example.org/","state",m_creds);
58             toSend.release();
59             
60             // Decode message.
61             string relayState;
62             auto_ptr<MessageDecoder> decoder(
63                 SAMLConfig::getConfig().MessageDecoderManager.newPlugin(samlconstants::SAML20_BINDING_HTTP_REDIRECT, NULL)
64                 );
65             Locker locker(m_metadata);
66             auto_ptr<Response> response(dynamic_cast<Response*>(decoder->decode(relayState,*this,policy)));
67             
68             // Test the results.
69             TSM_ASSERT_EQUALS("RelayState was not the expected result.", relayState, "state");
70             TSM_ASSERT("SAML Response not decoded successfully.", response.get());
71             TSM_ASSERT("Message was not verified.", policy.getIssuer()!=NULL);
72             auto_ptr_char entityID(policy.getIssuer()->getName());
73             TSM_ASSERT("Issuer was not expected.", !strcmp(entityID.get(),"https://idp.example.org/"));
74             TSM_ASSERT_EQUALS("Assertion count was not correct.", response->getAssertions().size(), 1);
75
76             // Trigger a replay.
77             TSM_ASSERT_THROWS("Did not catch the replay.", decoder->decode(relayState,*this,policy), BindingException);
78         }
79         catch (XMLToolingException& ex) {
80             TS_TRACE(ex.what());
81             throw;
82         }
83     }
84 };