summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorDamien Laniel <dlaniel@entrouvert.com>2007-09-19 09:30:01 +0000
committerDamien Laniel <dlaniel@entrouvert.com>2007-09-19 09:30:01 +0000
commitbe6b0cba2e04688e352f70c55531c2918a5cec55 (patch)
treee83b631ad81d5fae6664f6475cee6bfa6a41772b /python
parentf70eab2459092ebde22c9209a01d47d384e34344 (diff)
downloadlasso-be6b0cba2e04688e352f70c55531c2918a5cec55.tar.gz
lasso-be6b0cba2e04688e352f70c55531c2918a5cec55.tar.xz
lasso-be6b0cba2e04688e352f70c55531c2918a5cec55.zip
added a unit test for id-wsf 1
Diffstat (limited to 'python')
-rwxr-xr-xpython/tests/idwsf1_tests.py166
1 files changed, 166 insertions, 0 deletions
diff --git a/python/tests/idwsf1_tests.py b/python/tests/idwsf1_tests.py
new file mode 100755
index 00000000..4e504823
--- /dev/null
+++ b/python/tests/idwsf1_tests.py
@@ -0,0 +1,166 @@
+#! /usr/bin/env python
+# -*- coding: UTF-8 -*-
+#
+# Python unit tests for Lasso library
+#
+# Copyright (C) 2004-2007 Entr'ouvert
+# http://lasso.entrouvert.org
+#
+# Authors: See AUTHORS file in top-level directory.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+import os
+import unittest
+import sys
+
+if not '..' in sys.path:
+ sys.path.insert(0, '..')
+if not '../.libs' in sys.path:
+ sys.path.insert(0, '../.libs')
+
+import lasso
+
+try:
+ dataDir
+except NameError:
+ dataDir = '../../tests/data'
+
+wsp_metadata = os.path.join(dataDir, 'sp1-la/metadata.xml')
+wsp_private_key = os.path.join(dataDir, 'sp1-la/private-key-raw.pem')
+wsp_public_key = os.path.join(dataDir, 'sp1-la/public-key.pem')
+wsc_metadata = os.path.join(dataDir, 'sp2-la/metadata.xml')
+wsc_private_key = os.path.join(dataDir, 'sp2-la/private-key-raw.pem')
+wsc_public_key = os.path.join(dataDir, 'sp2-la/public-key.pem')
+idp_metadata = os.path.join(dataDir, 'idp1-la/metadata.xml')
+idp_private_key = os.path.join(dataDir, 'idp1-la/private-key-raw.pem')
+idp_public_key = os.path.join(dataDir, 'idp1-la/public-key.pem')
+
+class IdWsf1TestCase(unittest.TestCase):
+ def get_wsp_server(self):
+ server = lasso.Server(wsp_metadata, wsp_private_key, None, None)
+ server.addProvider(lasso.PROVIDER_ROLE_IDP, idp_metadata, idp_private_key, None)
+ return server
+
+ def get_wsc_server(self):
+ server = lasso.Server(wsc_metadata, wsc_private_key, None, None)
+ server.addProvider(lasso.PROVIDER_ROLE_IDP, idp_metadata, idp_public_key, None)
+ return server
+
+ def get_idp_server(self):
+ server = lasso.Server(idp_metadata, idp_private_key, None, None)
+ server.addProvider(lasso.PROVIDER_ROLE_SP, wsp_metadata, wsp_public_key, None)
+ server.addProvider(lasso.PROVIDER_ROLE_SP, wsc_metadata, wsc_public_key, None)
+ return server
+
+ def add_services(self, idp):
+ # Add Discovery service
+ disco_description = lasso.DiscoDescription.newWithBriefSoapHttpDescription(
+ lasso.SECURITY_MECH_NULL,
+ "http://idp/discovery/soapEndpoint",
+ "Discovery SOAP Endpoint description");
+ disco_service_instance = lasso.DiscoServiceInstance(
+ lasso.DISCO_HREF,
+ "http://idp/providerId",
+ disco_description);
+ idp.addService(disco_service_instance);
+
+ # Add Personal Profile service
+ pp_description = lasso.DiscoDescription.newWithBriefSoapHttpDescription(
+ lasso.SECURITY_MECH_NULL,
+ "http://idp/pp/soapEndpoint",
+ "Discovery SOAP Endpoint description");
+ pp_service_instance = lasso.DiscoServiceInstance(
+ lasso.PP_HREF,
+ "http://idp/providerId",
+ pp_description);
+ idp.addService(pp_service_instance);
+ return idp
+
+ def login(self, sp, idp):
+ sp_login = lasso.Login(sp)
+ sp_login.initAuthnRequest(sp.providerIds[0], lasso.HTTP_METHOD_POST)
+ sp_login.request.nameIdPolicy = lasso.LIB_NAMEID_POLICY_TYPE_FEDERATED
+ sp_login.request.protocolProfile = lasso.LIB_PROTOCOL_PROFILE_BRWS_POST
+ sp_login.buildAuthnRequestMsg()
+
+ idp_login = lasso.Login(idp)
+ idp_login.processAuthnRequestMsg(sp_login.msgBody)
+ idp_login.validateRequestMsg(True, True)
+
+ # Set a resource offering in the assertion
+ discovery_resource_id = "http://idp/discovery/resources/1"
+ idp_login.setResourceId(discovery_resource_id)
+ idp_login.buildAssertion(lasso.SAML_AUTHENTICATION_METHOD_PASSWORD, None, None, None, None)
+ idp_login.buildAuthnResponseMsg()
+
+ sp_login = lasso.Login(sp)
+ sp_login.processAuthnResponseMsg(idp_login.msgBody)
+ sp_login.acceptSso()
+
+ return sp_login.identity.dump(), sp_login.session.dump(), idp_login.identity.dump(), idp_login.session.dump()
+
+ def test01(self):
+ wsc = self.get_wsc_server()
+ idp = self.get_idp_server()
+ idp = self.add_services(idp)
+ abstract_description = "Personal Profile Resource"
+ resource_id = "http://idp/user/resources/1"
+
+ # Login from WSC
+ sp_identity_dump, sp_session_dump, idp_identity_dump, idp_session_dump = self.login(wsc, idp)
+
+ # Init discovery query
+ wsc_disco = lasso.Discovery(wsc)
+ wsc_disco.setSessionFromDump(sp_session_dump)
+ wsc_disco.initQuery()
+ wsc_disco.addRequestedServiceType(lasso.PP_HREF)
+ wsc_disco.buildRequestMsg();
+
+ # Process query
+ idp_disco = lasso.Discovery(idp)
+ idp_disco.processQueryMsg(wsc_disco.msgBody)
+ idp_disco.setIdentityFromDump(idp_identity_dump)
+
+ # Build resource offering
+ service_instance = lasso.DiscoServiceInstance(
+ lasso.PP_HREF,
+ idp.providerId,
+ lasso.DiscoDescription_newWithBriefSoapHttpDescription(
+ lasso.SECURITY_MECH_NULL,
+ 'http://idp/pp/soapEndpoint'))
+ resource_offering = lasso.DiscoResourceOffering(service_instance);
+ resource_offering.resourceId = lasso.DiscoResourceID(resource_id)
+ resource_offering.abstract = abstract_description
+ idp_disco.identity.addResourceOffering(resource_offering)
+ idp_disco.buildResponseMsg()
+
+ # Process response
+ wsc_disco.processQueryResponseMsg(idp_disco.msgBody);
+ service = wsc_disco.getService()
+
+ # Check service attributes
+ self.failUnless(service.resourceId is not None)
+ self.failUnless(service.resourceId.content == resource_id)
+ self.failUnless(service.providerId == wsc.providerIds[0])
+ self.failUnless(service.abstractDescription == abstract_description)
+
+idWsf1Suite = unittest.makeSuite(IdWsf1TestCase, 'test')
+
+allTests = unittest.TestSuite((idWsf1Suite))
+
+if __name__ == '__main__':
+ sys.exit(not unittest.TextTestRunner(verbosity = 2).run(allTests).wasSuccessful())
+