summaryrefslogtreecommitdiff
path: root/web-server/opendc/api
diff options
context:
space:
mode:
authorGeorgios Andreadis <info@gandreadis.com>2020-07-06 08:41:29 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-08-24 19:47:24 +0200
commite254f4cc4fa6e2446fd4689cc7cabf3abbc24af6 (patch)
tree3e35b90fa95473b74327ea01e39009f3f20dd198 /web-server/opendc/api
parent045f224d44bc8aa29fbda8b31c061d4427a59b36 (diff)
Fix failing tests
Diffstat (limited to 'web-server/opendc/api')
-rw-r--r--web-server/opendc/api/v2/simulations/simulationId/topologies/test_endpoint.py5
-rw-r--r--web-server/opendc/api/v2/topologies/topologyId/test_endpoint.py2
2 files changed, 3 insertions, 4 deletions
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