aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/noheat/infra-openstack/vagrant/test/create_network.test
blob: 7124f707e52c4af7074062a2f5300a0bb66f4c13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

export NETWORK_NAME='onap_ci_lab'

export VAGRANT_CWD='..'

set_up() {
    vagrant up --provision-with=run_playbook_destroy
    vagrant up --provision-with=run_playbook_create
}

check() {
    local net="$1"
    vagrant ssh operator --no-tty -c \
        "export OS_CLOUD=openstack; openstack network list -fcsv" \
        | grep "$net" \
        | cut -d',' -f2
}

set_up >/dev/null # drop provisioning output
check "$NETWORK_NAME"