summaryrefslogtreecommitdiffstats
path: root/bindings/python/tests
Commit message (Collapse)AuthorAgeFilesLines
* bindings/python/tests: session indexes storage preserves order nowHEADmasterBenjamin Dauvergne2014-06-081-2/+1
|
* Fix license boilerplatesSimo Sorce2013-12-036-12/+6
| | | | | | | Instad of referring to an old FSF address, point the reader to the FSF website where the latest licenses and addresses are published. Signed-off-by: Simo Sorce <simo@redhat.com>
* python: fix logout request parsing testBenjamin Dauvergne2013-03-201-0/+4
| | | | adapt to new checks done on logout request nodes
* tests: add a SSO test with DSA keys to python bindings testsBenjamin Dauvergne2012-07-111-0/+28
|
* [tests] fix tests to comply with new implementation of parsingBenjamin Dauvergne2011-12-161-4/+4
| | | | | The test around parsing of EncryptedAssertion was wrong since it was missing the XMLEnc namespace declaration.
* [bindings python] configure basic loggingBenjamin Dauvergne2011-01-043-0/+9
|
* [Bindings] improve cleaning and distribution buidingBenjamin Dauvergne2010-07-211-1/+2
|
* [Tests/python] add test case for WebSSO with providers using encrypted keysBenjamin Dauvergne2010-07-161-3/+29
|
* [ID-WSF2] add idwsf2 test script to test suiteBenjamin Dauvergne2010-06-292-3/+7
| | | | | Re-activate ID-WSF 2.0 test script. Fix problem with provider issuing assertion role. Need to be fixed more generally in the future.
* Merge branch 'issue-88'Benjamin Dauvergne2010-06-292-16/+36
|
* Merge branch 'issue-86'Benjamin Dauvergne2010-06-291-1/+18
|
* Test: add non regression test for reloading a server dump with encrypted keysBenjamin Dauvergne2010-06-141-0/+13
|
* Test: add python test for attribute requestingBenjamin Dauvergne2010-06-121-1/+58
| | | | | | | | | | | | | * What's tested: - request initialization - adding attribute designators - building the request message - processing the request message - accepting the request - adding assertion with attributes - signing the assertion - building the response - parsing the response
* Tests: new python test for setEncryptionPrivateKeyWithPasswordBenjamin Dauvergne2010-06-101-0/+12
|
* Binding python tests: update idwsf1 to explicitely register PP10 HREFBenjamin Dauvergne2010-04-061-0/+1
|
* Binding python: update idwsf2 test for method change dst.initResponse -> ↵Benjamin Dauvergne2010-04-061-1/+1
| | | | validateRequest
* Binding python: for empty GList return empty tuples, not NoneBenjamin Dauvergne2010-04-061-6/+6
|
* ID-WSF 2.0 python tests: finish tests for new ID-WSF 2.0 APIBenjamin Dauvergne2010-03-021-26/+157
| | | | | | | * bindings/python/tests/idwsf2_tests.py: all Discovery service request types are tested, and Data Service query is tested as well. Data Service testing and API should more tested, especially failure cases.
* Bindings python tests: update idwsf2_tests.pyBenjamin Dauvergne2010-02-221-1359/+160
|
* Current state of ID-WSF 2.0 python testBenjamin Dauvergne2010-02-171-6/+76
|
* Current state of idwsf2 testsBenjamin Dauvergne2010-02-171-44/+59
|
* Binding python tests: adapt test to use TOP_SRCDIR env varBenjamin Dauvergne2010-02-172-4/+4
|
* in idwsf2_tests.py, merge test case for metadata registering, add test case ↵Benjamin Dauvergne2010-02-171-144/+178
| | | | for failure
* Bindings python: udpate id-wsf 2.0 test fileBenjamin Dauvergne2010-02-151-122/+105
| | | | | | * bindings/python/tests/idwsf2_tests.py: Disco Service registering is working, it now needs a bootstrap epr in all case (before registering could be done without signatures).
* Bindings python ID-WSF 1.0 tests: update PP HREF symbolBenjamin Dauvergne2010-01-281-9/+9
|
* Binding python ID-WSF 2.0 tests: update some testsBenjamin Dauvergne2010-01-281-2/+6
|
* Binding Python ID-WSF 2.0: comment out testBenjamin Dauvergne2010-01-281-1/+1
|
* Bindings: java, php5, python simplify logic in binding generatorBenjamin Dauvergne2010-01-281-64/+16
| | | | | | * use utils.h macros to manipulate fields. * use utils.py function to filter variables, argument and return types. * finish support of hashtables of strings for php5 and python.
* Python binding: update test scripts to new ID-WSF APIBenjamin Dauvergne2010-01-042-34/+61
|
* Bindings: make the binding infrastructure understand GObject-introspections ↵Benjamin Dauvergne2010-01-043-15/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | annotations * bindings/bindings.py * bindings/utils.py: add convenience function to treat arguments tuple: (type,name,{annotations}). introduce new argument options, fix that arguments are 3-tuple of the form (type,name,annotations), where annotations is a dictionary. Key of this dictionnary can be: - optional, wheter the argument is necessary, it means it has a default value. - out, means that the pointer is a pointer of pointer, for bindings that can return exceptions, it will be returned instead of the integer error code, the only way to access error codes will be exceptions. - element-type, contained type of a list or an array, - key-type, value-type, type of respectively the key and value of a GHashTable. - transfer, wheter a the callee(for arguments)/caller(for return values) owns the values passed, it can be none,container(if the callee/caller only owns the container not the contained value) or full. doc.parameters is now a 3-tuple of (attribute-name, attribute-description, attribute-annotations) where attribute-annotations is a string of the form '(option1)(option2 option-arguments) etc.'. - add predicates for xml, list and time_t values. improve predicates for cstring and const modifier. * bindings/overrides.xml: 'out' arguments are not well supported for java, so skip functions using them. * bindings/java/lang.py bindings/php5/php_code.py bindings/php5/wrapper_source.py bindings/python/lang.py: - update language specifig binding generators for handling new annotations. - improve python method declaration, handle optional arguments with default values, factorize this chode in two methods, get_python_arg_decl and defval_to_python_value. * bindings/python/tests/Makefile.am bindings/python/tests/idwsf1_tests.py bindings/python/tests/idwsf2_tests.py: make test work with out of source build dir.
* ID-WSF 2.0: make it work with --enabe-debuggingBenjamin Dauvergne2009-03-271-6/+0
| | | | | | | | | | | | | * lasso/id-wsf-2.0/data_service.c: * lasso/id-wsf-2.0/discovery.c: * lasso/id-wsf-2.0/profile.c: * lasso/id-wsf/data_service.c: * lasso/id-wsf/discovery.c: * lasso/id-wsf/wsf_profile.c: when --enable-debugging is activated much more type checking is done by internal macros, and code do not pass compile anymore. * bindings/python/tests/idwsf2_tests.py: nameIdentifier packing in SOAP ID-WSF calls headers is no longer supported, do not test it.
* * Remove ending blanksBenjamin Dauvergne2008-09-126-35/+35
|
* * Fix blanks mismatch (space in *.c and *h files or tabs in *.py files) and ↵Benjamin Dauvergne2008-08-052-3/+4
| | | | formatting
* * bindings/python/tests/Makefile.am: make running of iwsf{1,2}_tests.py ↵Benjamin Dauvergne2008-08-051-2/+6
| | | | conditioned upon --enable-wsf flag of ./configure script
* * bindings/bindings.py: support const modifier on this argumentBenjamin Dauvergne2008-08-012-3/+3
|
* reflects change inside lasso/id-ff/identity.c in assertionsBenjamin Dauvergne2008-08-011-4/+6
|
* add Makefile.in to MAINTAINERCLEANFILES in every Makefile.amBenjamin Dauvergne2008-05-271-0/+1
|
* import main test fileDamien Laniel2008-05-203-1/+178
|
* added a discovery remove test caseDamien Laniel2008-05-201-3/+39
|
* added id-wsf 2.0 tests for new bindingsDamien Laniel2008-05-201-0/+1790
|
* added some tests for id-wsf 1.1 with new python bindingsDamien Laniel2008-05-201-0/+341
|
* [project @ fpeters@0d.be-20071120201406-loyt7g5302ztk7er]Frederic Peters2008-04-292-2/+4
| | | | | | | | get srcdir from env variable (set automatically by automake) Original author: Frederic Peters <fpeters@0d.be> Date: 2007-11-20 21:14:06.537000+01:00
* [project @ fpeters@0d.be-20071120151830-wdnobbexiv300ibb]Frederic Peters2008-04-291-0/+2
| | | | | | | | | fixed some make distcheck issues (still remaining is access to test data when srcdir != builddir) Original author: Frederic Peters <fpeters@0d.be> Date: 2007-11-20 16:18:30.814000+01:00
* [project @ fpeters@0d.be-20071113195326-cd83a1nrlh9l9nbr]Frederic Peters2008-04-291-0/+25
| | | | | | | | added three more tests of bindings Original author: Frederic Peters <fpeters@0d.be> Date: 2007-11-13 20:53:26.406000+01:00
* [project @ fpeters@0d.be-20071113192919-3g05qazwjjhivlsh]Frederic Peters2008-04-293-0/+620
ported old test cases to the new binding Original author: Frederic Peters <fpeters@0d.be> Date: 2007-11-13 20:29:19.859000+01:00