Skip to content
Snippets Groups Projects
Commit 86211dc5 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '2018-inactive-login' into 'develop'

218 inactive login

Closes #218

See merge request funkwhale/funkwhale!202
parents 8ee34b89 f91ec0c8
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ Pillow>=4.3,<4.4
# For user registration, either via email or social
# Well-built with regular release cycles!
django-allauth>=0.34,<0.35
django-allauth>=0.36,<0.37
# Python-PostgreSQL Database Adapter
......
import binascii
import pytest
from rest_framework import exceptions
from funkwhale_api.subsonic import authentication
......@@ -54,3 +57,19 @@ def test_auth_with_password_cleartext(api_request, factories):
u, _ = authenticator.authenticate(request)
assert user == u
def test_auth_with_inactive_users(api_request, factories):
salt = 'salt'
user = factories['users.User'](is_active=False)
user.subsonic_api_token = 'password'
user.save()
token = authentication.get_token(salt, 'password')
request = api_request.get('/', {
'u': user.username,
'p': 'password',
})
authenticator = authentication.SubsonicAuthentication()
with pytest.raises(exceptions.AuthenticationFailed):
authenticator.authenticate(request)
......@@ -7,7 +7,7 @@ from django.urls import reverse
from funkwhale_api.users.models import User
def test_can_create_user_via_api(preferences, client, db):
def test_can_create_user_via_api(preferences, api_client, db):
url = reverse('rest_register')
data = {
'username': 'test1',
......@@ -16,14 +16,14 @@ def test_can_create_user_via_api(preferences, client, db):
'password2': 'testtest',
}
preferences['users__registration_enabled'] = True
response = client.post(url, data)
response = api_client.post(url, data)
assert response.status_code == 201
u = User.objects.get(email='test1@test.com')
assert u.username == 'test1'
def test_can_restrict_usernames(settings, preferences, db, client):
def test_can_restrict_usernames(settings, preferences, db, api_client):
url = reverse('rest_register')
preferences['users__registration_enabled'] = True
settings.USERNAME_BLACKLIST = ['funkwhale']
......@@ -34,13 +34,13 @@ def test_can_restrict_usernames(settings, preferences, db, client):
'password2': 'testtest',
}
response = client.post(url, data)
response = api_client.post(url, data)
assert response.status_code == 400
assert 'username' in response.data
def test_can_disable_registration_view(preferences, client, db):
def test_can_disable_registration_view(preferences, api_client, db):
url = reverse('rest_register')
data = {
'username': 'test1',
......@@ -49,7 +49,7 @@ def test_can_disable_registration_view(preferences, client, db):
'password2': 'testtest',
}
preferences['users__registration_enabled'] = False
response = client.post(url, data)
response = api_client.post(url, data)
assert response.status_code == 403
......@@ -73,7 +73,7 @@ def test_can_fetch_data_from_api(api_client, factories):
assert response.data['permissions'] == user.get_permissions()
def test_can_get_token_via_api(client, factories):
def test_can_get_token_via_api(api_client, factories):
user = factories['users.User']()
url = reverse('api:v1:token')
payload = {
......@@ -81,12 +81,24 @@ def test_can_get_token_via_api(client, factories):
'password': 'test'
}
response = client.post(url, payload)
response = api_client.post(url, payload)
assert response.status_code == 200
assert '"token":' in response.content.decode('utf-8')
assert 'token' in response.data
def test_can_get_token_via_api_inactive(api_client, factories):
user = factories['users.User'](is_active=False)
url = reverse('api:v1:token')
payload = {
'username': user.username,
'password': 'test'
}
def test_can_refresh_token_via_api(client, factories):
response = api_client.post(url, payload)
assert response.status_code == 400
def test_can_refresh_token_via_api(api_client, factories, mocker):
# first, we get a token
user = factories['users.User']()
url = reverse('api:v1:token')
......@@ -95,21 +107,19 @@ def test_can_refresh_token_via_api(client, factories):
'password': 'test'
}
response = client.post(url, payload)
response = api_client.post(url, payload)
assert response.status_code == 200
token = json.loads(response.content.decode('utf-8'))['token']
token = response.data['token']
url = reverse('api:v1:token_refresh')
response = client.post(url,{'token': token})
response = api_client.post(url, {'token': token})
assert response.status_code == 200
assert '"token":' in response.content.decode('utf-8')
# a different token should be returned
assert token in response.content.decode('utf-8')
assert 'token' in response.data
def test_changing_password_updates_secret_key(logged_in_client):
user = logged_in_client.user
def test_changing_password_updates_secret_key(logged_in_api_client):
user = logged_in_api_client.user
password = user.password
secret_key = user.secret_key
payload = {
......@@ -119,7 +129,7 @@ def test_changing_password_updates_secret_key(logged_in_client):
}
url = reverse('change_password')
response = logged_in_client.post(url, payload)
response = logged_in_api_client.post(url, payload)
user.refresh_from_db()
......
Ensure inactive users cannot get auth tokens (#218)
This was already the case bug we missed some checks
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment