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
|
package rules
import (
"testing"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/qos/rules"
th "github.com/gophercloud/gophercloud/testhelper"
)
// CreateBandwidthLimitRule will create a QoS BandwidthLimitRule associated with the provided QoS policy.
// An error will be returned if the QoS rule could not be created.
func CreateBandwidthLimitRule(t *testing.T, client *gophercloud.ServiceClient, policyID string) (*rules.BandwidthLimitRule, error) {
maxKBps := 3000
maxBurstKBps := 300
createOpts := rules.CreateBandwidthLimitRuleOpts{
MaxKBps: maxKBps,
MaxBurstKBps: maxBurstKBps,
}
t.Logf("Attempting to create a QoS bandwidth limit rule with max_kbps: %d, max_burst_kbps: %d", maxKBps, maxBurstKBps)
rule, err := rules.CreateBandwidthLimitRule(client, policyID, createOpts).ExtractBandwidthLimitRule()
if err != nil {
return nil, err
}
t.Logf("Succesfully created a QoS bandwidth limit rule")
th.AssertEquals(t, maxKBps, rule.MaxKBps)
th.AssertEquals(t, maxBurstKBps, rule.MaxBurstKBps)
return rule, nil
}
// CreateDSCPMarkingRule will create a QoS DSCPMarkingRule associated with the provided QoS policy.
// An error will be returned if the QoS rule could not be created.
func CreateDSCPMarkingRule(t *testing.T, client *gophercloud.ServiceClient, policyID string) (*rules.DSCPMarkingRule, error) {
dscpMark := 26
createOpts := rules.CreateDSCPMarkingRuleOpts{
DSCPMark: dscpMark,
}
t.Logf("Attempting to create a QoS DSCP marking rule with dscp_mark: %d", dscpMark)
rule, err := rules.CreateDSCPMarkingRule(client, policyID, createOpts).ExtractDSCPMarkingRule()
if err != nil {
return nil, err
}
t.Logf("Succesfully created a QoS DSCP marking rule")
th.AssertEquals(t, dscpMark, rule.DSCPMark)
return rule, nil
}
// CreateMinimumBandwidthRule will create a QoS MinimumBandwidthRule associated with the provided QoS policy.
// An error will be returned if the QoS rule could not be created.
func CreateMinimumBandwidthRule(t *testing.T, client *gophercloud.ServiceClient, policyID string) (*rules.MinimumBandwidthRule, error) {
minKBps := 1000
createOpts := rules.CreateMinimumBandwidthRuleOpts{
MinKBps: minKBps,
}
t.Logf("Attempting to create a QoS minimum bandwidth rule with min_kbps: %d", minKBps)
rule, err := rules.CreateMinimumBandwidthRule(client, policyID, createOpts).ExtractMinimumBandwidthRule()
if err != nil {
return nil, err
}
t.Logf("Succesfully created a QoS minimum bandwidth rule")
th.AssertEquals(t, minKBps, rule.MinKBps)
return rule, nil
}
|