-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_state.py
executable file
·105 lines (91 loc) · 3.98 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
#!/usr/bin/python3
"""
Contains the TestStateDocs classes
"""
from datetime import datetime
import inspect
import models
from models import state
from models.base_model import BaseModel
import pep8
import unittest
State = state.State
class TestStateDocs(unittest.TestCase):
"""Tests to check the documentation and style of State class"""
@classmethod
def setUpClass(cls):
"""Set up for the doc tests"""
cls.state_f = inspect.getmembers(State, inspect.isfunction)
def test_pep8_conformance_state(self):
"""Test that models/state.py conforms to PEP8."""
pep8s = pep8.StyleGuide(quiet=True)
result = pep8s.check_files(['models/state.py'])
self.assertEqual(result.total_errors, 0,
"Found code style errors (and warnings).")
def test_pep8_conformance_test_state(self):
"""Test that tests/test_models/test_state.py conforms to PEP8."""
pep8s = pep8.StyleGuide(quiet=True)
result = pep8s.check_files(['tests/test_models/test_state.py'])
self.assertEqual(result.total_errors, 0,
"Found code style errors (and warnings).")
def test_state_module_docstring(self):
"""Test for the state.py module docstring"""
self.assertIsNot(state.__doc__, None,
"state.py needs a docstring")
self.assertTrue(len(state.__doc__) >= 1,
"state.py needs a docstring")
def test_state_class_docstring(self):
"""Test for the State class docstring"""
self.assertIsNot(State.__doc__, None,
"State class needs a docstring")
self.assertTrue(len(State.__doc__) >= 1,
"State class needs a docstring")
def test_state_func_docstrings(self):
"""Test for the presence of docstrings in State methods"""
for func in self.state_f:
self.assertIsNot(func[1].__doc__, None,
"{:s} method needs a docstring".format(func[0]))
self.assertTrue(len(func[1].__doc__) >= 1,
"{:s} method needs a docstring".format(func[0]))
class TestState(unittest.TestCase):
"""Test the State class"""
def test_is_subclass(self):
"""Test that State is a subclass of BaseModel"""
state = State()
self.assertIsInstance(state, BaseModel)
self.assertTrue(hasattr(state, "id"))
self.assertTrue(hasattr(state, "created_at"))
self.assertTrue(hasattr(state, "updated_at"))
def test_name_attr(self):
"""Test that State has attribute name, and it's as an empty string"""
state = State()
self.assertTrue(hasattr(state, "name"))
if models.storage_t == 'db':
self.assertEqual(state.name, None)
else:
self.assertEqual(state.name, "")
def test_to_dict_creates_dict(self):
"""test to_dict method creates a dictionary with proper attrs"""
s = State()
new_d = s.to_dict()
self.assertEqual(type(new_d), dict)
self.assertFalse("_sa_instance_state" in new_d)
for attr in s.__dict__:
if attr is not "_sa_instance_state":
self.assertTrue(attr in new_d)
self.assertTrue("__class__" in new_d)
def test_to_dict_values(self):
"""test that values in dict returned from to_dict are correct"""
t_format = "%Y-%m-%dT%H:%M:%S.%f"
s = State()
new_d = s.to_dict()
self.assertEqual(new_d["__class__"], "State")
self.assertEqual(type(new_d["created_at"]), str)
self.assertEqual(type(new_d["updated_at"]), str)
self.assertEqual(new_d["created_at"], s.created_at.strftime(t_format))
self.assertEqual(new_d["updated_at"], s.updated_at.strftime(t_format))
def test_str(self):
"""test that the str method has the correct output"""
state = State()
string = "[State] ({}) {}".format(state.id, state.__dict__)
self.assertEqual(string, str(state))