From 72c085ac3fde2a294a09b2065e1fe38a33f8841c Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 1 Apr 2017 14:52:03 +0200 Subject: Add unit tests for odl_sfc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8eb037a8c2427695d42207897064b79cb2b03a5d Signed-off-by: Cédric Ollivier --- functest/tests/unit/features/test_odl_sfc.py | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 functest/tests/unit/features/test_odl_sfc.py 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) -- cgit 1.2.3-korg