Skip to content
Snippets Groups Projects
Commit f9d9d9de authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Add model to the /network/interfaces endpoint

This is not super clean. The model and device_type belong to the host.
This is for easy access from the API.
But it would be better to have a "expand=true" query parameter and return the
host as a dict.

JIRA INFRA-414
parent 96094b9e
No related branches found
No related tags found
No related merge requests found
...@@ -958,8 +958,10 @@ class Interface(CreatedMixin, db.Model): ...@@ -958,8 +958,10 @@ class Interface(CreatedMixin, db.Model):
) )
if self.host: if self.host:
d["device_type"] = str(self.host.device_type) d["device_type"] = str(self.host.device_type)
d["model"] = utils.format_field(self.host.model)
else: else:
d["device_type"] = None d["device_type"] = None
d["model"] = None
return d return d
......
...@@ -914,6 +914,17 @@ def test_get_interfaces_by_domain( ...@@ -914,6 +914,17 @@ def test_get_interfaces_by_domain(
check_input_is_subset_of_response(response, (interface3.to_dict(),)) check_input_is_subset_of_response(response, (interface3.to_dict(),))
def test_get_interfaces_with_model(
client, model_factory, item_factory, host_factory, interface_factory, readonly_token
):
host1 = host_factory()
model1 = model_factory(name="EX3400")
item_factory(model=model1, host_id=host1.id)
interface_factory(host_id=host1.id)
response = get(client, f"{API_URL}/network/interfaces", token=readonly_token)
assert response.json[0]["model"] == "EX3400"
def test_create_interface(client, network_factory, user_token): def test_create_interface(client, network_factory, user_token):
network = network_factory( network = network_factory(
address="192.168.1.0/24", first_ip="192.168.1.10", last_ip="192.168.1.250" address="192.168.1.0/24", first_ip="192.168.1.10", last_ip="192.168.1.250"
...@@ -950,6 +961,7 @@ def test_create_interface(client, network_factory, user_token): ...@@ -950,6 +961,7 @@ def test_create_interface(client, network_factory, user_token):
"domain", "domain",
"host", "host",
"device_type", "device_type",
"model",
"cnames", "cnames",
"tags", "tags",
"created_at", "created_at",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment