-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_user_model.py
130 lines (92 loc) · 3.39 KB
/
test_user_model.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
"""User model tests."""
# run these tests like:
#
# python -m unittest test_user_model.py
import os
from unittest import TestCase
from models import db, User, Message, Follows, bcrypt
# BEFORE we import our app, let's set an environmental variable
# to use a different database for tests (we need to do this
# before we import our app, since that will have already
# connected to the database
os.environ['DATABASE_URL'] = "postgresql:///warbler-test"
# Now we can import app
from app import app
# Create our tables (we do this here, so we only create the tables
# once for all tests --- in each test, we'll delete the data
# and create fresh new clean test data
db.create_all()
class UserModelTestCase(TestCase):
"""Test views for messages."""
def setUp(self):
"""Create test client, add sample data."""
User.query.delete()
Message.query.delete()
Follows.query.delete()
self.client = app.test_client()
u1 = User(
email="test123@test.com",
username="testuser1",
password="HASHED_PASSWORD"
)
u2 = User(
email="test2@test.com",
username="testuser2",
password="HASHED_PASSWORD"
)
db.session.add(u1)
db.session.add(u2)
db.session.commit()
# m1 = Message(
# text="test message",
# user_id = 1
# )
# m2 = Message(
# text="test message2",
# user_id = 2
# )
# db.session.add(m1)
# db.session.add(m2)
# db.session.commit()
def tearDown(self):
db.session.rollback()
def test_user_model(self):
"""Does basic model work?"""
u = User(
email="test@test.com",
username="testuser",
password="HASHED_PASSWORD"
)
db.session.add(u)
db.session.commit()
# User should have no messages & no followers
self.assertEqual(len(u.messages), 0)
self.assertEqual(len(u.followers), 0)
#different attributes should be as expected
self.assertEqual(u.email, "test@test.com")
self.assertEqual(u.username, "testuser")
self.assertEqual(u.password, "HASHED_PASSWORD")
def test_user_following(self):
'''Does follow and unfollow work'''
users = User.query.all()
users[0].followers.append(users[1])
self.assertIn(users[1], users[0].followers)
users[0].followers.remove(users[1])
self.assertNotIn(users[1], users[0].followers)
def test_user_signup(self):
'''Does the signup function work?'''
user = User.signup(username="testuser123",
password="password",
email="testemail@email.com",
image_url="image.jpg")
new_user = User.query.filter(User.username=="testuser123").one()
self.assertEqual(user, new_user)
def test_user_authenticate(self):
'''Does authenticate return user when password is correct and False when incorrect'''
user = User.signup(username="testuser123",
password="password",
email="testemail@email.com",
image_url="image.jpg")
authenticated = User.authenticate(username="testuser123", password="password")
self.assertEqual(authenticated, user)
self.assertFalse(User.authenticate(username="testuser123", password="password2121212"))