MessageEncoder, ArtifactMap, and SAML 1.x encoder classes.
[shibboleth/cpp-opensaml.git] / samltest / ArtifactMapTest.h
diff --git a/samltest/ArtifactMapTest.h b/samltest/ArtifactMapTest.h
new file mode 100644 (file)
index 0000000..72a8b2d
--- /dev/null
@@ -0,0 +1,55 @@
+/*\r
+ *  Copyright 2001-2005 Internet2\r
+ * \r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *     http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+#include "internal.h"\r
+#include <saml/SAMLConfig.h>\r
+#include <saml/saml2/binding/SAML2ArtifactType0004.h>\r
+#include <saml/saml2/core/Protocols.h>\r
+\r
+using namespace opensaml::saml2p;\r
+using namespace opensaml;\r
+using namespace std;\r
+\r
+class ArtifactMapTest : public CxxTest::TestSuite\r
+{\r
+public:\r
+    string providerIdStr;\r
+    string handle;\r
+    ArtifactMap* artifactMap;\r
+    void setUp() {\r
+        if (handle.empty()) {\r
+            providerIdStr = "https://idp.org/SAML";\r
+            SAMLConfig::getConfig().generateRandomBytes(handle,SAML2ArtifactType0004::HANDLE_LENGTH);\r
+        }\r
+        artifactMap = new ArtifactMap();\r
+    }\r
+    void tearDown() {\r
+        delete artifactMap;\r
+        artifactMap=NULL;\r
+    }\r
+    void testArtifactMap(void) {\r
+        auto_ptr<Response> response(ResponseBuilder::buildResponse());\r
+\r
+        SAML2ArtifactType0004 artifact(SAMLConfig::getConfig().hashSHA1(providerIdStr.c_str()),666,handle);\r
+\r
+        artifactMap->storeContent(response.get(), &artifact, providerIdStr.c_str());\r
+        response.release();\r
+\r
+        auto_ptr<XMLObject> xmlObject(artifactMap->retrieveContent(&artifact, providerIdStr.c_str()));\r
+        TSM_ASSERT_THROWS("Artifact resolution improperly succeeded.", artifactMap->retrieveContent(&artifact), BindingException);\r
+        TSM_ASSERT("Mapped content was not a Response.", dynamic_cast<Response*>(xmlObject.get())!=NULL);\r
+    }\r
+};\r