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