Major revamp of credential and trust handling code, PKIX engine still needs work.
[shibboleth/cpp-opensaml.git] / samltest / signature / SAMLSignatureTestBase.h
1 /*
2  *  Copyright 2001-2007 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 "internal.h"
18 #include <saml/signature/SignatureProfileValidator.h>
19
20 #include <xmltooling/security/CredentialCriteria.h>
21 #include <xmltooling/security/CredentialResolver.h>
22 #include <xmltooling/signature/KeyInfo.h>
23 #include <xmltooling/signature/SignatureValidator.h>
24
25 using namespace xmlsignature;
26
27 class SAMLSignatureTestBase : public SAMLObjectBaseTestCase {
28 protected:
29     CredentialResolver* m_resolver;
30 public:
31     void setUp() {
32         m_resolver=NULL;
33         SAMLObjectBaseTestCase::setUp();
34         string config = data_path + "FilesystemCredentialResolver.xml";
35         ifstream in(config.c_str());
36         DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
37         XercesJanitor<DOMDocument> janitor(doc);
38         m_resolver = XMLToolingConfig::getConfig().CredentialResolverManager.newPlugin(
39             FILESYSTEM_CREDENTIAL_RESOLVER,doc->getDocumentElement()
40             );
41     }
42
43     void tearDown() {
44         delete m_resolver;
45         SAMLObjectBaseTestCase::tearDown();
46     }
47 };