From 5680d04cede7338adf4bef0dabff16a6bc49785f Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Tue, 27 Aug 2013 13:04:24 +0200 Subject: [PATCH] Changed names of test driver scripts --- doc/howto.rst | 12 ++++++------ script/{saml2c.py => idp_testdrv.py} | 0 script/{saml2i.py => sp_testdrv.py} | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename script/{saml2c.py => idp_testdrv.py} (100%) rename script/{saml2i.py => sp_testdrv.py} (100%) diff --git a/doc/howto.rst b/doc/howto.rst index dbf0111..92cf5e3 100644 --- a/doc/howto.rst +++ b/doc/howto.rst @@ -11,7 +11,7 @@ If you have not done so yet, read :ref:`install`. When you want to test a SAML2 entity with this tool you need following things: -#. The Tool Configuration, an example can be found in tests/idp_test/testdriver_config.py +#. The Tool Configuration, an example can be found in tests/idp_test/config.py #. Attribute Maps mapping URNs, OIDs and friendly names #. Key files for the test tool #. A metadata file representing the tool @@ -169,8 +169,8 @@ Running the script Script parameters:: - $ saml2c.py --help - usage: saml2c.py [-h] [-d] [-v] [-C CA_CERTS] [-J JSON_CONFIG_FILE] [-m] [-l] + $ idp_testdrv.py --help + usage: idp_testdrv.py [-h] [-d] [-v] [-C CA_CERTS] [-J JSON_CONFIG_FILE] [-m] [-l] [-c SPCONFIG] [oper] @@ -197,7 +197,7 @@ Script parameters:: To see what tests are available:: - $ saml2c.py -l + $ idp_testdrv.py -l [ { "id": "basic-authn", @@ -224,7 +224,7 @@ To see what tests are available:: A typical command would then be (reformated to be more readable):: - $ saml2c.py -J localhost.json 'log-in-out' + $ idp_testdrv.py -J localhost.json 'log-in-out' { "status": 1, "tests": [ @@ -286,7 +286,7 @@ conversation. If things go wrong you will get a trace log dump to stderr. If all goes well but you still want to see all the interaction you can do:: - $ saml2c.py -J localhost.json -d 'basic-authn' 2> tracelog + $ idp_testdrv.py -J localhost.json -d 'basic-authn' 2> tracelog < same output as above > $ cat tracelog 0.017364 SAML Request: diff --git a/script/saml2c.py b/script/idp_testdrv.py similarity index 100% rename from script/saml2c.py rename to script/idp_testdrv.py diff --git a/script/saml2i.py b/script/sp_testdrv.py similarity index 100% rename from script/saml2i.py rename to script/sp_testdrv.py