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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/**
* 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 "internal.h"
#include <saml/SAMLConfig.h>
#include <saml/saml2/binding/SAML2ArtifactType0004.h>
#include <saml/saml2/metadata/Metadata.h>
#include <saml/saml2/metadata/MetadataProvider.h>
#include <saml/saml2/metadata/MetadataFilter.h>
#include <xmltooling/security/SecurityHelper.h>
using namespace opensaml::saml2md;
using namespace opensaml::saml2p;
using namespace opensaml;
class XMLMetadataProviderTest : public CxxTest::TestSuite, public SAMLObjectBaseTestCase {
XMLCh* entityID;
XMLCh* entityID2;
XMLCh* supportedProtocol;
XMLCh* supportedProtocol2;
public:
void setUp() {
entityID=XMLString::transcode("urn:mace:incommon:washington.edu");
entityID2=XMLString::transcode("urn:mace:incommon:psu.edu");
supportedProtocol=XMLString::transcode("urn:oasis:names:tc:SAML:1.1:protocol");
supportedProtocol2=XMLString::transcode("urn:mace:shibboleth:1.0");
SAMLObjectBaseTestCase::setUp();
}
void tearDown() {
XMLString::release(&entityID);
XMLString::release(&entityID2);
XMLString::release(&supportedProtocol);
XMLString::release(&supportedProtocol2);
SAMLObjectBaseTestCase::tearDown();
}
void testHTTPProvider()
{
skipNetworked();
string config = data_path + "saml2/metadata/HTTPMetadataProvider.xml";
ifstream in(config.c_str());
DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
XercesJanitor<DOMDocument> janitor(doc);
scoped_ptr<MetadataProvider> metadataProvider(\
SAMLConfig::getConfig().MetadataProviderManager.newPlugin(XML_METADATA_PROVIDER, doc->getDocumentElement(), false)
);
try {
metadataProvider->init();
} catch (const XMLToolingException& ex) {
TS_TRACE(ex.what());
throw;
}
Locker locker(metadataProvider.get());
const EntityDescriptor* descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(entityID, nullptr, nullptr, false)).first;
TSM_ASSERT("Retrieved entity descriptor was null", descriptor != nullptr);
assertEquals("Entity's ID does not match requested ID", entityID, descriptor->getEntityID());
TSM_ASSERT_EQUALS("Unexpected number of roles", 1, descriptor->getIDPSSODescriptors().size());
TSM_ASSERT("Role lookup failed", find_if(descriptor->getIDPSSODescriptors(), isValidForProtocol(supportedProtocol)) != nullptr);
TSM_ASSERT("Role lookup failed", find_if(descriptor->getIDPSSODescriptors(), isValidForProtocol(supportedProtocol2)) != nullptr);
static const char* providerIdStr = "urn:mace:incommon:washington.edu";
scoped_ptr<SAML2ArtifactType0004> artifact(
new SAML2ArtifactType0004(
SecurityHelper::doHash("SHA1", providerIdStr, strlen(providerIdStr), false), 1
)
);
descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(artifact.get(), nullptr, nullptr, false)).first;
TSM_ASSERT("Retrieved entity descriptor was null", descriptor != nullptr);
assertEquals("Entity's ID does not match requested ID", entityID, descriptor->getEntityID());
}
void testBadSig()
{
skipNetworked();
string config = data_path + "saml2/metadata/XMLMetadataProviderBadSig.xml";
ifstream in(config.c_str());
DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
XercesJanitor<DOMDocument> janitor(doc);
scoped_ptr<MetadataProvider> metadataProvider(
SAMLConfig::getConfig().MetadataProviderManager.newPlugin(XML_METADATA_PROVIDER, doc->getDocumentElement(), false)
);
try {
metadataProvider->init();
} catch (const MetadataFilterException& ex) {
TS_TRACE(ex.what());
return;
}
catch (const XMLToolingException& ex) {
TS_TRACE(ex.what());
throw;
}
}
void testBadChain()
{
string config = data_path + "saml2/metadata/BadChain.xml";
ifstream in(config.c_str());
DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
XercesJanitor<DOMDocument> janitor(doc);
scoped_ptr<MetadataProvider> metadataProvider(
SAMLConfig::getConfig().MetadataProviderManager.newPlugin(CHAINING_METADATA_PROVIDER, doc->getDocumentElement(), false)
);
try {
metadataProvider->init();
} catch (const XMLToolingException& ex) {
TS_TRACE(ex.what());
throw;
}
}
void testXMLProvider() {
skipNetworked();
string config = data_path + "saml2/metadata/XMLMetadataProvider.xml";
ifstream in(config.c_str());
DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
XercesJanitor<DOMDocument> janitor(doc);
scoped_ptr<MetadataProvider> metadataProvider(
SAMLConfig::getConfig().MetadataProviderManager.newPlugin(XML_METADATA_PROVIDER,doc->getDocumentElement(), false)
);
try {
metadataProvider->init();
}
catch (const XMLToolingException& ex) {
TS_TRACE(ex.what());
throw;
}
Locker locker(metadataProvider.get());
const EntityDescriptor* descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(entityID,nullptr,nullptr,false)).first;
TSM_ASSERT("Retrieved entity descriptor was null", descriptor!=nullptr);
assertEquals("Entity's ID does not match requested ID", entityID, descriptor->getEntityID());
TSM_ASSERT_EQUALS("Unexpected number of roles", 1, descriptor->getIDPSSODescriptors().size());
TSM_ASSERT("Role lookup failed", find_if(descriptor->getIDPSSODescriptors(), isValidForProtocol(supportedProtocol))!=nullptr);
TSM_ASSERT("Role lookup failed", find_if(descriptor->getIDPSSODescriptors(), isValidForProtocol(supportedProtocol2))!=nullptr);
static const char* providerIdStr = "urn:mace:incommon:washington.edu";
scoped_ptr<SAML2ArtifactType0004> artifact(
new SAML2ArtifactType0004(
SecurityHelper::doHash("SHA1", providerIdStr, strlen(providerIdStr), false), 1
)
);
descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(artifact.get(),nullptr,nullptr,false)).first;
TSM_ASSERT("Retrieved entity descriptor was null", descriptor!=nullptr);
assertEquals("Entity's ID does not match requested ID", entityID, descriptor->getEntityID());
}
void testXMLWithExcludes() {
skipNetworked();
string config = data_path + "saml2/metadata/XMLWithExcludes.xml";
ifstream in(config.c_str());
DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
XercesJanitor<DOMDocument> janitor(doc);
scoped_ptr<MetadataProvider> metadataProvider(
SAMLConfig::getConfig().MetadataProviderManager.newPlugin(XML_METADATA_PROVIDER,doc->getDocumentElement(), false)
);
try {
metadataProvider->init();
}
catch (const XMLToolingException& ex) {
TS_TRACE(ex.what());
throw;
}
Locker locker(metadataProvider.get());
const EntityDescriptor* descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(entityID,nullptr,nullptr,false)).first;
TSM_ASSERT("Retrieved entity descriptor was not null", descriptor==nullptr);
descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(entityID2,nullptr,nullptr,false)).first;
TSM_ASSERT("Retrieved entity descriptor was null", descriptor!=nullptr);
assertEquals("Entity's ID does not match requested ID", entityID2, descriptor->getEntityID());
}
void testXMLWithIncludes() {
skipNetworked();
string config = data_path + "saml2/metadata/XMLWithIncludes.xml";
ifstream in(config.c_str());
DOMDocument* doc=XMLToolingConfig::getConfig().getParser().parse(in);
XercesJanitor<DOMDocument> janitor(doc);
scoped_ptr<MetadataProvider> metadataProvider(
SAMLConfig::getConfig().MetadataProviderManager.newPlugin(XML_METADATA_PROVIDER,doc->getDocumentElement(), false)
);
try {
metadataProvider->init();
}
catch (const XMLToolingException& ex) {
TS_TRACE(ex.what());
throw;
}
Locker locker(metadataProvider.get());
const EntityDescriptor* descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(entityID2,nullptr,nullptr,false)).first;
TSM_ASSERT("Retrieved entity descriptor was not null", descriptor==nullptr);
descriptor = metadataProvider->getEntityDescriptor(MetadataProvider::Criteria(entityID,nullptr,nullptr,false)).first;
TSM_ASSERT("Retrieved entity descriptor was null", descriptor!=nullptr);
assertEquals("Entity's ID does not match requested ID", entityID, descriptor->getEntityID());
}
};
|