summaryrefslogtreecommitdiffstats
path: root/python
Commit message (Collapse)AuthorAgeFilesLines
* Corrected comment.Emmanuel Raviart2004-08-111-2/+2
|
* Create a new test Proxy server (a server between a SP and an IDP, which actsEmmanuel Raviart2004-08-1113-137/+586
| | | | as an IDP for the SP and as a SP for the IDP): login works.
* Better handling and checking of Liberty-Enabled header.Emmanuel Raviart2004-08-114-18/+28
|
* Removed server public key in tests: it seems that it is no more used.Emmanuel Raviart2004-08-113-4/+4
|
* In Python simulator, redirect now accepts partial URLs.Emmanuel Raviart2004-08-111-0/+12
|
* In python/tests, there are now a sample IDP (sample-idp.py) and a sample SPEmmanuel Raviart2004-08-1114-69/+939
| | | | (sample-sp.py). The two applications are real servers.
* Improved Python unit tests.Emmanuel Raviart2004-08-108-204/+326
|
* Renamed LEC to LECP. It is really a proxy.Emmanuel Raviart2004-08-092-15/+13
|
* LECP now nearly works. Still a segmentation fault at the end, but Valos isEmmanuel Raviart2004-08-095-65/+92
| | | | aware of it.
* Updated Python tests. Not finished but Valos want it to debug Lasso.Emmanuel Raviart2004-08-098-515/+709
|
* new lack of error checking test case; not even the developer fault this time;Frederic Peters2004-08-091-2/+27
| | | | the program got bad data; lasso segfault.
* Small fixValery Febvre2004-08-091-1/+1
|
* Updated serverValery Febvre2004-08-092-3/+4
|
* UpdateValery Febvre2004-08-091-10/+15
|
* Removed Base64 encoding in lasso_lecp_build_authn_response_msg()Valery Febvre2004-08-091-17/+24
| | | | | | | | | | | Removed Base64 decoding in lasso_lecp_process_authn_request_envelope_msg() Removed the param 'remote_providerID' of lasso_lecp_init_authn_request() Added a param 'remote_providerID' in lasso_lecp_build_authn_request_msg() Added 3 params in lasso_lecp_build_authn_response_envelope_msg() They are necessary to build the Assertion, to process the federation and possibly to set the Status.
* Removed the param 'remote_providerID' of lasso_login_init_authn_request() methodValery Febvre2004-08-091-10/+10
| | | | Added a param 'remote_providerID' in lasso_login_build_authn_request_msg() method
* the point is to fix lasso not to segfault; not to fix tests to make lassoFrederic Peters2004-08-091-2/+2
| | | | happy.
* 'Class methods' Login.new() & Logout.new() should be usedValery Febvre2004-08-091-2/+2
| | | | instead of Login() & Logout() constructors
* Updated Python unit tests infrastructure, so that it can be reused forEmmanuel Raviart2004-08-098-284/+247
| | | | independant simulation applications.
* Added module http. It is derived from Expression eponym module, but it isEmmanuel Raviart2004-08-091-0/+713
| | | | | | derived from abstractweb and it is designed to be a truly independant module. It still need a lot of work, but may be one day, Expression will use it.
* Added module abstractweb.Emmanuel Raviart2004-08-091-0/+156
| | | | | | It defines abstract classes for HTTP servers, etc, that are independant of the connection type: They must be overrided for HTTP(S) connection or simulated connections.
* Added module assertions to Python Lasso simulator.Emmanuel Raviart2004-08-091-0/+126
| | | | | This module defines global functions to use for unit tests (instead of methods self.fail...) or for other applications.
* Added module builtins to Python Lasso simulator. builtins will replaceEmmanuel Raviart2004-08-091-0/+45
| | | | environs in Expression one day.
* Added LECP support in Python simulator and unit tests. I think I have foundEmmanuel Raviart2004-08-076-124/+437
| | | | | | | | | several bugs in Lasso LECP implementation. My biggest problem is that I didn't find a way for IDP to set userAuthenticated, authenticationMethod, reauthenticateOnOrAfter to lecp before (or when) building response envelope with lecp.build_authn_response_envelope_msg(). Did I overlook something?
* new tests; lasso needs some error checkingFrederic Peters2004-08-072-0/+50
|
* Added attributes request, request_type, response, response_type to Lecp inEmmanuel Raviart2004-08-072-3/+26
| | | | Python binding. Close bug #247.
* Added tests for forceAuthn. Light will still be green.Emmanuel Raviart2004-08-062-1/+41
|
* Added Python simulation for isPassive and corrected some simulation bugs.Emmanuel Raviart2004-08-064-33/+109
| | | | Added isPassive tests.
* New Python tests.Emmanuel Raviart2004-08-061-1/+20
|
* Added new Python test. It works, but see bug #245.Emmanuel Raviart2004-08-064-69/+93
|
* Reversed error sign convention for Python binding.Emmanuel Raviart2004-08-061-4/+4
|
* Corrected a bug in test.Emmanuel Raviart2004-08-061-1/+1
|
* Added a new test. If Nico & Valos are not quick enough, the light will be red.Emmanuel Raviart2004-08-061-2/+26
|
* Cleanly separated the new Python Lasso simulator from unit tests.Emmanuel Raviart2004-08-065-877/+645
|
* An early commit of the new Python test. It is not clean yet, but the lightEmmanuel Raviart2004-08-061-518/+902
| | | | will be green again :-)
* Corrected error in Error.Emmanuel Raviart2004-08-061-1/+1
|
* Renamed load_notification_msg to process_notification msg, renamed ↵Nicolas Clapies2004-08-065-31/+27
| | | | process_request to validate_request, added some goto for code error, little update of the code style, updated examples
* fix in lecpNicolas Clapies2004-08-051-4/+4
|
* *** empty log message ***Nicolas Clapies2004-08-051-1/+6
|
* Python binding now raises exceptions instead of returning error codes.Emmanuel Raviart2004-08-042-115/+170
| | | | Close bug #237.
* Slightly improved exception handling in Python.Emmanuel Raviart2004-08-041-59/+200
|
* Python test02 is now completely refactored. But bigger changes are on theEmmanuel Raviart2004-08-041-39/+94
| | | | way.
* update of lecp python bindingNicolas Clapies2004-08-044-92/+80
|
* Moved '#include <lasso/lasso_config.h> into lasso.cValery Febvre2004-08-041-0/+2
| | | | Added also in py_lasso.c
* The Python test refactoring continues and the light is still green.Emmanuel Raviart2004-08-041-43/+103
|
* The Python test reorganization continues. It detects a new login bug, so theEmmanuel Raviart2004-08-041-43/+85
| | | | light will be red again.
* *** empty log message ***Valery Febvre2004-08-041-2/+2
|
* Removed the 'identity' arg in lasso_login_new_from_dump() methodValery Febvre2004-08-042-12/+8
|
* move server param in newNicolas Clapies2004-08-041-13/+10
|
* *** empty log message ***Nicolas Clapies2004-08-041-8/+8
|