Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix email validation in ShowSummary route #260

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ def index():

@app.route('/showSummary',methods=['POST'])
def showSummary():
club = [club for club in clubs if club['email'] == request.form['email']][0]
try:
club = [club for club in clubs if club['email'] == request.form['email']][0]
except IndexError:
flash("email not found or invalid please try again")
return redirect(url_for('index'))
return render_template('welcome.html',club=club,competitions=competitions)


Expand Down Expand Up @@ -56,4 +60,7 @@ def purchasePlaces():

@app.route('/logout')
def logout():
return redirect(url_for('index'))
return redirect(url_for('index'))

if __name__ == '__main__':
app.run(debug=True)
Empty file added tests/__init__.py
Empty file.
Empty file added tests/unit_tests/__init__.py
Empty file.
9 changes: 9 additions & 0 deletions tests/unit_tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import pytest

from server import app


@pytest.fixture
def client():
app.config["TESTING"] = True
return app.test_client()
22 changes: 22 additions & 0 deletions tests/unit_tests/test_valid_or_invalid_mail.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import pytest

def test_connection_with_valid_email(client):
result = client.post("/showSummary", data={"email": "john@simplylift.co"})
assert result.status_code == 200
assert f"john@simplylift.co" in result.data.decode()

def test_connection_with_invalid_email_no_at(client):
result = client.post("/showSummary", data={"email": "johnsimplylift.co"})
assert result.status_code == 302

def test_connection_with_invalid_email_no_dot(client):
result = client.post("/showSummary", data={"email": "john@simplyliftco"})
assert result.status_code == 302

def test_connection_with_empty_email(client):
result = client.post("/showSummary", data={"email": ""})
assert result.status_code == 302

def test_logout(client):
result = client.get("/logout")
assert result.status_code == 302