-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ def test_unauthenticated_cannot_do_anything(api_client, users): | |
@pytest.mark.parametrize( | ||
"ip_address", | ||
[ | ||
("199.168.1.40"), | ||
("1.1.1.1"), | ||
], | ||
) | ||
def test_mailing_list_unsubscribe_throttling( | ||
|
@@ -59,7 +59,7 @@ def test_mailing_list_unsubscribe_throttling( | |
response = api_client_with_custom_ip_address.post( | ||
url, {"email": f"test_{count}@test.com"} | ||
) | ||
assert response.status_code == 200 | ||
assert response.status_code == 200, response.content | ||
count += 1 | ||
time.sleep(2) | ||
response = api_client_with_custom_ip_address.post( | ||
|
@@ -245,11 +245,11 @@ def test_mailing_user_has_subscribed(api_client, users, results, mailing_lists): | |
@pytest.mark.parametrize( | ||
"ip_address", | ||
[ | ||
("92.68.21.220"), | ||
("1.1.1.2"), | ||
], | ||
) | ||
def test_mailing_list_subscribe_throttling( | ||
api_client_with_custom_ip_address, mailing_list_emails, users | ||
api_client_with_custom_ip_address, throttling_users | ||
): | ||
num_requests = int( | ||
ProfileViewSet.subscribe.kwargs["throttle_classes"][0].rate.split("/")[0] | ||
|
@@ -261,15 +261,15 @@ def test_mailing_list_subscribe_throttling( | |
url, | ||
{ | ||
"email": f"throttlling_test_{count}@test.com", | ||
"user": users[count].id, | ||
"user": throttling_users[count].id, | ||
}, | ||
) | ||
assert response.status_code == 201 | ||
assert response.status_code == 201, response.content | ||
count += 1 | ||
|
||
time.sleep(2) | ||
response = api_client_with_custom_ip_address.post( | ||
url, {"email": f"test_{count}@test.com", "user": users[count].id} | ||
url, {"email": f"test_{count}@test.com", "user": throttling_users[count].id} | ||
) | ||
assert response.status_code == 429 | ||
|
||
|
@@ -322,7 +322,7 @@ def test_mailing_list_subscribe_with_invalid_post_data( | |
@pytest.mark.parametrize( | ||
"ip_address", | ||
[ | ||
("100.1.1.40"), | ||
("1.1.1.3"), | ||
], | ||
) | ||
def test_mailing_list_unsubscribe( | ||
|
@@ -343,7 +343,7 @@ def test_mailing_list_unsubscribe( | |
@pytest.mark.parametrize( | ||
"ip_address", | ||
[ | ||
("101.1.1.40"), | ||
("1.1.1.4"), | ||
], | ||
) | ||
def test_mailing_list_unsubscribe_non_existing_email( | ||
|
@@ -365,7 +365,7 @@ def test_mailing_list_unsubscribe_non_existing_email( | |
@pytest.mark.parametrize( | ||
"ip_address", | ||
[ | ||
("12.6.121.22"), | ||
("1.1.1.5"), | ||
], | ||
) | ||
def test_mailing_list_unsubscribe_email_not_provided( | ||
|
@@ -374,34 +374,3 @@ def test_mailing_list_unsubscribe_email_not_provided( | |
url = reverse("account:profiles-unsubscribe") | ||
response = api_client_with_custom_ip_address.post(url) | ||
assert response.status_code == 400 | ||
|
||
|
||
@pytest.mark.django_db | ||
@pytest.mark.parametrize( | ||
"ip_address", | ||
[ | ||
("100.19.91.40"), | ||
], | ||
) | ||
def test_mailing_list_unique_constraints(api_client_with_custom_ip_address, users): | ||
url = reverse("account:profiles-subscribe") | ||
user = users.get(username="test1") | ||
response = api_client_with_custom_ip_address.post( | ||
url, {"email": "[email protected]", "user": user.id} | ||
) | ||
assert response.status_code == 201 | ||
assert MailingListEmail.objects.count() == 1 | ||
# Subscribed as the result (MailingList) is different than for user 'test1' | ||
user = users.get(username="test2") | ||
response = api_client_with_custom_ip_address.post( | ||
url, {"email": "[email protected]", "user": user.id} | ||
) | ||
assert response.status_code == 201 | ||
assert MailingListEmail.objects.count() == 2 | ||
# Fails, as the email and result are not jointly unique. | ||
user = users.get(username="test3") | ||
response = api_client_with_custom_ip_address.post( | ||
url, {"email": "[email protected]", "user": user.id} | ||
) | ||
assert response.status_code == 400 | ||
assert MailingListEmail.objects.count() == 2 |