mirror of
https://github.com/wassname/flask-security.git
synced 2026-06-27 16:10:11 +08:00
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
test_configuration
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
Basic configuration tests
|
|
"""
|
|
|
|
import base64
|
|
|
|
import pytest
|
|
|
|
from utils import authenticate, logout
|
|
|
|
|
|
@pytest.mark.settings(
|
|
logout_url='/custom_logout',
|
|
login_url='/custom_login',
|
|
post_login_view='/post_login',
|
|
post_logout_view='/post_logout',
|
|
default_http_auth_realm='Custom Realm')
|
|
def test_view_configuration(client):
|
|
response = client.get('/custom_login')
|
|
assert b"<h1>Login</h1>" in response.data
|
|
|
|
response = authenticate(client, endpoint='/custom_login', follow_redirects=True)
|
|
assert b'Post Login' in response.data
|
|
|
|
response = logout(client, endpoint='/custom_logout', follow_redirects=True)
|
|
assert b'Post Logout' in response.data
|
|
|
|
response = client.get('/http', headers={
|
|
'Authorization': 'Basic %s' % base64.b64encode(b"joe@lp.com:bogus")
|
|
})
|
|
assert b'<h1>Unauthorized</h1>' in response.data
|
|
assert 'WWW-Authenticate' in response.headers
|
|
assert 'Basic realm="Custom Realm"' == response.headers['WWW-Authenticate']
|
|
|
|
|
|
@pytest.mark.settings(login_user_template='custom_security/login_user.html')
|
|
def test_template_configuration(client):
|
|
response = client.get('/login')
|
|
assert b'CUSTOM LOGIN USER' in response.data
|