Reducing header overuse, non-inlining selected methods (CPPOST-35).
[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/SignatureValidator.h>
26
27 using namespace xmlsignature;
28
29 class SAMLSignatureTestBase : public SAMLObjectBaseTestCase {
30 protected:
31     CredentialResolver* m_resolver;
32 public:
33     void setUp() {
34         m_resolver=NULL;
35         SAMLObjectBaseTestCase::setUp();
36         string config = data_path + "FilesystemCredentialResolver.xml";
37         ifstream in(config.c_str());
38         DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
39         XercesJanitor<DOMDocument> janitor(doc);
40         m_resolver = XMLToolingConfig::getConfig().CredentialResolverManager.newPlugin(
41             FILESYSTEM_CREDENTIAL_RESOLVER,doc->getDocumentElement()
42             );
43     }
44
45     void tearDown() {
46         delete m_resolver;
47         SAMLObjectBaseTestCase::tearDown();
48     }
49 };