X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=xmltoolingtest%2FSecurityHelperTest.h;h=545ca48fb3830e6b7e1d55ecaa7317c45b2d4f3f;hb=3e57847785f2aba70aa6573c7d8c8d7247e28cf9;hp=4297c89c6aa1e8f2ee3913b42b67730c84bc1426;hpb=a0d768778a8f5f539b909baf5b115e70ea765f0f;p=shibboleth%2Fcpp-xmltooling.git diff --git a/xmltoolingtest/SecurityHelperTest.h b/xmltoolingtest/SecurityHelperTest.h index 4297c89..545ca48 100644 --- a/xmltoolingtest/SecurityHelperTest.h +++ b/xmltoolingtest/SecurityHelperTest.h @@ -1,17 +1,21 @@ -/* - * Copyright 2001-2010 Internet2 +/** + * 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. * - * Licensed 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 + * 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 + * 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. + * 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" @@ -56,13 +60,13 @@ public: void testKeysFromURLs() { string pathname = data_path + "key.pem.bak"; - auto_ptr t1(getTransport("https://spaces.internet2.edu/download/attachments/5305/key.pem")); + auto_ptr t1(getTransport("https://wiki.shibboleth.net/confluence/download/attachments/3277026/key.pem")); auto_ptr key1(SecurityHelper::loadKeyFromURL(*t1.get(), pathname.c_str())); pathname = data_path + "key.der.bak"; - auto_ptr t2(getTransport("https://spaces.internet2.edu/download/attachments/5305/key.der")); + auto_ptr t2(getTransport("https://wiki.shibboleth.net/confluence/download/attachments/3277026/key.der")); auto_ptr key2(SecurityHelper::loadKeyFromURL(*t2.get(), pathname.c_str())); pathname = data_path + "test.pfx.bak"; - auto_ptr t3(getTransport("https://spaces.internet2.edu/download/attachments/5305/test.pfx")); + auto_ptr t3(getTransport("https://wiki.shibboleth.net/confluence/download/attachments/3277026/test.pfx")); auto_ptr key3(SecurityHelper::loadKeyFromURL(*t3.get(), pathname.c_str(), nullptr, "password")); TSM_ASSERT("PEM/DER keys did not match", SecurityHelper::matches(*key1.get(), *key2.get())); @@ -107,13 +111,13 @@ public: void testCertificatesFromURLs() { string pathname = data_path + "cert.pem.bak"; - auto_ptr t1(getTransport("https://spaces.internet2.edu/download/attachments/5305/cert.pem")); + auto_ptr t1(getTransport("https://wiki.shibboleth.net/confluence/download/attachments/3277026/cert.pem")); SecurityHelper::loadCertificatesFromURL(certs, *t1.get(), pathname.c_str()); pathname = data_path + "cert.der.bak"; - auto_ptr t2(getTransport("https://spaces.internet2.edu/download/attachments/5305/cert.der")); + auto_ptr t2(getTransport("https://wiki.shibboleth.net/confluence/download/attachments/3277026/cert.der")); SecurityHelper::loadCertificatesFromURL(certs, *t2.get(), pathname.c_str()); pathname = data_path + "test.pfx.bak"; - auto_ptr t3(getTransport("https://spaces.internet2.edu/download/attachments/5305/test.pfx")); + auto_ptr t3(getTransport("https://wiki.shibboleth.net/confluence/download/attachments/3277026/test.pfx")); SecurityHelper::loadCertificatesFromURL(certs, *t3.get(), pathname.c_str(), nullptr, "password"); TSM_ASSERT_EQUALS("Wrong certificate count", certs.size(), 3);