From 72d425437e176a966bfc4d43a116f8692ec859ba Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Mon, 27 Feb 2017 14:33:52 +0800 Subject: make unittest cover server.py in TestAPI Change-Id: Id379e6786e1f61fb1032f80636da107156e68fb5 Signed-off-by: SerenaFeng --- .../testapi/opnfv_testapi/tests/unit/common/normal.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 utils/test/testapi/opnfv_testapi/tests/unit/common/normal.ini (limited to 'utils/test/testapi/opnfv_testapi/tests/unit/common/normal.ini') 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 -- cgit 1.2.3-korg