Set fourth file version digit to signify rebuild.
[shibboleth/cpp-xmltooling.git] / xmltoolingtest / FilesystemCredentialResolverTest.h
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 #include "XMLObjectBaseTestCase.h"
22
23 #include <xmltooling/security/CredentialResolver.h>
24 #include <xmltooling/security/X509Credential.h>
25
26 #include <fstream>
27
28 class FilesystemCredentialResolverTest : public CxxTest::TestSuite {
29 public:
30     void setUp() {
31     }
32     
33     void tearDown() {
34     }
35
36     void testFilesystemProvider() {
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
42         auto_ptr<CredentialResolver> credResolver(
43             XMLToolingConfig::getConfig().CredentialResolverManager.newPlugin(
44                 CHAINING_CREDENTIAL_RESOLVER,doc->getDocumentElement()
45                 )
46             );
47
48         vector<const Credential*> creds;
49         Locker locker(credResolver.get());
50         credResolver->resolve(creds);
51         TSM_ASSERT_EQUALS("Retrieved credential was null", 1, creds.size());
52         TSM_ASSERT("Retrieved key was null", creds.front()->getPrivateKey()!=nullptr);
53         TSM_ASSERT_EQUALS("Unexpected number of certificates", 1,
54             dynamic_cast<const X509Credential*>(creds.front())->getEntityCertificateChain().size());
55         TSM_ASSERT_EQUALS("Custom key name not found", 1, creds.front()->getKeyNames().count("Sample Key"));
56     }
57 };