mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix tests, warning
This commit is contained in:
parent
372825c271
commit
7a4666783e
@ -209,6 +209,24 @@ class TestSystemStatus(APITestCase):
|
|||||||
self.assertEqual(response.data["tasks"]["classifier_status"], "OK")
|
self.assertEqual(response.data["tasks"]["classifier_status"], "OK")
|
||||||
self.assertIsNone(response.data["tasks"]["classifier_error"])
|
self.assertIsNone(response.data["tasks"]["classifier_error"])
|
||||||
|
|
||||||
|
def test_system_status_classifier_warning(self):
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- No classifier task is found
|
||||||
|
WHEN:
|
||||||
|
- The user requests the system status
|
||||||
|
THEN:
|
||||||
|
- The response contains a WARNING classifier status
|
||||||
|
"""
|
||||||
|
self.client.force_login(self.user)
|
||||||
|
response = self.client.get(self.ENDPOINT)
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
self.assertEqual(
|
||||||
|
response.data["tasks"]["classifier_status"],
|
||||||
|
"WARNING",
|
||||||
|
)
|
||||||
|
self.assertIsNone(response.data["tasks"]["classifier_error"])
|
||||||
|
|
||||||
def test_system_status_classifier_error(self):
|
def test_system_status_classifier_error(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
@ -253,6 +271,24 @@ class TestSystemStatus(APITestCase):
|
|||||||
self.assertEqual(response.data["tasks"]["sanity_check_status"], "OK")
|
self.assertEqual(response.data["tasks"]["sanity_check_status"], "OK")
|
||||||
self.assertIsNone(response.data["tasks"]["sanity_check_error"])
|
self.assertIsNone(response.data["tasks"]["sanity_check_error"])
|
||||||
|
|
||||||
|
def test_system_status_sanity_check_warning(self):
|
||||||
|
"""
|
||||||
|
GIVEN:
|
||||||
|
- No sanity check task is found
|
||||||
|
WHEN:
|
||||||
|
- The user requests the system status
|
||||||
|
THEN:
|
||||||
|
- The response contains a WARNING sanity check status
|
||||||
|
"""
|
||||||
|
self.client.force_login(self.user)
|
||||||
|
response = self.client.get(self.ENDPOINT)
|
||||||
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
self.assertEqual(
|
||||||
|
response.data["tasks"]["sanity_check_status"],
|
||||||
|
"WARNING",
|
||||||
|
)
|
||||||
|
self.assertIsNone(response.data["tasks"]["sanity_check_error"])
|
||||||
|
|
||||||
def test_system_status_sanity_check_error(self):
|
def test_system_status_sanity_check_error(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
|
@ -2666,15 +2666,12 @@ class SystemStatusView(PassUserMixin):
|
|||||||
.order_by("-date_done")
|
.order_by("-date_done")
|
||||||
.first()
|
.first()
|
||||||
)
|
)
|
||||||
|
classifier_status = "OK"
|
||||||
classifier_status = (
|
|
||||||
"OK"
|
|
||||||
if last_trained_task is not None
|
|
||||||
and last_trained_task.status == states.SUCCESS
|
|
||||||
else "ERROR"
|
|
||||||
)
|
|
||||||
classifier_error = None
|
classifier_error = None
|
||||||
if last_trained_task and last_trained_task.status == states.FAILURE:
|
if last_trained_task is None:
|
||||||
|
classifier_status = "WARNING"
|
||||||
|
elif last_trained_task and last_trained_task.status == states.FAILURE:
|
||||||
|
classifier_status = "ERROR"
|
||||||
classifier_error = last_trained_task.result
|
classifier_error = last_trained_task.result
|
||||||
classifier_last_trained = (
|
classifier_last_trained = (
|
||||||
last_trained_task.date_done if last_trained_task else None
|
last_trained_task.date_done if last_trained_task else None
|
||||||
@ -2687,15 +2684,12 @@ class SystemStatusView(PassUserMixin):
|
|||||||
.order_by("-date_done")
|
.order_by("-date_done")
|
||||||
.first()
|
.first()
|
||||||
)
|
)
|
||||||
|
sanity_check_status = "OK"
|
||||||
sanity_check_status = (
|
|
||||||
"OK"
|
|
||||||
if last_sanity_check is not None
|
|
||||||
and last_sanity_check.status == states.SUCCESS
|
|
||||||
else "ERROR"
|
|
||||||
)
|
|
||||||
sanity_check_error = None
|
sanity_check_error = None
|
||||||
if last_sanity_check and last_sanity_check.status == states.FAILURE:
|
if last_sanity_check is None:
|
||||||
|
sanity_check_status = "WARNING"
|
||||||
|
elif last_sanity_check and last_sanity_check.status == states.FAILURE:
|
||||||
|
sanity_check_status = "ERROR"
|
||||||
sanity_check_error = last_sanity_check.result
|
sanity_check_error = last_sanity_check.result
|
||||||
sanity_check_last_run = (
|
sanity_check_last_run = (
|
||||||
last_sanity_check.date_done if last_sanity_check else None
|
last_sanity_check.date_done if last_sanity_check else None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user