code coverage solver-request package 13/84813/1
authorSudarshan Kumar <sudars19@in.ibm.com>
Wed, 10 Apr 2019 08:00:27 +0000 (13:30 +0530)
committerSudarshan Kumar <sudars19@in.ibm.com>
Wed, 10 Apr 2019 08:00:48 +0000 (13:30 +0530)
code coverage solver-request package

Issue-ID: OPTFRA-302
Change-Id: Ia96df359f0fca4325afa59eabc63eb61c3ca7a5d
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
conductor/conductor/tests/unit/solver/request/__init__.py [new file with mode: 0644]
conductor/conductor/tests/unit/solver/request/functions/__init__.py [new file with mode: 0644]
conductor/conductor/tests/unit/solver/request/functions/test_distance_between.py [new file with mode: 0644]
conductor/conductor/tests/unit/test_opts.py [new file with mode: 0644]

diff --git a/conductor/conductor/tests/unit/solver/request/__init__.py b/conductor/conductor/tests/unit/solver/request/__init__.py
new file mode 100644 (file)
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 (file)
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 (file)
index 0000000..e2eb367
--- /dev/null
@@ -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 (file)
index 0000000..b739ab1
--- /dev/null
@@ -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()