-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathtest_circuits.py
109 lines (89 loc) · 3.29 KB
/
test_circuits.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
import unittest
from unittest.mock import patch
import pynetbox
import pynetbox.models.circuits
from .util import Response
api = pynetbox.api(
"http://localhost:8000",
)
nb = api.circuits
HEADERS = {"accept": "application/json"}
class Generic:
class Tests(unittest.TestCase):
name = ""
ret = pynetbox.core.response.Record
app = "circuits"
def test_get_all(self):
with patch(
"requests.sessions.Session.get",
return_value=Response(fixture="{}/{}.json".format(self.app, self.name)),
) as mock:
ret = list(getattr(nb, self.name).all())
self.assertTrue(ret)
self.assertTrue(isinstance(ret[0], self.ret))
mock.assert_called_with(
"http://localhost:8000/api/{}/{}/".format(
self.app, self.name.replace("_", "-")
),
params={"limit": 0},
json=None,
headers=HEADERS,
)
def test_filter(self):
with patch(
"requests.sessions.Session.get",
return_value=Response(fixture="{}/{}.json".format(self.app, self.name)),
) as mock:
ret = list(getattr(nb, self.name).filter(name="test"))
self.assertTrue(ret)
self.assertTrue(isinstance(ret[0], self.ret))
mock.assert_called_with(
"http://localhost:8000/api/{}/{}/".format(
self.app, self.name.replace("_", "-")
),
params={"name": "test", "limit": 0},
json=None,
headers=HEADERS,
)
def test_get(self):
with patch(
"requests.sessions.Session.get",
return_value=Response(
fixture="{}/{}.json".format(self.app, self.name[:-1])
),
) as mock:
ret = getattr(nb, self.name).get(1)
self.assertTrue(ret)
self.assertTrue(isinstance(ret, self.ret))
mock.assert_called_with(
"http://localhost:8000/api/{}/{}/1/".format(
self.app, self.name.replace("_", "-")
),
params={},
json=None,
headers=HEADERS,
)
class CircuitsTestCase(Generic.Tests):
name = "circuits"
ret = pynetbox.models.circuits.Circuits
@patch(
"requests.sessions.Session.get",
return_value=Response(fixture="circuits/circuit.json"),
)
def test_repr(self, _):
test = nb.circuits.get(1)
self.assertEqual(str(test), "123456")
class ProviderTestCase(Generic.Tests):
name = "providers"
class CircuitTypeTestCase(Generic.Tests):
name = "circuit_types"
class CircuitTerminationsTestCase(Generic.Tests):
name = "circuit_terminations"
ret = pynetbox.models.circuits.CircuitTerminations
@patch(
"requests.sessions.Session.get",
return_value=Response(fixture="circuits/circuit_termination.json"),
)
def test_repr(self, _):
test = nb.circuit_terminations.get(1)
self.assertEqual(str(test), "123456")