1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00

black formatted

This commit is contained in:
Matt Griswold
2019-12-05 16:57:52 +00:00
parent a53cadb167
commit cf56acbfc4
106 changed files with 7894 additions and 5626 deletions

View File

@@ -11,15 +11,16 @@ class TestAPIClientCompat(ClientCase):
@classmethod
def setUpTestData(cls):
super(TestAPIClientCompat, cls).setUpTestData()
cls.superuser = User.objects.create_user("su", "su@localhost", "su",
is_superuser=True)
cls.org = REFTAG_MAP["org"].objects.create(name="Test Org",
status="ok")
cls.superuser = User.objects.create_user(
"su", "su@localhost", "su", is_superuser=True
)
cls.org = REFTAG_MAP["org"].objects.create(name="Test Org", status="ok")
@property
def expected_compat_err_str(self):
return "Your client version is incompatible with server version of the api, please install peeringdb>={},<={} {}>={},<={}".format(
"0.6", "0.6.5", "django_peeringdb", "0.6", "0.6.5")
"0.6", "0.6.5", "django_peeringdb", "0.6", "0.6.5"
)
def _compat(self, ua_c, ua_be, error):
if ua_c and ua_be:
@@ -37,11 +38,9 @@ class TestAPIClientCompat(ClientCase):
else:
assert r.status_code == 200
r = self.client.post("/api/net", {
"org_id": 1,
"name": "Test net",
"asn": 9000000
}, format="json")
r = self.client.post(
"/api/net", {"org_id": 1, "name": "Test net", "asn": 9000000}, format="json"
)
content = json.loads(r.content)
if error:
assert r.status_code == 400
@@ -52,8 +51,7 @@ class TestAPIClientCompat(ClientCase):
net = content["data"][0]
del net["org"]
r = self.client.put("/api/net/{}".format(net["id"]), net,
format="json")
r = self.client.put("/api/net/{}".format(net["id"]), net, format="json")
content = json.loads(r.content)
if error:
assert r.status_code == 400
@@ -61,8 +59,7 @@ class TestAPIClientCompat(ClientCase):
else:
assert r.status_code == 200
r = self.client.delete("/api/net/{}".format(net["id"]), {},
format="json")
r = self.client.delete("/api/net/{}".format(net["id"]), {}, format="json")
if error:
content = json.loads(r.content)
assert r.status_code == 400