summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSudarshan Kumar <sudars19@in.ibm.com>2019-04-10 13:30:27 +0530
committerSudarshan Kumar <sudars19@in.ibm.com>2019-04-10 13:30:48 +0530
commit2ee99cbaf0c827ecb02b9c11061750aa675044c5 (patch)
treea40eb820088b0194233698bf55035bf5134ff274
parent516b49bb01943111e72b5a60789abe930ab47a33 (diff)
code coverage solver-request package
code coverage solver-request package Issue-ID: OPTFRA-302 Change-Id: Ia96df359f0fca4325afa59eabc63eb61c3ca7a5d Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
-rw-r--r--conductor/conductor/tests/unit/solver/request/__init__.py0
-rw-r--r--conductor/conductor/tests/unit/solver/request/functions/__init__.py0
-rw-r--r--conductor/conductor/tests/unit/solver/request/functions/test_distance_between.py48
-rw-r--r--conductor/conductor/tests/unit/test_opts.py32
4 files changed, 80 insertions, 0 deletions
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
--- /dev/null
+++ b/conductor/conductor/tests/unit/solver/request/__init__.py
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
--- /dev/null
+++ b/conductor/conductor/tests/unit/solver/request/functions/__init__.py
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()