-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_recipe_views.py
224 lines (161 loc) · 7.29 KB
/
test_recipe_views.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
"""Tests for Search and recipe views"""
import os
from unittest import TestCase
from flask import session
from models import db, conenct_db, User, Recipe, Favorite
from testing_data import test_image
os.environ['DATABASE_URL'] = "postgresql:///wildcarrot_test"
from app import app, CURR_USER_KEY
app.config['TESTING'] = True
app.config['DEBUG_TB_HOSTS'] = ['dont-show-debug-toolbar']
app.config['DEBUG_TB_INTERCEPT_REDIRECTS'] = False
db.drop_all()
db.create_all()
app.config['WTF_CSRF_ENABLED'] = False
class TestHomePage(TestCase):
"""Tests for Home Page"""
def setUp(self):
"""Clear any botched data; Create test client; Clear session"""
User.query.delete()
db.session.commit()
self.client = app.test_client()
with self.client.session_transaction() as sess:
sess.clear()
def test_home_page_not_logged_in(self):
"""Home Page view NOT logged in
/ GET"""
with self.client as c:
resp = c.get("/")
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertIn("Search for Recipes", html, msg="home.html did not load")
def test_home_page_logged_in(self):
"""Home Page view while logged in
/ GET"""
test_user = User.signup(
username="CoolGuy",
password="ilikesunglasses",
bio="I really like dolphins."
)
db.session.commit()
with self.client as c:
with self.client.session_transaction() as sess:
sess[CURR_USER_KEY] = test_user.id
resp = c.get("/")
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertIn("Search for Recipes", html, msg="home.html did not load")
self.assertIn("CoolGuy", html, msg="Logged in username did not appear on homepage")
class TestSearchResults(TestCase):
"""Tests for Search results"""
def setUp(self):
"""Clear any botched data; Create test client; Clear session"""
User.query.delete()
db.session.commit()
self.client = app.test_client()
with self.client.session_transaction() as sess:
sess.clear()
def test_search_results_not_logged_in(self):
"""Search Results while NOT logged in
/search GET"""
User.signup(
username="CoolGuy",
password="ilikesunglasses",
bio="I really like dolphins."
)
db.session.commit()
with self.client as c:
resp = c.get("/search?q=pizza")
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertNotIn("CoolGuy", html, msg="A username not logged in appeared on the page")
self.assertIn("Pizza", html, msg="Search results did not appear or do not make sense.")
def test_search_results_logged_in(self):
"""Search results while logged in
/search GET"""
test_user = User.signup(
username="CoolGuy",
password="ilikesunglasses",
bio="I really like dolphins."
)
db.session.commit()
with self.client as c:
with self.client.session_transaction() as sess:
sess[CURR_USER_KEY] = test_user.id
resp = c.get("/search?q=pizza")
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertIn("CoolGuy", html, msg="A logged in username did not appear on the page")
self.assertIn("Pizza", html, msg="Search results did not appear or do not make sense.")
def test_single_recipe_view(self):
"""Single Recipe View while NOT logged in
/recipes/<string:edamam_id> GET"""
with self.client as c:
resp = c.get("/recipes/4d63b2fef227383bd4891f5c5217e88b")
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertIn("Meat Lovers", html, "Recipe name did not appear in html.")
self.assertIn("bacon", html, msg="An ingredient did not appear in html.")
self.assertIn("For Coooking Instructions", html, "Instructions link did not appear in html.")
def test_single_recipe_view(self):
"""Sing Recipe View while logged in
/recipes/<string:edamam_id> GET"""
test_user = User.signup(
username="CoolGuy",
password="ilikesunglasses",
bio="I really like dolphins."
)
db.session.commit()
with self.client as c:
with self.client.session_transaction() as sess:
sess[CURR_USER_KEY] = test_user.id
resp = c.get("/recipes/4d63b2fef227383bd4891f5c5217e88b")
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertIn("Meat Lovers", html, "Recipe name did not appear in html.")
self.assertIn("bacon", html, msg="An ingredient did not appear in html.")
self.assertIn("For Coooking Instructions", html, "Instructions link did not appear in html.")
self.assertIn("CoolGuy", html, msg="A logged in username did not appear on the page")
class TestFavoritesView(TestCase):
"""Testing for displaying a user's favorited recipes"""
def setUp(self):
"""Clear any botched data; Create test client; Clear session"""
User.query.delete()
db.session.commit()
self.client = app.test_client()
with self.client.session_transaction() as sess:
sess.clear()
def test_favorites_not_logged_in(self):
"""Favorites page while NOT logged in
/favorites GET"""
with self.client as c:
resp = c.get("/favorites", follow_redirects=True)
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertIn("Please login or create", html, msg="flash message not included in redirect")
def test_favorites_logged_in(self):
"""Favorites page while logged in
/favorites GET"""
test_user = User.signup(
username="CoolGuy",
password="ilikesunglasses",
bio="I really like dolphins."
)
db.session.commit()
test_recipe = Recipe(edamam_id="4d63b2fef227383bd4891f5c5217e88b",
name="Meat Lovers' Pizza Dip",
image=test_image)
db.session.add(test_recipe)
db.session.commit()
test_favorite = Favorite(user_id=test_user.id, recipe_id=test_recipe.id)
db.session.add(test_favorite)
db.session.commit()
with self.client as c:
with self.client.session_transaction() as sess:
sess[CURR_USER_KEY] = test_user.id
resp = c.get("/favorites")
html = resp.get_data(as_text=True)
self.assertEqual(resp.status_code, 200)
self.assertIn("Meat Lovers", html, msg="favorited recipe did not appear in html")
self.assertNotIn("Please login or create", html, msg="Flash message for not being logged in appeared.")
self.assertIn("CoolGuy", html, msg="Logged in username did not appear in html")