diff options
author | Serena Feng <feng.xiaowei@zte.com.cn> | 2017-09-16 03:40:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-16 03:40:53 +0000 |
commit | 1fc5d49f8aa9eb44e615afdd597827be48cf517a (patch) | |
tree | 62deb5141ec652914622c005fefb7786021d1bf0 /utils | |
parent | 7063d8ea965d35b3c3afd0b9915fdb5bbc009fdf (diff) | |
parent | 9a1b2d075193dffa97c38bae5961a2300e3fe87e (diff) |
Merge "testing for raise in config.py"
Diffstat (limited to 'utils')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/tests/unit/common/test_config.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/test/testapi/opnfv_testapi/tests/unit/common/test_config.py b/utils/test/testapi/opnfv_testapi/tests/unit/common/test_config.py index 8cfc513be..ea2297275 100644 --- a/utils/test/testapi/opnfv_testapi/tests/unit/common/test_config.py +++ b/utils/test/testapi/opnfv_testapi/tests/unit/common/test_config.py @@ -1,4 +1,5 @@ import argparse +import pytest def test_config_normal(mocker, config_normal): @@ -13,3 +14,11 @@ def test_config_normal(mocker, config_normal): assert CONF.api_debug is True assert CONF.api_authenticate is False assert CONF.ui_url == 'http://localhost:8000' + + +def test_config_file_not_exist(mocker): + mocker.patch('os.path.exists', return_value=False) + with pytest.raises(Exception) as m_exc: + from opnfv_testapi.common import config + config.Config() + assert 'not found' in str(m_exc.value) |