diff options
author | 2017-02-27 14:33:52 +0800 | |
---|---|---|
committer | 2017-02-27 14:33:52 +0800 | |
commit | 72d425437e176a966bfc4d43a116f8692ec859ba (patch) | |
tree | 8b0cd9037826092e3f009e97ecb8cd48a4939380 /utils/test/testapi/opnfv_testapi/tests/unit/common | |
parent | ca499ef74efb6fb59d39473fb578ab31e64f7ac5 (diff) |
make unittest cover server.py in TestAPI
Change-Id: Id379e6786e1f61fb1032f80636da107156e68fb5
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/tests/unit/common')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/tests/unit/common/normal.ini | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/utils/test/testapi/opnfv_testapi/tests/unit/common/normal.ini b/utils/test/testapi/opnfv_testapi/tests/unit/common/normal.ini new file mode 100644 index 000000000..77cc6c6ee --- /dev/null +++ b/utils/test/testapi/opnfv_testapi/tests/unit/common/normal.ini @@ -0,0 +1,17 @@ +# to add a new parameter in the config file, +# the CONF object in config.ini must be updated +[mongo] +# URL of the mongo DB +# Mongo auth url => mongodb://user1:pwd1@host1/?authSource=db1 +url = mongodb://127.0.0.1:27017/ +dbname = test_results_collection + +[api] +# Listening port +port = 8000 +# With debug_on set to true, error traces will be shown in HTTP responses +debug = True +authenticate = False + +[swagger] +base_url = http://localhost:8000 |