Victor Morales | dd07480 | 2017-07-26 16:06:35 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | source /var/onap_tests/_test_base |
| 4 | source /var/onap/mr |
| 5 | |
| 6 | covered_functions=( |
| 7 | "init_mr" |
| 8 | ) |
| 9 | |
| 10 | # test_init_mr() - Verify the built and start of Message Router services |
| 11 | function test_init_mr { |
| 12 | init_mr |
| 13 | |
| 14 | asserts_image dockerfiles_kafka |
| 15 | asserts_image anapsix/alpine-java |
| 16 | asserts_image attos/dmaap |
| 17 | asserts_image wurstmeister/zookeeper |
| 18 | } |
| 19 | |
| 20 | if [ "$1" != '*' ]; then |
| 21 | unset covered_functions |
| 22 | covered_functions=$1 |
| 23 | fi |
| 24 | main "${covered_functions[@]}" |