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