Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-24 | remove another unnecessary patch | Roald de Vries | |
2016-11-24 | remove an unnecessary patch | Roald de Vries | |
2016-11-23 | mock out event registration for failing test in SnapCI | Roald de Vries | |
2016-11-23 | remove another unnecessary patch | Roald de Vries | |
2016-11-23 | remove an unnecessary patch | Roald de Vries | |
2016-11-23 | skip the test that is failing in snap only in snap | Roald de Vries | |
2016-11-23 | skip the test that is failing in snap but not locally | Roald de Vries | |
To find out if there are more failing tests. | |||
2016-11-23 | replace stdlib's unittest with trials's unittest for all unittest | Roald de Vries | |
2016-11-23 | fix mails resource unit test | Roald de Vries | |
2016-11-23 | readability | Roald de Vries | |
2016-11-23 | fix archive resource unit test | Roald de Vries | |
2016-11-23 | replace stdlib's unittest with trials's unittest for all unittest | Roald de Vries | |
2016-11-23 | fix mails resource unit test | Roald de Vries | |
2016-11-23 | readability | Roald de Vries | |
2016-11-23 | fix archive resource unit test | Roald de Vries | |
2016-11-22 | add test for logged-in resource | Roald de Vries | |
2016-11-22 | fix first test for auth session wrapper | Roald de Vries | |
2016-11-21 | add test stub for PixelatedAuthSessionWrapper | Roald de Vries | |
2016-11-04 | [#795] fixed missing yield on authenticate in leap initialize for activist mode | NavaL | |
2016-11-03 | [#792] refactor pixelated-register and removed leap.auth dependency | NavaL | |
2016-11-03 | [#792] fix pixelated-register | NavaL | |
2016-10-28 | adding custom messages per types of auth errors #795 | NavaL | |
2016-10-28 | Fixing Authentication imports #795 | NavaL | |
2016-10-28 | authentication now returns Authentication | NavaL | |
leap session creation is only done post-interstitial and that logic is also extracted into its own class #795 | |||
2016-10-26 | extracting username before doing bonafide auth #795 | NavaL | |
2016-10-26 | Adds real authentication | Denis Costa | |
We also did some refactoring in order to have things working. #795 | |||
2016-10-26 | Fixes tests. | Denis Costa | |
I also split Athenticaton class into two. So I keep the same API for old code and have different things in two different classes. #795 | |||
2016-10-26 | Moving authentication out of login_resource | Bruno Wagner | |
This is ongoing work to be able to accept and validate user domain on login (so the user can use <username> or <username@domain.com>) We are extracting the authentication logic from login_resource to be able to test and cover the cases we need | |||
2016-10-26 | moving pixelated-maintenance register to use bonafide instead of leap.auth #792 | NavaL | |
2016-10-21 | [#797] reinstating use of the provided email body charstet encoding | NavaL | |
2016-10-19 | Adapted test now that leap.mail has a default charset | Bruno Wagner | |
2016-10-19 | Adapted logging in the UA to use twisted.logger | Bruno Wagner | |
2016-10-18 | Adapted imports to reflect new bitmask-dev dependency | Bruno Wagner | |
2016-10-11 | [#792] Move leap.bonafide to leap.bitmask.bonafide | Tulio Casagrande | |
2016-10-07 | use test client in test case through composition instead of inheritance | Roald de Vries | |
2016-09-28 | actually 404-ing valid requests but non-existing resource | NavaL | |
Issue #684 | |||
2016-09-27 | Adds more tests for welcome mail. | Denis Costa | |
2016-09-26 | rearranged leap session creation to not sync nor setup account/fetcher, when ↵ | NavaL | |
using the cache Issue #773 | |||
2016-09-23 | Replace SRPSession usages with bonafide | Tulio Casagrande | |
In order to replace leap_auth with bonafide, we created a class to hold the user credentials | |||
2016-09-23 | Adds translation to welcome mail. | Denis Costa | |
2016-09-21 | add manhole as an option to config mock | Roald de Vries | |
2016-09-13 | [#778] Handling case of failed key upload | Tulio Casagrande | |
If we get any problem with the upload of the user's public key, we are deleting the key pair from the local database and denying login. That way, a new login will have a chance to regenerate the key and upload it properly. | |||
2016-09-13 | [#778] Isolated and fixed keymanager tests | Tulio Casagrande | |
We covered a lot of missing cases on the keymanager tests. We also isolated these tests, that caused some other tests to break, so we fixed them. | |||
2016-09-13 | [#778] Renaming get_key to be consistent with keymanager | Tulio Casagrande | |
2016-09-08 | Fixed test to correctly mock the mail_fetcher | Bruno Wagner | |
2016-09-08 | [#778][Test] Don't send an existing public key | Tulio Casagrande | |
I added a new test to check that an existing public key is not being sent to leap on every login | |||
2016-08-30 | [#765] Move combined certificates to the leap folder | Tulio Casagrande | |
Since we are creating the combined certificates at the beginning of the UA and using it for multiple users, it makes more sense to create it in the leap folder instead of on a temporary file This bundle will be updated on every UA start | |||
2016-08-29 | [#765] Move combined_ca_bundle to UA initialization | Tulio Casagrande | |
With this change we don't have to create the combined_ca_bundle for every user at every login. To support this change, we started migrating away from the LeapCertificate class that was making the LeapProvider setup more brittle | |||
2016-08-19 | Started deferring leap session creation #759 | Bruno Wagner | |
Started adapting get_leap_session to deferreds Soledad and keymanager setup calls will now happen in deferreds and leap session creation itself is a deferred with callbacks This is a start in breaking the big blocking calls we were doing on the main thread, this was done without changing code inside the leap libraries yet so things can be further optimized This breaks the ~4 seconds get_leap_session piece into smaller 1 seconds one, that can be further optimized and deferred to even smaller calls There are requests calls happening on the main thread that should get this number even further down Also moved some pieces from bitmask libraries to our bootstrap, because they are not bitmask libraries anymore and that was causing confusion | |||
2016-08-19 | Normalizing single and multi user bootstrap #759 | Bruno Wagner | |
Consolidated authentication to always be done is a defer to thread and changed the authenticate_user method name to conform with what it actually does |