first test on link displayed based on date

This commit is contained in:
2025-07-07 10:02:55 +02:00
parent ada3a5cc76
commit 5ed18c0c3c
4 changed files with 137 additions and 6 deletions

View File

@@ -10,7 +10,6 @@ def test_should_status_code_ok(client):
def test_should_display_sorry_with_unknown_email(client):
email = "test@test.com"
response = client.post('/showSummary', data={"email": email})
print(session)
assert "_flashes" in session
assert session["_flashes"] == [("message", "Sorry, that email wasn't found")]
@@ -18,9 +17,10 @@ def test_should_display_sorry_with_unknown_email(client):
def test_shoul_display_page_on_known_email(client):
email = "admin@irontemple.com"
response = client.post('/showSummary', data={"email": email})
print(session)
soup = BeautifulSoup(response.data, 'html.parser')
assert soup.h2.text == "Welcome, "+email
#assert soup.h2.text == "Welcome, "+email
welcome = "Welcome, "+email
assert welcome in response.data.decode()