summaryrefslogtreecommitdiff
path: root/tests/idp_conf.py
diff options
context:
space:
mode:
authorRoland Hedberg <roland.hedberg@adm.umu.se>2012-11-14 13:36:08 +0100
committerRoland Hedberg <roland.hedberg@adm.umu.se>2012-11-14 13:36:08 +0100
commit74cf8659e15223d14586b99265a71924e3f939f9 (patch)
tree26daf3da88e1db38ae17445cdd2fe43aaaa5d663 /tests/idp_conf.py
parentcc8e91e84ddc53d94715584f100bc4054a2dd20a (diff)
downloadpysaml2-74cf8659e15223d14586b99265a71924e3f939f9.tar.gz
All tests works now
Diffstat (limited to 'tests/idp_conf.py')
-rw-r--r--tests/idp_conf.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/idp_conf.py b/tests/idp_conf.py
index 33b9c8a7..53cae8b4 100644
--- a/tests/idp_conf.py
+++ b/tests/idp_conf.py
@@ -7,6 +7,7 @@ try:
except ImportError:
xmlsec_path = '/opt/local/bin/xmlsec1'
+BASE = "http://localhost:8088"
CONFIG = {
"entityid" : "urn:mace:example.com:saml:roland:idp",
@@ -15,10 +16,10 @@ CONFIG = {
"idp": {
"endpoints" : {
"single_sign_on_service" : [
- ("http://localhost:8088/sso", BINDING_HTTP_REDIRECT)],
+ ("%s/sso" % BASE, BINDING_HTTP_REDIRECT)],
"single_logout_service": [
- ("http://localhost:8088/slo", BINDING_SOAP),
- ("http://localhost:8088/slop",BINDING_HTTP_POST)]
+ ("%s/slo" % BASE, BINDING_SOAP),
+ ("%s/slop" % BASE,BINDING_HTTP_POST)]
},
"policy": {
"default": {
@@ -43,7 +44,7 @@ CONFIG = {
"cert_file" : "test.pem",
"xmlsec_binary" : xmlsec_path,
"metadata": {
- "local": ["metadata.xml", "vo_metadata.xml"],
+ "local": ["metadata_sp_1.xml", "vo_metadata.xml"],
},
"attribute_map_dir" : "attributemaps",
"organization": {