From 40ea776f3e5c5b629798d48a9f0bf0279fc29859 Mon Sep 17 00:00:00 2001 From: stefanogoldoni Date: Fri, 28 May 2021 20:40:01 +0200 Subject: [PATCH] aggiunti nuovi test sugli alert --- nest_backend/test/test_4_alert.py | 108 +++++++++++++++++++++++++++++- 1 file changed, 107 insertions(+), 1 deletion(-) diff --git a/nest_backend/test/test_4_alert.py b/nest_backend/test/test_4_alert.py index 49a8877..0e393d3 100644 --- a/nest_backend/test/test_4_alert.py +++ b/nest_backend/test/test_4_alert.py @@ -199,7 +199,113 @@ class TestOneAlertOfARepository: # test PUT def test_put_alert_no_json(self, flask_client: Client, user_headers): - r = flask_client.patch(f'/api/v1/alert/2', headers=user_headers) + r = flask_client.put(f'/api/v1/alert/2', headers=user_headers) + assert r.status_code == 400 + assert r.json["result"] == "failure" + + def test_put_alert_wrong_evaluation_mode(self, flask_client: Client, user_headers): + r = flask_client.put(f'/api/v1/alert/2', headers=user_headers, + json={ + "conditions": [ + { + "content": "string", + "id": 0, + "type": 0 + } + ], + "evaluation_mode": 99, + "id": 0, + "limit": 0, + "name": "string", + "notifications": [ + { + "id": 0, + "ora": "2021-05-28T18:23:22.324Z", + "repository_id": 0 + } + ], + "repository_id": 0, + "window_size": 0 + }) + assert r.status_code == 400 + assert r.json["result"] == "failure" + + def test_put_alert_empty_conditions_type(self, flask_client: Client, user_headers): + r = flask_client.put(f'/api/v1/alert/2', headers=user_headers, + json={ + "conditions": [ + { + "content": "string", + "id": 0 + } + ], + "evaluation_mode": 0, + "id": 0, + "limit": 0, + "name": "string", + "notifications": [ + { + "id": 0, + "ora": "2021-05-28T18:23:22.324Z", + "repository_id": 0 + } + ], + "repository_id": 0, + "window_size": 0 + }) + assert r.status_code == 400 + assert r.json["result"] == "failure" + + def test_put_alert_wrong_conditions_type(self, flask_client: Client, user_headers): + r = flask_client.put(f'/api/v1/alert/2', headers=user_headers, + json={ + "conditions": [ + { + "content": "string", + "id": 0, + "type": 99 + } + ], + "evaluation_mode": 0, + "id": 0, + "limit": 0, + "name": "string", + "notifications": [ + { + "id": 0, + "ora": "2021-05-28T18:23:22.324Z", + "repository_id": 0 + } + ], + "repository_id": 0, + "window_size": 0 + }) + assert r.status_code == 400 + assert r.json["result"] == "failure" + + def test_put_alert_missing_conditions_content(self, flask_client: Client, user_headers): + r = flask_client.put(f'/api/v1/alert/2', headers=user_headers, + json={ + "conditions": [ + { + "id": 0, + "type": 99 + } + ], + "evaluation_mode": 0, + "id": 0, + "limit": 0, + "name": "string", + "notifications": [ + { + "id": 0, + "ora": "2021-05-28T18:23:22.324Z", + "repository_id": 0 + } + ], + "repository_id": 0, + "window_size": 0 + }) assert r.status_code == 400 assert r.json["result"] == "failure"