thunderbird_accounts.authentication.tests

Classes

APITestCase([methodName])

AllowListTestCase([methodName])

ClientSetAllowedHostsMiddlewareTestCase([...])

FXABackendTestCase([methodName])

FXAWebhooksTestCase([methodName])

UtilsTestCase([methodName])

class thunderbird_accounts.authentication.tests.APITestCase(methodName='runTest')[source]

Bases: TestCase

setUp()[source]

Hook method for setting up the test fixture before exercising it.

class thunderbird_accounts.authentication.tests.UtilsTestCase(methodName='runTest')[source]

Bases: TestCase

setUp()[source]

Hook method for setting up the test fixture before exercising it.

test_handle_auth_callback_response()[source]

Ensure this response has a token GET parameter

test_handle_auth_callback_response_with_admin()[source]

Ensure this response does not have a token GET parameter

test_handle_auth_callback_response_with_explicit_redirect_url()[source]

Ensure this response does not have a token GET parameter because we’re overriding the redirect_url

class thunderbird_accounts.authentication.tests.FXABackendTestCase(methodName='runTest')[source]

Bases: TestCase

setUp()[source]

Hook method for setting up the test fixture before exercising it.

test_authenticate_with_matching_fxa_id()[source]

Test authentication when fxa id matches existing user

test_authenticate_with_matching_email()[source]

Test authentication when email matches existing user, but fxa id is new

test_authenticate_with_no_match()[source]

Test authentication with new user

class thunderbird_accounts.authentication.tests.ClientSetAllowedHostsMiddlewareTestCase(methodName='runTest')[source]

Bases: TestCase

setUp()[source]

Hook method for setting up the test fixture before exercising it.

tearDown()[source]

Hook method for deconstructing the test fixture after testing it.

test_allowed_hosts_cache()[source]

Test that middleware properly sets ALLOWED_HOSTS from ClientEnvironment

test_allowed_uses_cached_hosts()[source]

Test that middleware uses cached hosts when available

class thunderbird_accounts.authentication.tests.FXAWebhooksTestCase(methodName='runTest')[source]

Bases: APITestCase

setUp()[source]

Hook method for setting up the test fixture before exercising it.

tearDown()[source]

Hook method for deconstructing the test fixture after testing it.

test_fxa_process_change_password()[source]

Ensure the change password event is handled correctly

class thunderbird_accounts.authentication.tests.AllowListTestCase(methodName='runTest')[source]

Bases: APITestCase

setUp()[source]

Hook method for setting up the test fixture before exercising it.

tearDown()[source]

Hook method for deconstructing the test fixture after testing it.

test_entry_is_cached()[source]

Test that the entry is cached, and is deleted on user delete

test_entry_with_updated_email_is_uncached()[source]

If a user’s email changes via a fxa webhook, we should make sure the cache is cleared for that entry.