From 2ee99cbaf0c827ecb02b9c11061750aa675044c5 Mon Sep 17 00:00:00 2001 From: Sudarshan Kumar Date: Wed, 10 Apr 2019 13:30:27 +0530 Subject: code coverage solver-request package code coverage solver-request package Issue-ID: OPTFRA-302 Change-Id: Ia96df359f0fca4325afa59eabc63eb61c3ca7a5d Signed-off-by: Sudarshan Kumar --- .../tests/unit/solver/request/__init__.py | 0 .../unit/solver/request/functions/__init__.py | 0 .../request/functions/test_distance_between.py | 48 ++++++++++++++++++++++ conductor/conductor/tests/unit/test_opts.py | 32 +++++++++++++++ 4 files changed, 80 insertions(+) create mode 100644 conductor/conductor/tests/unit/solver/request/__init__.py create mode 100644 conductor/conductor/tests/unit/solver/request/functions/__init__.py create mode 100644 conductor/conductor/tests/unit/solver/request/functions/test_distance_between.py create mode 100644 conductor/conductor/tests/unit/test_opts.py (limited to 'conductor') diff --git a/conductor/conductor/tests/unit/solver/request/__init__.py b/conductor/conductor/tests/unit/solver/request/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/conductor/conductor/tests/unit/solver/request/functions/__init__.py b/conductor/conductor/tests/unit/solver/request/functions/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/conductor/conductor/tests/unit/solver/request/functions/test_distance_between.py b/conductor/conductor/tests/unit/solver/request/functions/test_distance_between.py new file mode 100644 index 0000000..e2eb367 --- /dev/null +++ b/conductor/conductor/tests/unit/solver/request/functions/test_distance_between.py @@ -0,0 +1,48 @@ +# +# ------------------------------------------------------------------------- +# Copyright (c) 2018 Intel Corporation Intellectual Property +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# ------------------------------------------------------------------------- +# +import unittest +from conductor.solver.request.functions.distance_between import DistanceBetween +from conductor.solver.request.functions.cloud_version import CloudVersion +from conductor.solver.request.functions.aic_version import AICVersion +from conductor.solver.request.functions.cost import Cost +from conductor.solver.request.functions.hpa_score import HPAScore + + +class TestDistanceBetween(unittest.TestCase): + def setUp(self): + self.db = DistanceBetween(None) + self.cv = CloudVersion(None) + self.aicversion = AICVersion(None) + self.cost = Cost(None) + self.hpa_score = HPAScore(None) + + def test_distance_between(self): + self.assertEqual(0.0, self.db.compute(0.0, 0.0)) + self.assertEqual(None, self.cv.func_type) + self.assertEqual(None, self.cv.loc) + self.assertEqual(None, self.aicversion.loc) + self.assertEqual(None, self.aicversion.func_type) + self.assertEqual(None, self.cost.loc) + self.assertEqual(None, self.cost.func_type) + self.assertEqual(0, self.hpa_score.score) + self.assertEqual(None, self.hpa_score.func_type) + + +if __name__ == "__main__": + unittest.main() diff --git a/conductor/conductor/tests/unit/test_opts.py b/conductor/conductor/tests/unit/test_opts.py new file mode 100644 index 0000000..b739ab1 --- /dev/null +++ b/conductor/conductor/tests/unit/test_opts.py @@ -0,0 +1,32 @@ +# +# ------------------------------------------------------------------------- +# Copyright (c) 2018 Intel Corporation Intellectual Property +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# ------------------------------------------------------------------------- +# +import unittest +import conductor.opts as OPTS + + +class TestOPTS(unittest.TestCase): + def setUp(self): + self.listSize = 19 + + def test_list_lenth(self): + self.assertEqual(self.listSize, len(OPTS.list_opts())) + + +if __name__ == "__main__": + unittest.main() -- cgit 1.2.3-korg