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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
package fwaas
import (
"fmt"
"strconv"
"testing"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/acceptance/tools"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/fwaas/firewalls"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/fwaas/policies"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/fwaas/routerinsertion"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/fwaas/rules"
th "github.com/gophercloud/gophercloud/testhelper"
)
// CreateFirewall will create a Firewall with a random name and a specified
// policy ID. An error will be returned if the firewall could not be created.
func CreateFirewall(t *testing.T, client *gophercloud.ServiceClient, policyID string) (*firewalls.Firewall, error) {
firewallName := tools.RandomString("TESTACC-", 8)
firewallDescription := tools.RandomString("TESTACC-DESC-", 8)
t.Logf("Attempting to create firewall %s", firewallName)
iTrue := true
createOpts := firewalls.CreateOpts{
Name: firewallName,
Description: firewallDescription,
PolicyID: policyID,
AdminStateUp: &iTrue,
}
firewall, err := firewalls.Create(client, createOpts).Extract()
if err != nil {
return firewall, err
}
t.Logf("Waiting for firewall to become active.")
if err := WaitForFirewallState(client, firewall.ID, "ACTIVE"); err != nil {
return firewall, err
}
t.Logf("Successfully created firewall %s", firewallName)
th.AssertEquals(t, firewall.Name, firewallName)
th.AssertEquals(t, firewall.Description, firewallDescription)
return firewall, nil
}
// CreateFirewallOnRouter will create a Firewall with a random name and a
// specified policy ID attached to a specified Router. An error will be
// returned if the firewall could not be created.
func CreateFirewallOnRouter(t *testing.T, client *gophercloud.ServiceClient, policyID string, routerID string) (*firewalls.Firewall, error) {
firewallName := tools.RandomString("TESTACC-", 8)
firewallDescription := tools.RandomString("TESTACC-DESC-", 8)
t.Logf("Attempting to create firewall %s", firewallName)
firewallCreateOpts := firewalls.CreateOpts{
Name: firewallName,
Description: firewallDescription,
PolicyID: policyID,
}
createOpts := routerinsertion.CreateOptsExt{
CreateOptsBuilder: firewallCreateOpts,
RouterIDs: []string{routerID},
}
firewall, err := firewalls.Create(client, createOpts).Extract()
if err != nil {
return firewall, err
}
t.Logf("Waiting for firewall to become active.")
if err := WaitForFirewallState(client, firewall.ID, "ACTIVE"); err != nil {
return firewall, err
}
t.Logf("Successfully created firewall %s", firewallName)
th.AssertEquals(t, firewall.Name, firewallName)
th.AssertEquals(t, firewall.Description, firewallDescription)
return firewall, nil
}
// CreatePolicy will create a Firewall Policy with a random name and given
// rule. An error will be returned if the rule could not be created.
func CreatePolicy(t *testing.T, client *gophercloud.ServiceClient, ruleID string) (*policies.Policy, error) {
policyName := tools.RandomString("TESTACC-", 8)
policyDescription := tools.RandomString("TESTACC-DESC-", 8)
t.Logf("Attempting to create policy %s", policyName)
createOpts := policies.CreateOpts{
Name: policyName,
Description: policyDescription,
Rules: []string{
ruleID,
},
}
policy, err := policies.Create(client, createOpts).Extract()
if err != nil {
return policy, err
}
t.Logf("Successfully created policy %s", policyName)
th.AssertEquals(t, policy.Name, policyName)
th.AssertEquals(t, policy.Description, policyDescription)
th.AssertEquals(t, len(policy.Rules), 1)
return policy, nil
}
// CreateRule will create a Firewall Rule with a random source address and
// source port, destination address and port. An error will be returned if
// the rule could not be created.
func CreateRule(t *testing.T, client *gophercloud.ServiceClient) (*rules.Rule, error) {
ruleName := tools.RandomString("TESTACC-", 8)
sourceAddress := fmt.Sprintf("192.168.1.%d", tools.RandomInt(1, 100))
sourcePort := strconv.Itoa(tools.RandomInt(1, 100))
destinationAddress := fmt.Sprintf("192.168.2.%d", tools.RandomInt(1, 100))
destinationPort := strconv.Itoa(tools.RandomInt(1, 100))
t.Logf("Attempting to create rule %s with source %s:%s and destination %s:%s",
ruleName, sourceAddress, sourcePort, destinationAddress, destinationPort)
createOpts := rules.CreateOpts{
Name: ruleName,
Protocol: rules.ProtocolTCP,
Action: "allow",
SourceIPAddress: sourceAddress,
SourcePort: sourcePort,
DestinationIPAddress: destinationAddress,
DestinationPort: destinationPort,
}
rule, err := rules.Create(client, createOpts).Extract()
if err != nil {
return rule, err
}
t.Logf("Rule %s successfully created", ruleName)
th.AssertEquals(t, rule.Name, ruleName)
th.AssertEquals(t, rule.Protocol, rules.ProtocolTCP)
th.AssertEquals(t, rule.SourceIPAddress, sourceAddress)
th.AssertEquals(t, rule.SourcePort, sourcePort)
th.AssertEquals(t, rule.DestinationIPAddress, destinationAddress)
th.AssertEquals(t, rule.DestinationPort, destinationPort)
return rule, nil
}
// DeleteFirewall will delete a firewall with a specified ID. A fatal error
// will occur if the delete was not successful. This works best when used as
// a deferred function.
func DeleteFirewall(t *testing.T, client *gophercloud.ServiceClient, firewallID string) {
t.Logf("Attempting to delete firewall: %s", firewallID)
err := firewalls.Delete(client, firewallID).ExtractErr()
if err != nil {
t.Fatalf("Unable to delete firewall %s: %v", firewallID, err)
}
t.Logf("Waiting for firewall to delete.")
if err := WaitForFirewallState(client, firewallID, "DELETED"); err != nil {
t.Logf("Unable to delete firewall: %s", firewallID)
}
t.Logf("Firewall deleted: %s", firewallID)
}
// DeletePolicy will delete a policy with a specified ID. A fatal error will
// occur if the delete was not successful. This works best when used as a
// deferred function.
func DeletePolicy(t *testing.T, client *gophercloud.ServiceClient, policyID string) {
t.Logf("Attempting to delete policy: %s", policyID)
err := policies.Delete(client, policyID).ExtractErr()
if err != nil {
t.Fatalf("Unable to delete policy %s: %v", policyID, err)
}
t.Logf("Deleted policy: %s", policyID)
}
// DeleteRule will delete a rule with a specified ID. A fatal error will occur
// if the delete was not successful. This works best when used as a deferred
// function.
func DeleteRule(t *testing.T, client *gophercloud.ServiceClient, ruleID string) {
t.Logf("Attempting to delete rule: %s", ruleID)
err := rules.Delete(client, ruleID).ExtractErr()
if err != nil {
t.Fatalf("Unable to delete rule %s: %v", ruleID, err)
}
t.Logf("Deleted rule: %s", ruleID)
}
// WaitForFirewallState will wait until a firewall reaches a given state.
func WaitForFirewallState(client *gophercloud.ServiceClient, firewallID, status string) error {
return tools.WaitFor(func() (bool, error) {
current, err := firewalls.Get(client, firewallID).Extract()
if err != nil {
if httpStatus, ok := err.(gophercloud.ErrDefault404); ok {
if httpStatus.Actual == 404 {
if status == "DELETED" {
return true, nil
}
}
}
return false, err
}
if current.Status == status {
return true, nil
}
return false, nil
})
}
|