aboutsummaryrefslogtreecommitdiff
path: root/tests/test_utils_misc.py
diff options
context:
space:
mode:
authorRuomei Yan <ruomei.yan@arm.com>2022-12-13 22:02:21 +0000
committerRuomei Yan <ruomei.yan@arm.com>2023-01-16 16:31:23 +0000
commit4eb3fef8e5876c69dc6bac70fdc010805d5b97f2 (patch)
tree88beca8a30954f020b7f34c0a3f9df780b966244 /tests/test_utils_misc.py
parent5800fc990ed1e36ce7d06670f911fbb12a0ec771 (diff)
downloadmlia-4eb3fef8e5876c69dc6bac70fdc010805d5b97f2.tar.gz
MLIA-741/2 Report test results
- add version extraction function in compat.py - create Metadata, MLIAMetadata, TOSAMetadata and MetadataDisplay classes - update the reporting functions so tosa and mlia version will be displayed in output json - update unit test test_configure_and_get_tosa_advisor to mock the get_events function - update the copyright information of all changed/added files - handle exception and report to json when program crashes - write new context managers for capturing stderr and stdout - support reporting stderr to json output - support reporting model checksum and model name to json output - made changes in test_e2e.py handling {model_name} replacement in --output - add unit tests Change-Id: I6629fd1c5754378e6accd488217c83d87c7eb6f1
Diffstat (limited to 'tests/test_utils_misc.py')
-rw-r--r--tests/test_utils_misc.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/test_utils_misc.py b/tests/test_utils_misc.py
index 011d09e..ae91850 100644
--- a/tests/test_utils_misc.py
+++ b/tests/test_utils_misc.py
@@ -1,10 +1,11 @@
-# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Tests for misc util functions."""
from unittest.mock import MagicMock
import pytest
+from mlia.utils.misc import get_pkg_version
from mlia.utils.misc import yes
@@ -23,3 +24,10 @@ def test_yes(
"""Test yes function."""
monkeypatch.setattr("builtins.input", MagicMock(return_value=response))
assert yes("some_prompt") == expected_result
+
+
+@pytest.mark.parametrize("response", ["some version", FileNotFoundError()])
+def test_get_pkg_version(monkeypatch: pytest.MonkeyPatch, response: str) -> None:
+ """Test get_tosa_version."""
+ monkeypatch.setattr("importlib.metadata.version", MagicMock(return_value=response))
+ assert get_pkg_version("any name") == response