-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_tests.py
174 lines (120 loc) · 4.23 KB
/
app_tests.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
import unittest
from unittest.mock import patch
from app import app, collection
from flask import session
class PagesTests(unittest.TestCase):
def test_landing_page_returns_200(self):
#arrange
client = app.test_client(self)
#act
response = client.get('/')
statuscode = response.status_code
#assert
self.assertEqual(statuscode, 200)
def test_landing_page_content_type_returns_html(self):
#arrange
client = app.test_client(self)
#act
response = client.get('/')
content_type = response.content_type
#assert
self.assertEqual(content_type, 'text/html; charset=utf-8')
def test_signup_page_returns_200(self):
#arrange
client = app.test_client(self)
#act
response = client.get('/signup')
content_type = response.status_code
#assert
self.assertEqual(content_type, 200)
def test_user_page_returns_400_when_not_logged_in(self):
#arrange
client = app.test_client(self)
#act
response = client.get('/user')
status_code = response.status_code
#assert
self.assertEqual(status_code, 400)
class DatabaseTests(unittest.TestCase):
def test_creating_account_returns_200(self):
client = app.test_client(self)
response = client.post(
'/signup',
data = dict(
name="bobpatel",
username="tester12345", #unique username
password="IloveShopify;)", #passwords match
confirm_pass='IloveShopify;)'
),
follow_redirects=True
)
status_code = response.status_code
self.assertEqual(status_code, 200)
def test_passwords_dont_match_returns_400(self):
client = app.test_client(self)
response = client.post(
'/signup',
data = dict(
name="bobpatel",
username="temptester10", #unique username
password="IloveShopify;)", #different passwords
confirm_pass='differentpassword'
),
follow_redirects=True
)
status_code = response.status_code
self.assertEqual(status_code, 400)
collection.delete_one({'username': 'temptester10'})
def test_username_already_exists_returns_400(self):
client = app.test_client(self)
collection.insert_one({'username': 'temptester10'})
response = client.post(
'/signup',
data = dict(
name="bobpatel",
username="temptester10", #same username the username added on line 104
password="IloveShopify;)",
confirm_pass='IloveShopify;)' #same passwords
),
follow_redirects=True
)
status_code = response.status_code
self.assertEqual(status_code, 400)
collection.delete_one({'username': 'temptester10'})
def test_incorrect_password_returns_400(self):
client = app.test_client(self)
response = client.post(
'/check',
data = dict(
username="tester12345",
password="incorrectpassword"
)
)
status_code = response.status_code
self.assertEqual(status_code, 400)
def test_username_doesnt_exist_returns_400(self):
client = app.test_client(self)
response = client.post(
'/check',
data = dict(
username="username_that_is_not_in_database",
password="randompassword12"
)
)
status_code = response.status_code
self.assertEqual(status_code, 400)
def test_user_login_returns_200(self):
client = app.test_client(self)
response = client.post(
'/check',
data = dict(
username="tester12345",
password="IloveShopify;)"
),
follow_redirects=True
)
status_code = response.status_code
self.assertEqual(status_code, 200)
collection.delete_one({'username': 'tester12345'})
if __name__ == '__main__':
unittest.main()