Merge Apex Daily Jobs
[releng.git] / utils / test / testapi / opnfv_testapi / tests / unit / common / test_config.py
1 import argparse
2
3
4 def test_config_normal(mocker, config_normal):
5     mocker.patch(
6         'argparse.ArgumentParser.parse_known_args',
7         return_value=(argparse.Namespace(config_file=config_normal), None))
8     from opnfv_testapi.common import config
9     CONF = config.Config()
10     assert CONF.mongo_url == 'mongodb://127.0.0.1:27017/'
11     assert CONF.mongo_dbname == 'test_results_collection'
12     assert CONF.api_port == 8000
13     assert CONF.api_debug is True
14     assert CONF.api_authenticate is False
15     assert CONF.ui_url == 'http://localhost:8000'