Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-21 | Remove old UploadKeyError test | Tulio Casagrande | |
I was surprised this test was not working correctly. | |||
2017-01-21 | Re-raise the same exception to keep context | Tulio Casagrande | |
2017-01-21 | Make registering of events for fresh accounts a bit more robust by replacing ↵ | Ola Bini | |
the old events if they were not cleaned up after previous errors | |||
2017-01-20 | Rebase previous PR on current master - see PR #915 for details | Ola Bini | |
2017-01-20 | Merge pull request #916 from olabini/fix-broken-assert-welcome-email | Tulio Casagrande | |
Fix broken test for default language for user | |||
2017-01-19 | Add copyright statements to all Python files that doesn't have it | Ola Bini | |
2017-01-19 | Fix broken test for default language for user | Ola Bini | |
2017-01-17 | [#885] Adds test to ensure the right type for user_uuid and passphrase | Thais Siqueira | |
with @tayanefernandes | |||
2017-01-13 | Mock register events to not complain about zmq certs | Tulio Casagrande | |
Related with: #815 | |||
2017-01-12 | Re-raise the exception after closing the session | Tayane Fernandes | |
We were trying to setup services even after closing the session. We fixed it and added unit test. Related with: #815 | |||
2017-01-03 | Fixed mockito conflict with zope | Bruno Wagner | |
I bumped into this problem where trial would try to clean up after running the SiteTest and run into an error 'RememberedInvocation has no attribute "_implied"' That happened because mockito is strict with the set of functions it's mock accepts and _implied doesn't exist. It didn't really make sense in this test context so I've adapted the test to use MagicMock instead and now the test pass without problems. | |||
2017-01-02 | [#815] regenerating new keys when the current one expires | NavaL | |
2016-11-24 | mock out event registration for failing test in SnapCI | Roald de Vries | |
2016-11-24 | remove another unnecessary patch | Roald de Vries | |
2016-11-24 | 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-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 | 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-09-26 | rearranged leap session creation to not sync nor setup account/fetcher, when ↵ | NavaL | |
using the cache Issue #773 | |||
2016-09-08 | Fixed test to correctly mock the mail_fetcher | Bruno Wagner | |
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 | |||
2016-06-24 | Issue #694 add an admin restricted resource for user stats | NavaL | |
2016-05-13 | Issue #691: Refactor to Twisted 16.1.1 | Felix Hammerl | |
2016-05-11 | Remove dispatcher references from service | Caio Carrara | |
Since we're not using dispatcher anymore, it doesn't make sense to keep dispatcher references and program flows that depend on it. For example, it doesn't make sense keep the flag --organization-mode, so it was removed as well. | |||
2016-02-24 | Recreate session on soledad problems | Folker Bernitt | |
- Issue #615 - invalid token raised by soledad after timeout, if we see this, recreate the session on next login | |||
2016-02-20 | Add recommended security headers from #618 | Paulo Schneider | |
2016-02-05 | closing the services closes leap session, which stops background tasks, ↵ | NavaL | |
close soldedad and remove it from cache Issue #586 | |||
2016-01-28 | Add Strict-Transport-Security header to user agent | Folker Bernitt | |
- Issue #584 | |||
2015-09-29 | Fixed length check for password to mirror the leap webapp | Bruno Wagner | |
2015-09-28 | Leap web requires 8 length password, so we'll do it on UA too | Bruno Wagner | |
2015-09-04 | #304 Include CSP header support to more browsers | Giovane | |
2015-09-03 | #304 Adds PixelatedSite class to hold custom request configuration and ↵ | Giovane | |
remove foundation inline javascript. | |||
2015-06-13 | [rename] tested app_factory code is now on application module | Victor Shyba | |
2015-06-13 | [tests] Enabling 2 skipped tests | Victor Shyba | |
Adapted to run on current application module | |||
2015-06-05 | Added creation of input mail from python message | Bruno Wagner | |
That way we don't need extra logic for the welcome mail, we just have to read the file and send the contents to the input mail parser and that's it. Also moved the logic of adding a welcome mail to the mailboxes because it has knowledge of mailbox methods anyways. | |||
2015-06-05 | Moved register out of application like maintenance | Bruno Wagner | |
2015-06-05 | Refactoring the config, logging_setup is now called logger | Bruno Wagner | |
2015-06-04 | Config dispatcher and config_ua are now in credentials | Bruno Wagner | |
2015-06-03 | Move reactor logic out of application initialization | rafael lisboa | |
2015-06-03 | Creating a leap session is now part of leap init | Bruno Wagner | |
We've moved the init soledad method to the leap_initialization module and gave it a meaningful name, because it was initializing the whole leap session instead of only soledad, because of that we removed some of the uneeded config files and deduplicated some code on maintenance to use the same facilities. Some arguments had non-meaningful variable names and args was being passed everywhere (it was unclear who was using which variables in the args) We changed the initialization to pass those arguments explicitly, then we can factor them out sometime when it makes sense | |||
2015-06-03 | Dispatcher tests were not reflecting the args parser changes | Bruno Wagner | |
2015-06-03 | Fixed tests after app changes | Bruno Wagner | |
2015-04-13 | Merge pull request #371 from enzoz/validates_username_before_create_account | Bruno Wagner Gonçalves | |
Validates username before request user creation on leap server | |||
2015-04-10 | Allows dot on username. | Enzo Zuccolotto | |
-- Issue #147 @anikarni and @enzoz pairing | |||
2015-04-08 | Validates username before request user creation on leap server | Enzo Zuccolotto | |
-- Issue #147 @anikarni and @enzoz pairing |