summaryrefslogtreecommitdiffstats
path: root/docker/run_qtip.sh
blob: 37eb0ea785212b086bed69376210d2240faef912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#! /bin/bash



cp ${REPOS_DIR}/releng/utils/fetch_os_creds.sh ${QTIP_DIR}/data/
cd ${QTIP_DIR}  &&  source get_env_info.sh \
-n ${INSTALLER_TYPE} \
-i ${INSTALLER_IP}

source ${QTIP_DIR}/opnfv-creds.sh

if [ "$TEST_CASE" == "compute" ]; then
    cd ${QTIP_DIR}  && python qtip.py -l default -f compute
    cd ${QTIP_DIR}/data/ref_results/ && python compute_suite.py
fi

if [ "$TEST_CASE" == "storage" ]; then
    cd ${QTIP_DIR}  && python qtip.py -l default -f storage
    cd ${QTIP_DIR}/data/ref_results/ && python storage_suite.py
fi

if [ "$TEST_CASE" == "network" ]; then
    cd ${QTIP_DIR}  && python qtip.py -l default -f network
    cd ${QTIP_DIR}/data/ref_results/ && python network_suite.py
fi


if [ "$TEST_CASE" == "all" ]; then
    cd ${QTIP_DIR}  && python qtip.py -l default -f compute
    cd ${QTIP_DIR}  && python qtip.py -l default -f storage
    cd ${QTIP_DIR}  && python qtip.py -l default -f network

    cd ${QTIP_DIR}/data/ref_results/ && python compute_suite.py
    cd ${QTIP_DIR}/data/ref_results/ && python storage_suite.py
    cd ${QTIP_DIR}/data/ref_results/ && python network_suite.py
fi