-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.py
93 lines (77 loc) · 3.13 KB
/
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
from datetime import datetime, timedelta
import unittest
from app import db, create_app
from app.models import User, Post
from config import Config
class TestConfig(Config):
TESTING = True
SQLALCHEMY_DATABASE_URI = 'sqlite://'
class UserModelCase(unittest.TestCase):
def setUp(self):
self.app = create_app(TestConfig)
self.app_context = self.app.app_context()
self.app_context.push()
db.create_all()
def tearDown(self):
db.session.remove()
db.drop_all()
self.app_context.pop()
def test_password_hashing(self):
u = User(username='susan')
u.set_password('cat')
self.assertFalse(u.check_password('dog'))
self.assertTrue(u.check_password('cat'))
def test_avatar(self):
u = User(username='john', email='john@john.com')
self.assertEqual(u.avatar(128), ('https://www.gravatar.com/avatar/'
'd31075d1a7e79e7cf3e2825899ece470'
'?d=identicon&s=128'))
def test_follow(self):
u1 = User(username='john', email='john@john.com')
u2 = User(username='susan', email='susan@susan.com')
db.session.add(u1)
db.session.add(u2)
db.session.commit()
self.assertEqual(u1.followed.all(), [])
self.assertEqual(u2.followed.all(), [])
u1.follow(u2)
db.session.commit()
self.assertTrue(u1.is_following(u2))
self.assertEqual(u1.followed.count(), 1)
self.assertEqual(u1.followed.first().username, 'susan')
self.assertEqual(u2.followers.count(), 1)
self.assertEqual(u2.followers.first().username, 'john')
u1.unfollow(u2)
db.session.commit()
self.assertFalse(u1.is_following(u2))
self.assertEqual(u1.followed.count(), 0)
self.assertEqual(u2.followers.count(), 0)
def test_follow_posts(self):
# create four users
u1 = User(username='john', email='john@john.com')
u2 = User(username='susan', email='susan@susan.com')
u3 = User(username='bob', email='bob@bob.com')
u4 = User(username='alice', email='alice@alice.com')
db.session.add_all([u1, u2, u3, u4])
now = datetime.utcnow()
p1 = Post(body='post from john', author=u1, timestamp=now+timedelta(seconds=1))
p2 = Post(body='post from susan', author=u2, timestamp=now+timedelta(seconds=2))
p3 = Post(body='post from bob', author=u3, timestamp=now+timedelta(seconds=3))
p4 = Post(body='post from alice', author=u4, timestamp=now+timedelta(seconds=4))
db.session.add_all([p1, p2, p3, p4])
db.session.commit()
u1.follow(u2)
u1.follow(u4)
u2.follow(u3)
u3.follow(u4)
db.session.commit()
f1 = u1.followed_posts().all()
f2 = u2.followed_posts().all()
f3 = u3.followed_posts().all()
f4 = u4.followed_posts().all()
self.assertEqual(f1, [p4, p2, p1])
self.assertEqual(f2, [p3, p2])
self.assertEqual(f3, [p4, p3])
self.assertEqual(f4, [p4])
if __name__ == '__main__':
unittest.main(verbosity=2)