-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
124 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# IRIS Source Code | ||
# Copyright (C) 2023 - DFIR-IRIS | ||
# [email protected] | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public | ||
# License as published by the Free Software Foundation; either | ||
# version 3 of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with this program; if not, write to the Free Software Foundation, | ||
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
|
||
from unittest import TestCase | ||
from iris import Iris | ||
|
||
|
||
class TestsRestAlerts(TestCase): | ||
|
||
def setUp(self) -> None: | ||
self._subject = Iris() | ||
|
||
def tearDown(self): | ||
self._subject.clear_database() | ||
|
||
def test_create_alert_should_not_fail(self): | ||
body = { | ||
'alert_title': 'title', | ||
'alert_severity_id': 4, | ||
'alert_status_id': 3, | ||
'alert_customer_id': 1 | ||
} | ||
response = self._subject.create('/alerts/add', body) | ||
self.assertEqual(200, response.status_code) | ||
|
||
def test_alerts_filter_with_alerts_filter_should_not_fail(self): | ||
response = self._subject.get('/alerts/filter', query_parameters={'alert_assets': 'some assert name'}) | ||
self.assertEqual(200, response.status_code) | ||
|
||
def test_alerts_filter_with_iocs_filter_should_not_fail(self): | ||
response = self._subject.get('/alerts/filter', query_parameters={'alert_iocs': 'some ioc value'}) | ||
self.assertEqual(200, response.status_code) | ||
|
||
def test_merge_alert_into_a_case_should_not_fail(self): | ||
case_identifier = self._subject.create_dummy_case() | ||
body = { | ||
'alert_title': 'title', | ||
'alert_severity_id': 4, | ||
'alert_status_id': 3, | ||
'alert_customer_id': 1 | ||
} | ||
response = self._subject.create('/alerts/add', body).json() | ||
alert_identifier = response['data']['alert_id'] | ||
body = { | ||
'target_case_id': case_identifier, | ||
'iocs_import_list': [], | ||
'assets_import_list': [] | ||
} | ||
response = self._subject.create(f'/alerts/merge/{alert_identifier}', body) | ||
# TODO should be 201 | ||
self.assertEqual(200, response.status_code) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters