-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_state.py
executable file
·192 lines (155 loc) · 5.51 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
190
191
192
#!/usr/bin/python3
"""
Unittests for models/state.py.
Unittest classes:
TestStateInstantiation
TestStateSave
TestStateToDict
"""
import os
import models
import unittest
from datetime import datetime
from time import sleep
from models.state import State
class TestState_instantiation(unittest.TestCase):
""" Testing the State class instantiation """
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_attr(self):
state = State()
self.assertEqual(str, type(State.name))
self.assertIn("name", dir(state))
self.assertNotIn("name", state.__dict__)
def test_two_states_unique_ids(self):
state = State()
state1 = State()
self.assertNotEqual(state.id, state1.id)
def test_two_states_different_created_at(self):
state = State()
sleep(0.05)
state1 = State()
self.assertLess(state.created_at, state1.created_at)
def test_two_states_different_updated_at(self):
state = State()
sleep(0.05)
state1 = State()
self.assertLess(state.updated_at, state1.updated_at)
def test_str_representation(self):
dt = datetime.today()
dt_repr = repr(dt)
state = State()
state.id = "123456"
state.created_at = state.updated_at = dt
ststr = state.__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):
state = State(None)
self.assertNotIn(None, state.__dict__.values())
def test_instantiation_with_kwargs(self):
dt = datetime.today()
dt_iso = dt.isoformat()
state = State(id="345", created_at=dt_iso, updated_at=dt_iso)
self.assertEqual(state.id, "345")
self.assertEqual(state.created_at, dt)
self.assertEqual(state.updated_at, dt)
def test_instantiation_with_None_kwargs(self):
with self.assertRaises(TypeError):
State(id=None, created_at=None, updated_at=None)
class TestStateSave(unittest.TestCase):
""" Testing the State class save """
@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):
state = State()
sleep(0.05)
first_updated_at = state.updated_at
state.save()
self.assertLess(first_updated_at, state.updated_at)
def test_two_saves(self):
state = State()
sleep(0.05)
first_updated_at = state.updated_at
state.save()
second_updated_at = state.updated_at
self.assertLess(first_updated_at, second_updated_at)
sleep(0.05)
state.save()
self.assertLess(second_updated_at, state.updated_at)
def test_save_with_arg(self):
state = State()
with self.assertRaises(TypeError):
state.save(None)
def test_save_updates_file(self):
state = State()
state.save()
stid = "State." + state.id
with open("file.json", "r") as f:
self.assertIn(stid, f.read())
class TestStateToDict(unittest.TestCase):
""" Testing the State class to_dict """
def test_to_dict_type(self):
self.assertTrue(dict, type(State().to_dict()))
def test_to_dict_contains_correct_keys(self):
state = State()
self.assertIn("id", state.to_dict())
self.assertIn("created_at", state.to_dict())
self.assertIn("updated_at", state.to_dict())
self.assertIn("__class__", state.to_dict())
def test_to_dict_contains_added_attr(self):
state = State()
state.middle_name = "Holberton"
state.my_number = 98
self.assertEqual("Holberton", state.middle_name)
self.assertIn("my_number", state.to_dict())
def test_to_dict_datetime_attr_are_strings(self):
state = State()
st_dict = state.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()
state = State()
state.id = "123456"
state.created_at = state.updated_at = dt
tdict = {
'id': '123456',
'__class__': 'State',
'created_at': dt.isoformat(),
'updated_at': dt.isoformat(),
}
self.assertDictEqual(state.to_dict(), tdict)
def test_contrast_to_dict_dunder_dict(self):
state = State()
self.assertNotEqual(state.to_dict(), state.__dict__)
def test_to_dict_with_arg(self):
state = State()
with self.assertRaises(TypeError):
state.to_dict(None)
if __name__ == "__main__":
unittest.main()