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