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
|
package mtu
import (
"testing"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/acceptance/tools"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/mtu"
"github.com/gophercloud/gophercloud/openstack/networking/v2/networks"
th "github.com/gophercloud/gophercloud/testhelper"
)
type NetworkMTU struct {
networks.Network
mtu.NetworkMTUExt
}
// CreateNetworkWithMTU will create a network with custom MTU. An error will be
// returned if the creation failed.
func CreateNetworkWithMTU(t *testing.T, client *gophercloud.ServiceClient, networkMTU *int) (*NetworkMTU, error) {
networkName := tools.RandomString("TESTACC-", 8)
networkDescription := tools.RandomString("TESTACC-DESC-", 8)
t.Logf("Attempting to create a network with custom MTU: %s", networkName)
adminStateUp := true
var createOpts networks.CreateOptsBuilder
createOpts = networks.CreateOpts{
Name: networkName,
Description: networkDescription,
AdminStateUp: &adminStateUp,
}
if *networkMTU > 0 {
createOpts = mtu.CreateOptsExt{
CreateOptsBuilder: createOpts,
MTU: *networkMTU,
}
}
var network NetworkMTU
err := networks.Create(client, createOpts).ExtractInto(&network)
if err != nil {
return &network, err
}
t.Logf("Created a network with custom MTU: %s", networkName)
th.AssertEquals(t, network.Name, networkName)
th.AssertEquals(t, network.Description, networkDescription)
th.AssertEquals(t, network.AdminStateUp, adminStateUp)
if *networkMTU > 0 {
th.AssertEquals(t, network.MTU, *networkMTU)
} else {
*networkMTU = network.MTU
}
return &network, nil
}
|