diff options
author | blsaws <bryan.sullivan@att.com> | 2016-06-14 19:47:39 -0700 |
---|---|---|
committer | blsaws <bryan.sullivan@att.com> | 2016-06-14 19:47:39 -0700 |
commit | 59596787339714bff92fb4be8ffe2b148bbcafff (patch) | |
tree | 2ca30f14737aa8d34dbd578be88e8b13d5b6ecc5 /tests/dmz.sh | |
parent | 5c856171a061e7ce3f2ee6a28b76e08f907de368 (diff) |
Corrections to API auth redesign and more info output in tests.
Change-Id: Ie7fad60e2fc51517929956c7c139125d0f19ffa1
Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'tests/dmz.sh')
-rw-r--r-- | tests/dmz.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/dmz.sh b/tests/dmz.sh index ff5a5cd..f915378 100644 --- a/tests/dmz.sh +++ b/tests/dmz.sh @@ -37,6 +37,8 @@ pass() { echo "Hooray!" + set +x #echo off + exit 0 } # Use this to trigger fail() at the right places @@ -108,8 +110,6 @@ neutron router-gateway-set test_router test_public echo "Add router internal for internal network" neutron router-interface-add test_router subnet=test_internal -echo "Wait up to a minute as 'neutron router-interface-add' blocks the neutron-api for some time..." -# add a delay since the previous command takes the neutron-api offline for a while (?) COUNTER=1 RESULT="Failed!" until [[ "$COUNTER" -gt 6 || "$RESULT" == "Success!" ]]; do @@ -154,6 +154,7 @@ echo "Verify cirros1 and cirros2 IDs are in the Congress policy 'test' table 'dm COUNTER=5 RESULT="Test Failed!" until [[ $COUNTER -eq 0 || $RESULT == "Test Success!" ]]; do + openstack congress policy row list test dmz_server dmz_cirros1=$(openstack congress policy row list test dmz_server | awk "/ $test_cirros1_ID / { print \$2 }") dmz_cirros2=$(openstack congress policy row list test dmz_server | awk "/ $test_cirros2_ID / { print \$2 }") if [ "$dmz_cirros1" == "$test_cirros1_ID" ] && [ "$dmz_cirros2" == "$test_cirros2_ID" ]; then RESULT="Test Success!"; fi @@ -167,6 +168,7 @@ echo "Verify cirros1 ID is in the Congress policy 'test' table 'dmz_placement_er COUNTER=5 RESULT="Test Failed!" until [[ $COUNTER -eq 0 || $RESULT == "Test Success!" ]]; do + openstack congress policy row list test dmz_placement_error dmz_cirros1=$(openstack congress policy row list test dmz_placement_error | awk "/ $test_cirros1_ID / { print \$2 }") if [ "$dmz_cirros1" == "$test_cirros1_ID" ]; then RESULT="Test Success!"; fi let COUNTER-=1 @@ -182,6 +184,7 @@ echo "Verify cirros1 is paused" COUNTER=5 RESULT="Test Failed!" until [[ $COUNTER -eq 0 || $RESULT == "Test Success!" ]]; do + nova list cirros1_status=$(nova list | awk "/ cirros1 / { print \$6 }") if [ "$cirros1_status" == "PAUSED" ]; then RESULT="Test Success!"; fi let COUNTER-=1 |