From dceaf8bda80dcd21d422f2d65864ebcf494f45a1 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 8 Apr 2017 11:30:58 +0200 Subject: Add unit tests for parser MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It also fixes the corresponding case name in testcases.yaml. Change-Id: I2b93323a18bb192d9ad35823dc48b236cb6841b1 Signed-off-by: Cédric Ollivier --- functest/ci/testcases.yaml | 2 +- functest/opnfv_tests/vnf/rnc/parser.py | 4 ++-- functest/tests/unit/vnf/__init__.py | 0 functest/tests/unit/vnf/rnc/__init__.py | 0 functest/tests/unit/vnf/rnc/test_parser.py | 38 ++++++++++++++++++++++++++++++ run_unit_tests.sh | 1 + 6 files changed, 42 insertions(+), 3 deletions(-) create mode 100644 functest/tests/unit/vnf/__init__.py create mode 100644 functest/tests/unit/vnf/rnc/__init__.py create mode 100644 functest/tests/unit/vnf/rnc/test_parser.py diff --git a/functest/ci/testcases.yaml b/functest/ci/testcases.yaml index 23b214bb7..d608d83b8 100755 --- a/functest/ci/testcases.yaml +++ b/functest/ci/testcases.yaml @@ -347,7 +347,7 @@ tiers: module: 'functest.opnfv_tests.sdn.onos.onos' class: 'OnosSfc' - - name: parser + name: parser-basics criteria: 'ret == 0' blocking: false clean_flag: true diff --git a/functest/opnfv_tests/vnf/rnc/parser.py b/functest/opnfv_tests/vnf/rnc/parser.py index 133145d74..fe4def1f9 100644 --- a/functest/opnfv_tests/vnf/rnc/parser.py +++ b/functest/opnfv_tests/vnf/rnc/parser.py @@ -19,8 +19,8 @@ import functest.core.feature as base class Parser(base.Feature): - def __init__(self): + def __init__(self, case_name='parser-basics'): super(Parser, self).__init__(project='parser', - case='parser-basics', + case_name=case_name, repo='dir_repo_parser') self.cmd = 'cd %s/tests && ./functest_run.sh' % self.repo diff --git a/functest/tests/unit/vnf/__init__.py b/functest/tests/unit/vnf/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/functest/tests/unit/vnf/rnc/__init__.py b/functest/tests/unit/vnf/rnc/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/functest/tests/unit/vnf/rnc/test_parser.py b/functest/tests/unit/vnf/rnc/test_parser.py new file mode 100644 index 000000000..59f618aef --- /dev/null +++ b/functest/tests/unit/vnf/rnc/test_parser.py @@ -0,0 +1,38 @@ +#!/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.vnf.rnc import parser +from functest.utils import constants + + +class ParserTesting(unittest.TestCase): + + logging.disable(logging.CRITICAL) + + def setUp(self): + self.parser = parser.Parser(case_name="parser-basics") + + def test_init(self): + self.assertEqual(self.parser.project_name, "parser") + self.assertEqual(self.parser.case_name, "parser-basics") + self.assertEqual( + self.parser.repo, + constants.CONST.__getattribute__("dir_repo_parser")) + self.assertEqual( + self.parser.cmd, + 'cd {}/tests && ./functest_run.sh'.format(self.parser.repo)) + + +if __name__ == "__main__": + unittest.main(verbosity=2) diff --git a/run_unit_tests.sh b/run_unit_tests.sh index 917c8eee8..5a66dd7fa 100755 --- a/run_unit_tests.sh +++ b/run_unit_tests.sh @@ -43,6 +43,7 @@ nosetests --with-xunit \ --cover-package=functest.core \ --cover-package=functest.opnfv_tests.sdn.odl.odl \ --cover-package=functest.opnfv_tests.vnf.ims \ + --cover-package=functest.opnfv_tests.vnf.rnc \ --cover-package=functest.utils \ --cover-package=functest.opnfv_tests.features \ --cover-package=functest.opnfv_tests.openstack \ -- cgit 1.2.3-korg