-
Notifications
You must be signed in to change notification settings - Fork 8
/
test_state.py
executable file
·189 lines (154 loc) · 5.42 KB
/
test_state.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#!/usr/bin/python3
"""Defines unittests for models/state.py.
Unittest classes:
TestState_instantiation
TestState_save
TestState_to_dict
"""
import os
import models
import unittest
from datetime import datetime
from time import sleep
from models.state import State
class TestState_instantiation(unittest.TestCase):
"""Unittests for testing instantiation of the State class."""
def test_no_args_instantiates(self):
self.assertEqual(State, type(State()))
def test_new_instance_stored_in_objects(self):
self.assertIn(State(), models.storage.all().values())
def test_id_is_public_str(self):
self.assertEqual(str, type(State().id))
def test_created_at_is_public_datetime(self):
self.assertEqual(datetime, type(State().created_at))
def test_updated_at_is_public_datetime(self):
self.assertEqual(datetime, type(State().updated_at))
def test_name_is_public_class_attribute(self):
st = State()
self.assertEqual(str, type(State.name))
self.assertIn("name", dir(st))
self.assertNotIn("name", st.__dict__)
def test_two_states_unique_ids(self):
st1 = State()
st2 = State()
self.assertNotEqual(st1.id, st2.id)
def test_two_states_different_created_at(self):
st1 = State()
sleep(0.05)
st2 = State()
self.assertLess(st1.created_at, st2.created_at)
def test_two_states_different_updated_at(self):
st1 = State()
sleep(0.05)
st2 = State()
self.assertLess(st1.updated_at, st2.updated_at)
def test_str_representation(self):
dt = datetime.today()
dt_repr = repr(dt)
st = State()
st.id = "123456"
st.created_at = st.updated_at = dt
ststr = st.__str__()
self.assertIn("[State] (123456)", ststr)
self.assertIn("'id': '123456'", ststr)
self.assertIn("'created_at': " + dt_repr, ststr)
self.assertIn("'updated_at': " + dt_repr, ststr)
def test_args_unused(self):
st = State(None)
self.assertNotIn(None, st.__dict__.values())
def test_instantiation_with_kwargs(self):
dt = datetime.today()
dt_iso = dt.isoformat()
st = State(id="345", created_at=dt_iso, updated_at=dt_iso)
self.assertEqual(st.id, "345")
self.assertEqual(st.created_at, dt)
self.assertEqual(st.updated_at, dt)
def test_instantiation_with_None_kwargs(self):
with self.assertRaises(TypeError):
State(id=None, created_at=None, updated_at=None)
class TestState_save(unittest.TestCase):
"""Unittests for testing save method of the State class."""
@classmethod
def setUp(self):
try:
os.rename("file.json", "tmp")
except IOError:
pass
def tearDown(self):
try:
os.remove("file.json")
except IOError:
pass
try:
os.rename("tmp", "file.json")
except IOError:
pass
def test_one_save(self):
st = State()
sleep(0.05)
first_updated_at = st.updated_at
st.save()
self.assertLess(first_updated_at, st.updated_at)
def test_two_saves(self):
st = State()
sleep(0.05)
first_updated_at = st.updated_at
st.save()
second_updated_at = st.updated_at
self.assertLess(first_updated_at, second_updated_at)
sleep(0.05)
st.save()
self.assertLess(second_updated_at, st.updated_at)
def test_save_with_arg(self):
st = State()
with self.assertRaises(TypeError):
st.save(None)
def test_save_updates_file(self):
st = State()
st.save()
stid = "State." + st.id
with open("file.json", "r") as f:
self.assertIn(stid, f.read())
class TestState_to_dict(unittest.TestCase):
"""Unittests for testing to_dict method of the State class."""
def test_to_dict_type(self):
self.assertTrue(dict, type(State().to_dict()))
def test_to_dict_contains_correct_keys(self):
st = State()
self.assertIn("id", st.to_dict())
self.assertIn("created_at", st.to_dict())
self.assertIn("updated_at", st.to_dict())
self.assertIn("__class__", st.to_dict())
def test_to_dict_contains_added_attributes(self):
st = State()
st.middle_name = "Holberton"
st.my_number = 98
self.assertEqual("Holberton", st.middle_name)
self.assertIn("my_number", st.to_dict())
def test_to_dict_datetime_attributes_are_strs(self):
st = State()
st_dict = st.to_dict()
self.assertEqual(str, type(st_dict["id"]))
self.assertEqual(str, type(st_dict["created_at"]))
self.assertEqual(str, type(st_dict["updated_at"]))
def test_to_dict_output(self):
dt = datetime.today()
st = State()
st.id = "123456"
st.created_at = st.updated_at = dt
tdict = {
'id': '123456',
'__class__': 'State',
'created_at': dt.isoformat(),
'updated_at': dt.isoformat(),
}
self.assertDictEqual(st.to_dict(), tdict)
def test_contrast_to_dict_dunder_dict(self):
st = State()
self.assertNotEqual(st.to_dict(), st.__dict__)
def test_to_dict_with_arg(self):
st = State()
with self.assertRaises(TypeError):
st.to_dict(None)
if __name__ == "__main__":
unittest.main()