blob: 791a979c9b0bb4ec6b9a8f02539eb03f6a1034fb (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#!/bin/bash
# Copyright 2015-2017 AT&T Intellectual Property, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# What this is: Cleanup script for the test dmz01.sh
#
# Status: this is a work in progress, under test.
#
# Prerequisite:
# - OpenStack deployment with Congress service activated.
# - OpenStack CLI environment variables setup e.g. via admin-openrc.sh script.
# How to use:
# # Create Congress policy and resources that exercise policy
# $ bash dmz.sh
# # After test, cleanup with
# $ bash dmz-clean.sh
trap 'fail' ERR
pass() {
echo "Hooray!"
set +x #echo off
exit 0
}
# Use this to trigger fail() at the right places
# if [ "$RESULT" == "Test Failed!" ]; then fail; fi
fail() {
echo "Test Failed!"
set +x
exit 1
}
if [ $# -eq 1 ]; then
if [ $1 == "debug" ]; then
set -x #echo on
fi
fi
echo "Get Congress policy 'test' ID"
test_policy_ID=$(openstack congress policy show test | awk "/ id / { print \$4 }")
echo "Delete Congress policy 'test' if it exists"
if [ "$test_policy_ID" != "" ]; then
openstack congress policy delete $test_policy_ID
echo "Existing policy 'test' deleted"
fi
echo "Delete cirros1 instance"
instance=$(nova list | awk "/ cirros1 / { print \$2 }")
if [ "$instance" != "" ]; then nova delete $instance
fi
echo "Wait for cirros1 to terminate"
COUNTER=5
RESULT="Wait!"
until [[ $COUNTER -eq 0 || $RESULT == "Go!" ]]; do
cirros1_id=$(openstack server list | awk "/ cirros1 / { print \$4 }")
if [[ "$cirros1_id" == "" ]]; then RESULT="Go!"; fi
let COUNTER-=1
sleep 5
done
echo "Delete 'smtp_ingress' security group"
sg=$(neutron security-group-list | awk "/ smtp_ingress / { print \$2 }")
neutron security-group-delete $sg
# FLOATING_IP_ID was saved by smtp_ingress.sh
source /tmp/TEST_VARS.sh
rm /tmp/TEST_VARS.sh
echo "Delete floating ip"
neutron floatingip-delete $FLOATING_IP_ID
echo "Get 'test_router' ID"
router=$(neutron router-list | awk "/ test_router / { print \$2 }")
echo "Get internal port ID with fixed_ip 10.0.0.1 on 'test_router'"
test_internal_interface=$(neutron router-port-list $router | grep 10.0.0.1 | awk '{print $2}')
echo "If found, delete the port with fixed_ip 10.0.0.1 on 'test_router'"
if [ "$test_internal_interface" != "" ]; then neutron router-interface-delete $router port=$test_internal_interface
fi
echo "Clear the router gateway"
neutron router-gateway-clear test_router
echo "Delete the router"
neutron router-delete test_router
echo "Delete internal subnet"
neutron subnet-delete test_internal
echo "Delete internal network"
neutron net-delete test_internal
pass
|