aboutsummaryrefslogtreecommitdiffstats
path: root/functest
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-04-01 14:52:03 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2017-04-04 15:16:52 +0200
commit72c085ac3fde2a294a09b2065e1fe38a33f8841c (patch)
treef4968cd9c150ccf39190fc9d377ac87237ae5118 /functest
parent70b1313fe9528a72fab966ab69e7d784e40653d5 (diff)
Add unit tests for odl_sfc
Change-Id: I8eb037a8c2427695d42207897064b79cb2b03a5d Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest')
-rw-r--r--functest/tests/unit/features/test_odl_sfc.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/functest/tests/unit/features/test_odl_sfc.py b/functest/tests/unit/features/test_odl_sfc.py
new file mode 100644
index 000000000..da592de11
--- /dev/null
+++ b/functest/tests/unit/features/test_odl_sfc.py
@@ -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)