X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2FSAMLArtifactType0002Test.h;h=a25c62a0ccc01b425d1f20062934b688ed6ad097;hb=0beb48ce00d0b6a3f177f7d9b48af1870ee92190;hp=8556105b60cc2341b49debb179cf4466c7fc372c;hpb=0d4d73adf7fa522e14d34932c0bd56e2907481cb;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/SAMLArtifactType0002Test.h b/samltest/SAMLArtifactType0002Test.h index 8556105..a25c62a 100644 --- a/samltest/SAMLArtifactType0002Test.h +++ b/samltest/SAMLArtifactType0002Test.h @@ -1,42 +1,43 @@ -/* - * 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_SAME_DATA(artifact->getSource().c_str(),tempArtifact->getSource().c_str(),artifact->getSource().length()); - TS_ASSERT_EQUALS(artifact->getMessageHandle(),tempArtifact->getMessageHandle()); - - TS_ASSERT_THROWS(auto_ptr bogus1(new SAMLArtifactType0002(providerIdStr, artifact->getMessageHandle() + artifact->getMessageHandle())), ArtifactException); - } -}; +/* + * Copyright 2001-2007 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 +#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); + } +};