From e254f4cc4fa6e2446fd4689cc7cabf3abbc24af6 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Mon, 6 Jul 2020 08:41:29 +0200 Subject: Fix failing tests --- .../api/v2/simulations/simulationId/topologies/test_endpoint.py | 5 ++--- web-server/opendc/api/v2/topologies/topologyId/test_endpoint.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'web-server/opendc') diff --git a/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py b/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py index 74a1e398..1314be13 100644 --- a/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py +++ b/web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py @@ -25,9 +25,8 @@ def test_add_topology(client, mocker): 'topologyIds': [] }) mocker.patch.object(DB, 'update', return_value={}) - res = client.post('/api/v2/simulations/1/topologies', json={'topology': {'name': 'test simulation'}}) - assert 'datetimeCreated' in res.json['content'] - assert 'datetimeLastEdited' in res.json['content'] + res = client.post('/api/v2/simulations/1/topologies', json={'topology': {'name': 'test simulation', 'rooms': []}}) + assert 'rooms' in res.json['content'] assert '200' in res.status diff --git a/web-server/opendc/api/v2/topologies/topologyId/test_endpoint.py b/web-server/opendc/api/v2/topologies/topologyId/test_endpoint.py index fa88c497..ffdce74e 100644 --- a/web-server/opendc/api/v2/topologies/topologyId/test_endpoint.py +++ b/web-server/opendc/api/v2/topologies/topologyId/test_endpoint.py @@ -40,7 +40,7 @@ def test_get_topology_not_authorized(client, mocker): def test_get_topology_no_authorizations(client, mocker): - mocker.patch.object(DB, 'fetch_one', return_value={'authorizations': []}) + mocker.patch.object(DB, 'fetch_one', return_value={'simulationId': '1', 'authorizations': []}) res = client.get('/api/v2/topologies/1') assert '403' in res.status -- cgit v1.2.3