summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2017-09-16 03:40:53 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-16 03:40:53 +0000
commit175b3db64b2fe9c666a09ae5f5534e39f8e0ec46 (patch)
tree545247d691c85340efb23bbd324dde50911b2f05
parent7479f29b3d0a613d459cd26b31eab38f00a00b22 (diff)
parentbf85945d39c2a661fd90f63655fe3ce961290645 (diff)
Merge "testing for raise in config.py"
-rw-r--r--testapi/opnfv_testapi/tests/unit/common/test_config.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/testapi/opnfv_testapi/tests/unit/common/test_config.py b/testapi/opnfv_testapi/tests/unit/common/test_config.py
index 8cfc513..ea22972 100644
--- a/testapi/opnfv_testapi/tests/unit/common/test_config.py
+++ b/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)