-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test cases for handlers: Evaluation/Common/Base (#773)
- Loading branch information
1 parent
ecb04d7
commit c212b0a
Showing
3 changed files
with
450 additions
and
0 deletions.
There are no files selected for viewing
108 changes: 108 additions & 0 deletions
108
tests/unitary/with_extras/aqua/test_evaluation_handler.py
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,108 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*-- | ||
# Copyright (c) 2024 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/ | ||
|
||
import unittest | ||
from unittest.mock import MagicMock, patch | ||
|
||
from notebook.base.handlers import IPythonHandler | ||
from parameterized import parameterized | ||
|
||
from ads.aqua.evaluation import AquaEvaluationApp, CreateAquaEvaluationDetails | ||
from ads.aqua.extension.base_handler import Errors | ||
from ads.aqua.extension.evaluation_handler import AquaEvaluationHandler | ||
from tests.unitary.with_extras.aqua.utils import HandlerTestDataset as TestDataset | ||
|
||
|
||
class TestEvaluationHandler(unittest.TestCase): | ||
"""Contains unittest for Evaluation handler.""" | ||
|
||
@patch.object(IPythonHandler, "__init__") | ||
def setUp(self, ipython_init_mock) -> None: | ||
ipython_init_mock.return_value = None | ||
self.test_instance = AquaEvaluationHandler(MagicMock(), MagicMock()) | ||
self.test_instance.finish = MagicMock() | ||
|
||
@patch.object(AquaEvaluationApp, "delete") | ||
def test_delete(self, mock_delete): | ||
"""Tests DELETE method.""" | ||
self.test_instance.delete(TestDataset.MOCK_OCID) | ||
|
||
self.test_instance.finish.assert_called_with(mock_delete.return_value) | ||
mock_delete.assert_called_with(TestDataset.MOCK_OCID) | ||
|
||
@patch.object(AquaEvaluationApp, "cancel") | ||
def test_put(self, mock_cancel): | ||
"""Tests PUT method.""" | ||
arg = TestDataset().mock_url("status") | ||
self.test_instance.put(arg) | ||
|
||
self.test_instance.finish.assert_called_with(mock_cancel.return_value) | ||
mock_cancel.assert_called_with(TestDataset.MOCK_OCID) | ||
|
||
@patch.object(AquaEvaluationApp, "create") | ||
def test_post(self, mock_create): | ||
"""Tests POST method.""" | ||
self.test_instance.get_json_body = MagicMock( | ||
return_value=TestDataset.mock_valid_input | ||
) | ||
|
||
self.test_instance.post() | ||
|
||
self.test_instance.finish.assert_called_with(mock_create.return_value) | ||
mock_create.assert_called_with( | ||
create_aqua_evaluation_details=( | ||
CreateAquaEvaluationDetails(**TestDataset.mock_valid_input) | ||
) | ||
) | ||
|
||
@parameterized.expand( | ||
[ | ||
( | ||
dict(return_value=TestDataset.mock_invalid_input), | ||
400, | ||
"Missing required parameter:", | ||
), | ||
(dict(side_effect=Exception()), 400, Errors.INVALID_INPUT_DATA_FORMAT), | ||
(dict(return_value=None), 400, Errors.NO_INPUT_DATA), | ||
] | ||
) | ||
@unittest.skip( | ||
"Need a fix in `handle_exceptions` decorator before enabling this test." | ||
) | ||
def test_post_fail( | ||
self, mock_get_json_body_response, expected_status_code, expected_error_msg | ||
): | ||
"""Tests POST when encounter error.""" | ||
self.test_instance.get_json_body = MagicMock( | ||
side_effect=mock_get_json_body_response.get("side_effect", None), | ||
return_value=mock_get_json_body_response.get("return_value", None), | ||
) | ||
self.test_instance.write_error = MagicMock() | ||
|
||
self.test_instance.post() | ||
|
||
assert ( | ||
self.test_instance.write_error.call_args[1].get("status_code") | ||
== expected_status_code | ||
), "Raised wrong status code." | ||
assert expected_error_msg in self.test_instance.write_error.call_args[1].get( | ||
"reason" | ||
), "Error message is incorrect." | ||
|
||
@parameterized.expand( | ||
[ | ||
("", TestDataset.MOCK_OCID, "get"), | ||
("", "", "list"), | ||
("aqua/evaluation/metrics", "", "get_supported_metrics"), | ||
] | ||
) | ||
def test_get(self, path, input, mock_method): | ||
"""Tests GET method.""" | ||
self.test_instance.request = MagicMock(path=path) | ||
with patch.object(AquaEvaluationApp, mock_method) as mock_app_method: | ||
self.test_instance.get(input) | ||
|
||
self.test_instance.finish.assert_called_with(mock_app_method.return_value) | ||
mock_app_method.assert_called_once() |
Oops, something went wrong.