forked from ChannelX/ChannelX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
150 lines (132 loc) · 6.88 KB
/
test.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
from main import app,db,User
import unittest
class BaseTestCase(unittest.TestCase):
def setUp(self):
db.create_all()
db.session.add(User(id = 1, Name = "",Email = "[email protected]",Username = "admin",
Password = "password"))
db.session.commit()
def tearDown(self):
db.session.remove()
db.drop_all()
class FlaskTestCase(BaseTestCase):
#ensure that the index page loads correctly
def test_index_load(self):
tester = app.test_client(self)
response = tester.get('/',content_type = 'html/text')
self.assertEqual(response.status_code, 200)
print("testing that the index page loads correctly")
#ensure that the sign_up page loads correctly
def test_sign_up_load(self):
tester = app.test_client(self)
response = tester.get('/sign_up',content_type = 'html/text')
self.assertEqual(response.status_code, 200)
print("testing that the sign_up page loads correctly")
#ensure sign_up behaves correctly
def test_correct_sign_up(self):
tester = app.test_client(self)
response = tester.post('/sign_up',data = dict(Name = "",Email = "[email protected]",Username = "newuser",
Password = "password",Confirm = "password"),follow_redirects = True)
self.assertIn(b'Create Channel',response.data)
print("testing that sign_up behaves correctly")
#ensure sign_up behaves correctly for password confirmation
def test_wrong_confirmation_sign_up(self):
tester = app.test_client(self)
response = tester.post('/sign_up',data = dict(Name = "",Email = "[email protected]",Username = "newuser",
Password = "password",Confirm = "wrong"),follow_redirects = True)
self.assertIn(b'Passwords are not same!',response.data)
print("testing that sign_up behaves correctly for password confirmation")
#ensure sign_up behaves correctly given the username that already exists
def test_exists_username_sign_up(self):
tester = app.test_client(self)
response = tester.post('/sign_up',data = dict(Name = "",Email = "[email protected]",Username = "admin",
Password = "password",Confirm = "password"),follow_redirects = True)
self.assertIn(b'Username already exists choose another one.',response.data)
print("testing that sign_up behaves correctly given the username that already exists")
#ensure that the login page loads correctly
def test_login_load(self):
tester = app.test_client(self)
response = tester.get('/login',content_type = 'html/text')
self.assertEqual(response.status_code, 200)
print("testing that the login page loads correctly")
#ensure login behaves correctly given the correct credential
def test_correct_login(self):
tester = app.test_client(self)
response = tester.post('/login',data = dict(Username = "admin", Password = "password"),follow_redirects = True)
self.assertIn(b'Create Channel',response.data)
print("testing that login behaves correctly given the correct credential")
#ensure login behaves correctly given the incorrect Username
def test_false_username_login(self):
tester = app.test_client(self)
response = tester.post('/login',data = dict(Username = "deneme",
Password = "password"),follow_redirects = True)
self.assertIn(b'Username not found!',response.data)
print("testing that login behaves correctly given the incorrect Username")
#ensure login behaves correctly given the incorrect Password
def test_false_password(self):
tester = app.test_client(self)
response = tester.post('/login',data = dict(Username = "admin",
Password = "wrong"),follow_redirects = True)
self.assertIn(b'Password failure!',response.data)
print("testing that login behaves correctly given the incorrect Password")
#ensure channel creation is done correctly
def test_correct_create_channel(self):
weekday=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]
tester = app.test_client(self)
tester.post('/login',data = dict(Username = "admin", Password = "password"),follow_redirects = True)
response = tester.post('/user_panel',
data = dict(Nickname = "admin", Channel_Name = "NewChannel",
Channel_Password = "asdfgh",Start_Time = "00:01",End_Time = "23:59",
days=",".join(weekday)),follow_redirects = True
)
self.assertIn(b'Leave this channel!',response.data)
print("testing that channel creation is done correctly")
#ensure that users cannot reach unauthorized user_panel
def test_Unauthorized_user_panel(self):
tester = app.test_client(self)
response = tester.get('/user_panel',content_type = 'html/text')
self.assertEqual(response.status_code, 401)
print("testing that users cannot reach unauthorized user_panel")
#ensure that the join page loads correctly
def test_join_load(self):
tester = app.test_client(self)
response = tester.get('/join',content_type = 'html/text')
self.assertEqual(response.status_code, 200)
print("testing that the join page loads correctly")
#ensure join behaves correctly given the incorrect channel name
def test_false_Channel_Name(self):
tester = app.test_client(self)
response = tester.post('/join',data = dict(Nickname = "UnusedNick", Channel_Name = "UnusedChannel",
Channel_Password = "UnusedPassword"),follow_redirects = True)
self.assertIn(b'Sorry, channel name is not found!',response.data)
print("testing that join behaves correctly given the incorrect Channel Name")
#ensure join behaves correctly given the incorrect password
def test_false_Channel_Password(self):
weekday=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]
tester = app.test_client(self)
tester.post('/login',data = dict(Username = "admin", Password = "password"),follow_redirects = True)
response = tester.post('/user_panel',
data = dict(Nickname = "admin", Channel_Name = "NewChannel",
Channel_Password = "asdfgh",Start_Time = "00:01",End_Time = "23:59",
days=",".join(weekday)),follow_redirects = True
)
response = tester.post('/join',data = dict(Nickname = "UnusedNick", Channel_Name = "NewChannel",
Channel_Password = "wrongPassword"),follow_redirects = True)
self.assertIn(b'Channel name and password could not match!',response.data)
print("testing that join behaves correctly given the incorrect password")
#ensure join behaves correctly given the correct credential
def test_correct_join(self):
weekday=["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]
tester = app.test_client(self)
tester.post('/login',data = dict(Username = "admin", Password = "password"),follow_redirects = True)
response = tester.post('/user_panel',
data = dict(Nickname = "admin", Channel_Name = "NewChannel",
Channel_Password = "asdfgh",Start_Time = "00:01",End_Time = "23:59",
days=",".join(weekday)),follow_redirects = True
)
response = tester.post('/join',data = dict(Nickname = "admin", Channel_Name = "NewChannel",
Channel_Password = "asdfgh"),follow_redirects = True)
self.assertIn(b'Leave this channel!',response.data)
print("testing that join behaves correctly given the correct credential")
if __name__ == '__main__':
unittest.main()