X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2FSAMLArtifactType0002Test.h;h=dc1354dd5be02f8a4dcada1752ad4ab420d91ddf;hb=b59952455d0d04290fca1460a2a50b1cd84f0e27;hp=45365d84afc61c87f2991cee0d01d1089cd7d235;hpb=0b9c2825fb2fad1b6eadde350c799c10e31ace78;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/SAMLArtifactType0002Test.h b/samltest/SAMLArtifactType0002Test.h index 45365d8..dc1354d 100644 --- a/samltest/SAMLArtifactType0002Test.h +++ b/samltest/SAMLArtifactType0002Test.h @@ -1,42 +1,47 @@ -/* - * Copyright 2001-2005 Internet2 - * - * 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 - * - * 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 - -using namespace opensaml::saml1p; -using namespace opensaml; -using namespace std; - -class SAMLArtifactType0002Test : public CxxTest::TestSuite -{ -public: - string providerIdStr; - - void setUp() { - providerIdStr = "https://idp.org/SAML"; - } - - void testSAMLArtifactType0002(void) { - auto_ptr artifact(new SAMLArtifactType0002(providerIdStr)); - auto_ptr tempArtifact(SAMLArtifact::parse(artifact->encode().c_str())); - - TS_ASSERT_EQUALS(artifact->getSource(),tempArtifact->getSource()); - TS_ASSERT_EQUALS(artifact->getMessageHandle(),tempArtifact->getMessageHandle()); - - TS_ASSERT_THROWS(auto_ptr bogus1(new SAMLArtifactType0002(providerIdStr, artifact->getMessageHandle() + artifact->getMessageHandle())), ArtifactException); - } -}; +/** + * 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 +#include + +using namespace opensaml::saml1p; +using namespace opensaml; +using namespace std; + +class SAMLArtifactType0002Test : public CxxTest::TestSuite +{ +public: + string providerIdStr; + + void setUp() { + providerIdStr = "https://idp.org/SAML"; + } + + void testSAMLArtifactType0002(void) { + auto_ptr artifact(new SAMLArtifactType0002(providerIdStr)); + auto_ptr tempArtifact(SAMLArtifact::parse(artifact->encode().c_str())); + + TS_ASSERT_EQUALS(artifact->getSource(),tempArtifact->getSource()); + TS_ASSERT_EQUALS(artifact->getMessageHandle(),tempArtifact->getMessageHandle()); + + TS_ASSERT_THROWS(auto_ptr bogus1(new SAMLArtifactType0002(providerIdStr, artifact->getMessageHandle() + artifact->getMessageHandle())), ArtifactException); + } +};