Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
39243beff4 Remove login URL | Fixes #3 2026-03-01 19:37:45 +05:30
67953ac42e Remove register URL | Closes #2 2026-03-01 19:30:52 +05:30
ed71714a79 Fixed errors in tests 2026-02-27 20:13:10 +05:30
6 changed files with 13 additions and 9 deletions

View file

@ -8,6 +8,7 @@ def create_app(test_config=None):
app.config.from_mapping(
SECRET_KEY='dev',
DATABASE=os.path.join(app.instance_path, 'flaskr.sqlite'),
ALLOW_REGISTER=False,
)
app.wsgi_app = ProxyFix(

View file

@ -1,7 +1,7 @@
import functools
from flask import (
Blueprint, flash, g, redirect, render_template, request, session, url_for
Blueprint, flash, g, redirect, render_template, request, session, url_for, current_app
)
from werkzeug.security import check_password_hash, generate_password_hash
@ -11,7 +11,8 @@ bp = Blueprint('auth', __name__, url_prefix='/auth')
@bp.route('/register', methods=('GET', 'POST'))
def register():
return "Admin only", 403
if not current_app.config["ALLOW_REGISTER"]:
return "Admin only", 403
if request.method == 'POST':
username = request.form['username']
password = request.form['password']

View file

@ -8,9 +8,6 @@
{% if g.user %}
<li><span>{{ g.user['username'] }}</span>
<li><a href="{{ url_for('auth.logout') }}">Log Out</a>
{% else %}
<li><a href="{{ url_for('auth.register') }}">Register</a>
<li><a href="{{ url_for('auth.login') }}">Log In</a>
{% endif %}
</ul>
</nav>

View file

@ -15,6 +15,7 @@ def app():
app = create_app({
'TESTING': True,
'DATABASE': db_path,
'ALLOW_REGISTER': True,
})
with app.app_context():

View file

@ -14,6 +14,10 @@ def test_register(client, app):
"SELECT * FROM user WHERE USERNAME = 'a'",
).fetchone() is not None
app.config["ALLOW_REGISTER"] = False
response = client.get('/auth/register')
assert b"Admin only" in response.data
@pytest.mark.parametrize(('username', 'password', 'message'), (
('', '', b'Username is required.'),
('a', '', b'Password is required.'),

View file

@ -3,8 +3,8 @@ from flaskr.db import get_db
def test_index(client, auth):
response = client.get('/')
assert b"Log In" in response.data
assert b"Register" in response.data
assert b"Log In" not in response.data
assert b"Register" not in response.data
auth.login()
response = client.get('/')
@ -58,7 +58,7 @@ def test_create(client, auth, app):
def test_update(client, auth, app):
auth.login()
assert client.get('/1/update').status_code == 200
client.post('/1/update', data={'title': 'updated', 'body': ''})
client.post('/1/update', data={'title': 'updated', 'body': '', 'created': '1970-01-01 00:00:00'})
with app.app_context():
db = get_db()
@ -71,7 +71,7 @@ def test_update(client, auth, app):
))
def test_create_update_validate(client, auth, path):
auth.login()
response = client.post(path, data={'title': '', 'body': ''})
response = client.post(path, data={'title': '', 'body': '', 'created': '1970-01-01 00:00:00'})
assert b'Title is required.' in response.data
def test_delete(client, auth, app):