summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorutkarshrai98 <utkarshrai98@gmail.com>2017-09-07 12:58:41 +0530
committerUtkarsh Rai <utkarshrai98@gmail.com>2017-09-12 02:06:40 +0000
commitbf85945d39c2a661fd90f63655fe3ce961290645 (patch)
treea3d844d4165a6a61920e3be904a47296656418d8
parentb3580028292d2927564020e8143bc1f659ef0ab3 (diff)
testing for raise in config.py
Change-Id: I3b4f21307af55c8f32332502ddcb9315074b7202 Signed-off-by: utkarshrai98 <utkarshrai98@gmail.com> Testing for the raise in test_config.py Change-Id: Iea7ae53b5eac51d3e3eaf9f23d6e8cd79919f103 Signed-off-by: utkarshrai98 <utkarshrai98@gmail.com>
-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)