Skip to content

Commit c9845c1

Browse files
committed
Fixing tests after rebasing
1 parent fc91e43 commit c9845c1

File tree

4 files changed

+7
-299
lines changed

4 files changed

+7
-299
lines changed

cosmo/clients/netbox.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import json
21
import time
3-
from multiprocessing.pool import Pool
4-
from string import Template
5-
from urllib.parse import urlencode
62

73
import requests
84

@@ -15,12 +11,12 @@ def __init__(self, url, token):
1511
self.url = url
1612
self.token = token
1713

18-
v = self.query_version()
14+
self.version = self.query_version()
1915

20-
if v.startswith("wc_3."):
16+
if self.version.startswith("wc_3."):
2117
print("[INFO] Using version 3.x strategy...")
2218
self.child_client = NetboxV3Strategy(url, token)
23-
elif v.startswith("4."):
19+
elif self.version.startswith("4."):
2420
print("[INFO] Using version 4.x strategy...")
2521
self.child_client = NetboxV4Strategy(url, token)
2622
else:

cosmo/netboxclient.py

-290
This file was deleted.

cosmo/tests/test_netboxclient.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22

33
import cosmo.tests.utils as utils
4-
from cosmo.netboxclient import NetboxClient
4+
from cosmo.clients.netbox import NetboxClient
55

66
TEST_URL = 'https://netbox.example.com'
77
TEST_TOKEN = 'token123'
@@ -21,6 +21,7 @@ def test_case_get_data(mocker):
2121
"device_list": [],
2222
"l2vpn_list": [],
2323
"vrf_list": [],
24+
"loopbacks": {},
2425
}
2526
utils.RequestResponseMock.patchNetboxClient(mocker)
2627

cosmo/tests/utils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def patchPostFunc(url, json, **kwargs):
5252
request_lists = [
5353
"device_list",
5454
"vrf_list",
55-
"l2vpn_list"
55+
"l2vpn_list",
56+
"interface_list"
5657
]
5758
retVal = dict()
5859

0 commit comments

Comments
 (0)