-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
111 lines (84 loc) · 3.58 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
import unittest
from app import app, db
from app.models import *
class UserModelCase(unittest.TestCase):
def setUp(self):
with app.app_context():
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite://"
db.create_all()
def tearDown(self):
with app.app_context():
db.session.remove()
db.drop_all()
def test_password_hashing(self):
u = User(username="robb", sciper=123456)
u.set_password("hoho")
self.assertFalse(u.check_password("beep"))
self.assertTrue(u.check_password("hoho"))
def test_users_team(self):
u1 = User(username="john", email="[email protected]")
u2 = User(username="susan", email="[email protected]")
u3 = User(username="paul", email="[email protected]")
with app.app_context():
db.session.add_all([u1, u2, u3])
db.session.commit()
t1 = Team(team_name="beepboop", member1_id=u1.id, member2_id=u2.id)
db.session.add(t1)
db.session.commit()
self.assertEqual(u1.team(), t1)
self.assertEqual(u2.team(), t1)
self.assertTrue(u1.has_team())
self.assertFalse(u3.has_team())
class TeamModelCase(unittest.TestCase):
def setUp(self):
with app.app_context():
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite://"
db.create_all()
def tearDown(self):
with app.app_context():
db.session.remove()
db.drop_all()
def test_matches(self):
# Setup users
u1 = User(username="john", email="[email protected]")
u2 = User(username="susan", email="[email protected]")
u3 = User(username="paul", email="[email protected]")
u4 = User(username="emilie", email="[email protected]")
with app.app_context():
db.session.add_all([u1, u2, u3, u4])
db.session.commit()
# Setup teams
t1 = Team(team_name="beepboop", member1_id=u1.id, member2_id=u2.id)
t2 = Team(team_name="diffie", member1_id=u3.id, member2_id=u4.id)
db.session.add_all([t1, t2])
db.session.commit()
self.assertEqual(t2.members(), (u3, u4))
self.assertTrue(t1.is_full())
self.assertFalse(t2.has_admin())
# Setup defences
d1 = Defence(defender_team_id=t1.id)
d2 = Defence(defender_team_id=t2.id)
db.session.add_all([d1, d2])
db.session.commit()
self.assertEqual(d1.defender_team, t1)
self.assertEqual(t2.defences.all(), [d2])
# Create matches
m1 = Match(defender_team_id=t1.id, attacker_team_id=t2.id, round=1)
m2 = Match(defender_team_id=t2.id, attacker_team_id=t1.id, round=1)
db.session.add_all([m1, m2])
db.session.commit()
self.assertEqual(t1.defence_matches.all(), [m1])
self.assertEqual(t2.attack_matches.all(), [m1])
self.assertEqual(t1.attacks().all(), [])
self.assertEqual(t1.teams_to_attack_in_round(1).all(), [t2])
self.assertEqual(t2.defence_matches_in_round(1).all(), [m2])
self.assertEqual(t1.get_match_against(1, 2).all(), [m2])
# Create attacks
a1 = Attack(match_id=m1.id)
a2 = Attack(match_id=m2.id)
db.session.add_all([a1, a2])
db.session.commit()
self.assertEqual(m1.attacks.all(), [a1])
self.assertEqual(t1.attacks().all(), [a2])
if __name__ == "__main__":
unittest.main(verbosity=2)