aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/tests/test_mr
blob: 6fad083116ab56a0c89a62735489cfae61142b63 (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
#!/bin/bash

source /var/onap_tests/_test_base
source /var/onap/mr

covered_functions=(
"init_mr"
)

# test_init_mr() - Verify the built and start of Message Router services
function test_init_mr {
    init_mr

    asserts_image dockerfiles_kafka
    asserts_image anapsix/alpine-java
    asserts_image attos/dmaap
    asserts_image wurstmeister/zookeeper
}

if [ "$1" != '*' ]; then
    unset covered_functions
    covered_functions=$1
fi
main "${covered_functions[@]}"