Add unit tests for odl_sfc
authorCédric Ollivier <cedric.ollivier@orange.com>
Sat, 1 Apr 2017 12:52:03 +0000 (14:52 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Tue, 4 Apr 2017 13:16:52 +0000 (15:16 +0200)
Change-Id: I8eb037a8c2427695d42207897064b79cb2b03a5d
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
functest/tests/unit/features/test_odl_sfc.py [new file with mode: 0644]

diff --git a/functest/tests/unit/features/test_odl_sfc.py b/functest/tests/unit/features/test_odl_sfc.py
new file mode 100644 (file)
index 0000000..da592de
--- /dev/null
@@ -0,0 +1,39 @@
+#!/usr/bin/env python
+
+# Copyright (c) 2017 Orange and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+
+# pylint: disable=missing-docstring
+
+import logging
+import unittest
+
+from functest.opnfv_tests.features import odl_sfc
+from functest.utils import constants
+
+
+class OpenDaylightSFCTesting(unittest.TestCase):
+
+    logging.disable(logging.CRITICAL)
+
+    def setUp(self):
+        self.odl_sfc = odl_sfc.OpenDaylightSFC()
+
+    def test_init(self):
+        self.assertEqual(self.odl_sfc.project_name, "sfc")
+        self.assertEqual(self.odl_sfc.case_name, "functest-odl-sfc")
+        self.assertEqual(
+            self.odl_sfc.repo,
+            constants.CONST.__getattribute__("dir_repo_sfc"))
+        dir_sfc_functest = '{}/sfc/tests/functest'.format(self.odl_sfc.repo)
+        self.assertEqual(
+            self.odl_sfc.cmd,
+            'cd {} && python ./run_tests.py'.format(dir_sfc_functest))
+
+
+if __name__ == "__main__":
+    unittest.main(verbosity=2)