Major revamp of credential and trust handling code, PKIX engine still needs work.
[shibboleth/cpp-opensaml.git] / samltest / signature / SAML1RequestTest.h
index 2d1fb8f..cebe076 100644 (file)
-/*\r
- *  Copyright 2001-2005 Internet2\r
- * \r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *     http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-\r
-#include "internal.h"\r
-#include <saml/saml1/core/Protocols.h>\r
-#include <saml/signature/SignatureProfileValidator.h>\r
-#include <xmltooling/signature/SignatureValidator.h>\r
-\r
-\r
-#include <fstream>\r
-#include <openssl/pem.h>\r
-#include <xercesc/util/XMLUniDefs.hpp>\r
-#include <xsec/enc/XSECKeyInfoResolverDefault.hpp>\r
-#include <xsec/enc/OpenSSL/OpenSSLCryptoX509.hpp>\r
-#include <xsec/enc/OpenSSL/OpenSSLCryptoKeyRSA.hpp>\r
-#include <xsec/enc/XSECCryptoException.hpp>\r
-#include <xsec/framework/XSECException.hpp>\r
-\r
-using namespace opensaml::saml1p;\r
-using namespace opensaml::saml1;\r
-using namespace xmlsignature;\r
-\r
-class _addcert : public std::binary_function<X509Data*,XSECCryptoX509*,void> {\r
-public:\r
-    void operator()(X509Data* bag, XSECCryptoX509* cert) const {\r
-        safeBuffer& buf=cert->getDEREncodingSB();\r
-        X509Certificate* x=X509CertificateBuilder::buildX509Certificate();\r
-        x->setValue(buf.sbStrToXMLCh());\r
-        bag->getX509Certificates().push_back(x);\r
-    }\r
-};\r
-\r
-class SAML1RequestTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {\r
-    XSECCryptoKey* m_key;\r
-    vector<XSECCryptoX509*> m_certs;\r
-public:\r
-    void setUp() {\r
-        childElementsFile  = data_path + "signature/SAML1Request.xml";\r
-        SAMLObjectBaseTestCase::setUp();\r
-        string keypath=data_path + "key.pem";\r
-        BIO* in=BIO_new(BIO_s_file_internal());\r
-        if (in && BIO_read_filename(in,keypath.c_str())>0) {\r
-            EVP_PKEY* pkey=PEM_read_bio_PrivateKey(in, NULL, NULL, NULL);\r
-            if (pkey) {\r
-                m_key=new OpenSSLCryptoKeyRSA(pkey);\r
-                EVP_PKEY_free(pkey);\r
-            }\r
-        }\r
-        if (in) BIO_free(in);\r
-        TS_ASSERT(m_key!=NULL);\r
-\r
-        string certpath=data_path + "cert.pem";\r
-        in=BIO_new(BIO_s_file_internal());\r
-        if (in && BIO_read_filename(in,certpath.c_str())>0) {\r
-            X509* x=NULL;\r
-            while (x=PEM_read_bio_X509(in,NULL,NULL,NULL)) {\r
-                m_certs.push_back(new OpenSSLCryptoX509(x));\r
-                X509_free(x);\r
-            }\r
-        }\r
-        if (in) BIO_free(in);\r
-        TS_ASSERT(m_certs.size()>0);\r
-    }\r
-\r
-    void tearDown() {\r
-        SAMLObjectBaseTestCase::tearDown();\r
-        delete m_key;\r
-        for_each(m_certs.begin(),m_certs.end(),xmltooling::cleanup<XSECCryptoX509>());\r
-    }\r
-\r
-    void testSignature() {\r
-        auto_ptr_XMLCh issueInstant("1970-01-02T01:01:02.100Z");\r
-        auto_ptr_XMLCh id("ident");\r
-        auto_ptr_XMLCh method("method");\r
-        auto_ptr_XMLCh nameid("John Doe");\r
-        \r
-        NameIdentifier* n=NameIdentifierBuilder::buildNameIdentifier();\r
-        n->setName(nameid.get());        \r
-        Subject* subject=SubjectBuilder::buildSubject();\r
-        subject->setNameIdentifier(n);\r
-\r
-        AuthenticationQuery* query=AuthenticationQueryBuilder::buildAuthenticationQuery();\r
-        query->setAuthenticationMethod(method.get());\r
-        query->setSubject(subject);\r
-        \r
-        auto_ptr<Request> request(RequestBuilder::buildRequest());\r
-        request->setRequestID(id.get());\r
-        request->setIssueInstant(issueInstant.get());\r
-        request->setAuthenticationQuery(query);\r
-\r
-        // Append a Signature.\r
-        Signature* sig=SignatureBuilder::buildSignature();\r
-        request->setSignature(sig);\r
-        sig->setSigningKey(m_key->clone());\r
-\r
-        // Build KeyInfo.\r
-        KeyInfo* keyInfo=KeyInfoBuilder::buildKeyInfo();\r
-        X509Data* x509Data=X509DataBuilder::buildX509Data();\r
-        keyInfo->getX509Datas().push_back(x509Data);\r
-        for_each(m_certs.begin(),m_certs.end(),bind1st(_addcert(),x509Data));\r
-        sig->setKeyInfo(keyInfo);\r
-\r
-        // Sign while marshalling.\r
-        vector<Signature*> sigs(1,sig);\r
-        DOMElement* rootElement = NULL;\r
-        try {\r
-            rootElement=request->marshall((DOMDocument*)NULL,&sigs);\r
-        }\r
-        catch (XMLToolingException& e) {\r
-            TS_TRACE(e.what());\r
-            throw;\r
-        }\r
-        \r
-        string buf;\r
-        XMLHelper::serialize(rootElement, buf);\r
-        istringstream in(buf);\r
-        DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);\r
-        const XMLObjectBuilder* b = XMLObjectBuilder::getBuilder(doc->getDocumentElement());\r
-\r
-        assertEquals(expectedChildElementsDOM, b->buildFromDocument(doc));\r
-        \r
-        try {\r
-            request->getSignature()->registerValidator(new SignatureProfileValidator());\r
-            request->getSignature()->registerValidator(new SignatureValidator(new KeyResolver(m_key->clone())));\r
-            request->getSignature()->validate(true);\r
-        }\r
-        catch (XMLToolingException& e) {\r
-            TS_TRACE(e.what());\r
-            throw;\r
-        }\r
-    }\r
-\r
-};\r
+/*
+ *  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
+ *
+ *     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 "signature/SAMLSignatureTestBase.h"
+
+#include <saml/saml1/core/Assertions.h>
+#include <saml/saml1/core/Protocols.h>
+
+#include <fstream>
+
+using namespace opensaml::saml1p;
+using namespace opensaml::saml1;
+
+class SAML1RequestTest : public CxxTest::TestSuite, public SAMLSignatureTestBase {
+public:
+    void setUp() {
+        childElementsFile  = data_path + "signature/SAML1Request.xml";
+        SAMLSignatureTestBase::setUp();
+    }
+
+    void tearDown() {
+        SAMLSignatureTestBase::tearDown();
+    }
+
+    void testSignature() {
+        auto_ptr_XMLCh issueInstant("1970-01-02T01:01:02.100Z");
+        auto_ptr_XMLCh id("ident");
+        auto_ptr_XMLCh method("method");
+        auto_ptr_XMLCh nameid("John Doe");
+        
+        NameIdentifier* n=NameIdentifierBuilder::buildNameIdentifier();
+        n->setName(nameid.get());        
+        Subject* subject=SubjectBuilder::buildSubject();
+        subject->setNameIdentifier(n);
+
+        AuthenticationQuery* query=AuthenticationQueryBuilder::buildAuthenticationQuery();
+        query->setAuthenticationMethod(method.get());
+        query->setSubject(subject);
+        
+        auto_ptr<Request> request(RequestBuilder::buildRequest());
+        request->setRequestID(id.get());
+        request->setIssueInstant(issueInstant.get());
+        request->setAuthenticationQuery(query);
+
+        // Append a Signature.
+        Signature* sig=SignatureBuilder::buildSignature();
+        request->setSignature(sig);
+
+        // Sign while marshalling.
+        vector<Signature*> sigs(1,sig);
+        CredentialCriteria cc;
+        cc.setUsage(CredentialCriteria::SIGNING_CREDENTIAL);
+        Locker locker(m_resolver);
+        const Credential* cred = m_resolver->resolve(&cc);
+        TSM_ASSERT("Retrieved credential was null", cred!=NULL);
+
+        DOMElement* rootElement = NULL;
+        try {
+            rootElement=request->marshall((DOMDocument*)NULL,&sigs,cred);
+        }
+        catch (XMLToolingException& e) {
+            TS_TRACE(e.what());
+            throw;
+        }
+        
+        string buf;
+        XMLHelper::serialize(rootElement, buf);
+        istringstream in(buf);
+        DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
+        const XMLObjectBuilder* b = XMLObjectBuilder::getBuilder(doc->getDocumentElement());
+
+        auto_ptr<XMLObject> request2(b->buildFromDocument(doc));
+        assertEquals("Unmarshalled request does not match", expectedChildElementsDOM, request2.get(), false);
+        
+        try {
+            opensaml::SignatureProfileValidator spv;
+            SignatureValidator sv(cred);
+            spv.validate(dynamic_cast<Request*>(request2.get())->getSignature());
+            sv.validate(dynamic_cast<Request*>(request2.get())->getSignature());
+        }
+        catch (XMLToolingException& e) {
+            TS_TRACE(e.what());
+            throw;
+        }
+    }
+
+};