| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- # IRIS Source Code
- # Copyright (C) 2023 - DFIR-IRIS
- # contact@dfir-iris.org
- #
- # 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
- from uuid import uuid4
- class TestsRestAlerts(TestCase):
- def setUp(self) -> None:
- self._subject = Iris()
- def tearDown(self):
- self._subject.clear_database()
- response = self._subject.get('api/v2/alerts').json()
- for alert in response['data']:
- identifier = alert['alert_id']
- self._subject.create(f'/alerts/delete/{identifier}', {})
- 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_with_filter_alerts_assets_should_not_fail(self):
- response = self._subject.get('/api/v2/alerts', query_parameters={'alert_assets': 'some assert name'})
- self.assertEqual(200, response.status_code)
- def test_alerts_filter_with_filter_alert_iocs_should_not_fail(self):
- response = self._subject.get('api/v2/alerts', query_parameters={'alert_iocs': 'some ioc value'})
- self.assertEqual(200, response.status_code)
- def test_get_alerts_filter_should_show_newly_created_alert_for_administrator(self):
- alert_title = f'title{uuid4()}'
- body = {
- 'alert_title': alert_title,
- 'alert_severity_id': 4,
- 'alert_status_id': 3,
- 'alert_customer_id': 1
- }
- self._subject.create('/alerts/add', body)
- response = self._subject.get('/api/v2/alerts', query_parameters={'alert_title': alert_title}).json()
- self.assertEqual(1, response['total'])
- def test_get_alerts_should_return_field_data(self):
- response = self._subject.get('/api/v2/alerts').json()
- self.assertEqual([], response['data'])
- 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)
|