Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ER: association/propagation #702

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 159 additions & 0 deletions acceptance/openstack/er/associations_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
package er

import (
"os"
"testing"

golangsdk "github.com/opentelekomcloud/gophertelekomcloud"
"github.com/opentelekomcloud/gophertelekomcloud/acceptance/clients"
"github.com/opentelekomcloud/gophertelekomcloud/acceptance/tools"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/common/pointerto"
tag "github.com/opentelekomcloud/gophertelekomcloud/openstack/common/tags"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/association"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/instance"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/route_table"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/vpc"
th "github.com/opentelekomcloud/gophertelekomcloud/testhelper"
)

func TestERAssociationsLifeCycle(t *testing.T) {
if os.Getenv("RUN_ER_LIFECYCLE") == "" {
t.Skip("too slow to run in zuul")
}

client, err := clients.NewERClient()
th.AssertNoErr(t, err)

createOpts := instance.CreateOpts{
Name: tools.RandomString("acctest_er_router-", 4),
Asn: 64512,
AutoAcceptSharedAttachments: pointerto.Bool(true),
AvailabilityZoneIDs: []string{
"eu-de-01",
"eu-de-02",
},
}

t.Logf("Attempting to create enterprise router")

createResp, err := instance.Create(client, createOpts)
th.AssertNoErr(t, err)

err = waitForInstanceAvailable(client, 100, createResp.Instance.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to delete enterprise router")
err = instance.Delete(client, createResp.Instance.ID)
th.AssertNoErr(t, err)
err = waitForInstanceDeleted(client, 500, createResp.Instance.ID)
})

createRouteTableOpts := route_table.CreateOpts{
Name: rtName,
RouterID: createResp.Instance.ID,
Description: &descriptionRt,
Tags: []tag.ResourceTag{
{
Key: "muh",
Value: "muh",
},
{
Key: "test",
Value: "test",
},
},
}

t.Logf("Attempting to create route table")
createRtResp, err := route_table.Create(client, createRouteTableOpts)
th.AssertNoErr(t, err)

err = waitForRouteTableAvailable(client, 300, createResp.Instance.ID, createRtResp.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to delete route table")
err = route_table.Delete(client, createResp.Instance.ID, createRtResp.ID)
th.AssertNoErr(t, err)
err = waitForRouteTableDeleted(client, 500, createResp.Instance.ID, createRtResp.ID)
})

t.Logf("Attempting to create vpc attachemnt")

createVpcOpts := vpc.CreateOpts{
Name: vpcName,
RouterID: createResp.Instance.ID,
VpcId: vpcId,
SubnetId: networkId,
Description: description,
AutoCreateVpcRoutes: true,
Tags: []tag.ResourceTag{
{
Key: "muh",
Value: "muh",
},
{
Key: "test",
Value: "test",
},
},
}

createVpcResp, err := vpc.Create(client, createVpcOpts)
th.AssertNoErr(t, err)

err = waitForVpcAttachmentsAvailable(client, 100, createResp.Instance.ID, createVpcResp.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to delete vpc attachemnt")
err = vpc.Delete(client, createResp.Instance.ID, createVpcResp.ID)
th.AssertNoErr(t, err)
err = waitForVpcAttachmentsDeleted(client, 500, createResp.Instance.ID, createVpcResp.ID)
th.AssertNoErr(t, err)
})

t.Logf("Attempting to associate route table with vpc attachemnt")

associateOpts := association.CreateOpts{
RouterID: createResp.Instance.ID,
RouteTableID: createRtResp.ID,
AttachmentID: createVpcResp.ID,
}

associationResp, err := association.Create(client, associateOpts)
th.AssertNoErr(t, err)
th.AssertEquals(t, associateOpts.RouteTableID, associationResp.RouteTableID)
th.AssertEquals(t, associationResp.State, "pending")

err = waitForVpcAssociationAvailable(client, 100, createResp.Instance.ID, createRtResp.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to dissasociate vpc attachemnt")
err = association.Delete(client, association.DeleteOpts{
RouterID: createResp.Instance.ID,
RouteTableID: createRtResp.ID,
AttachmentID: createVpcResp.ID,
})
th.AssertNoErr(t, err)
})

}

func waitForVpcAssociationAvailable(client *golangsdk.ServiceClient, secs int, erId, rtId string) error {
return golangsdk.WaitFor(secs, func() (bool, error) {
listAssotiationResp, err := association.List(client, association.ListOpts{
RouterId: erId,
RouteTableId: rtId,
})
if err != nil {
return false, err
}
if listAssotiationResp.Associations[0].State == "available" {
return true, nil
}
return false, nil
})
}
159 changes: 159 additions & 0 deletions acceptance/openstack/er/propagations_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
package er

import (
"os"
"testing"

golangsdk "github.com/opentelekomcloud/gophertelekomcloud"
"github.com/opentelekomcloud/gophertelekomcloud/acceptance/clients"
"github.com/opentelekomcloud/gophertelekomcloud/acceptance/tools"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/common/pointerto"
tag "github.com/opentelekomcloud/gophertelekomcloud/openstack/common/tags"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/instance"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/propagation"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/route_table"
"github.com/opentelekomcloud/gophertelekomcloud/openstack/er/v3/vpc"
th "github.com/opentelekomcloud/gophertelekomcloud/testhelper"
)

func TestERPropagationsLifeCycle(t *testing.T) {
if os.Getenv("RUN_ER_LIFECYCLE") == "" {
t.Skip("too slow to run in zuul")
}

client, err := clients.NewERClient()
th.AssertNoErr(t, err)

createOpts := instance.CreateOpts{
Name: tools.RandomString("acctest_er_router-", 4),
Asn: 64512,
AutoAcceptSharedAttachments: pointerto.Bool(true),
AvailabilityZoneIDs: []string{
"eu-de-01",
"eu-de-02",
},
}

t.Logf("Attempting to create enterprise router")

createResp, err := instance.Create(client, createOpts)
th.AssertNoErr(t, err)

err = waitForInstanceAvailable(client, 100, createResp.Instance.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to delete enterprise router")
err = instance.Delete(client, createResp.Instance.ID)
th.AssertNoErr(t, err)
err = waitForInstanceDeleted(client, 500, createResp.Instance.ID)
})

createRouteTableOpts := route_table.CreateOpts{
Name: rtName,
RouterID: createResp.Instance.ID,
Description: &descriptionRt,
Tags: []tag.ResourceTag{
{
Key: "muh",
Value: "muh",
},
{
Key: "test",
Value: "test",
},
},
}

t.Logf("Attempting to create route table")
createRtResp, err := route_table.Create(client, createRouteTableOpts)
th.AssertNoErr(t, err)

err = waitForRouteTableAvailable(client, 300, createResp.Instance.ID, createRtResp.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to delete route table")
err = route_table.Delete(client, createResp.Instance.ID, createRtResp.ID)
th.AssertNoErr(t, err)
err = waitForRouteTableDeleted(client, 500, createResp.Instance.ID, createRtResp.ID)
})

t.Logf("Attempting to create vpc attachemnt")

createVpcOpts := vpc.CreateOpts{
Name: vpcName,
RouterID: createResp.Instance.ID,
VpcId: vpcId,
SubnetId: networkId,
Description: description,
AutoCreateVpcRoutes: true,
Tags: []tag.ResourceTag{
{
Key: "muh",
Value: "muh",
},
{
Key: "test",
Value: "test",
},
},
}

createVpcResp, err := vpc.Create(client, createVpcOpts)
th.AssertNoErr(t, err)

err = waitForVpcAttachmentsAvailable(client, 100, createResp.Instance.ID, createVpcResp.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to delete vpc attachemnt")
err = vpc.Delete(client, createResp.Instance.ID, createVpcResp.ID)
th.AssertNoErr(t, err)
err = waitForVpcAttachmentsDeleted(client, 500, createResp.Instance.ID, createVpcResp.ID)
th.AssertNoErr(t, err)
})

t.Logf("Attempting to create enterprise route propagation")

propagateOpts := propagation.CreateOpts{
RouterID: createResp.Instance.ID,
RouteTableID: createRtResp.ID,
AttachmentID: createVpcResp.ID,
}

propagateResp, err := propagation.Create(client, propagateOpts)
th.AssertNoErr(t, err)
th.AssertEquals(t, propagateOpts.RouteTableID, propagateResp.RouteTableID)
th.AssertEquals(t, propagateResp.State, "pending")

err = waitForVpcPropagationAvailable(client, 100, createResp.Instance.ID, createRtResp.ID)
th.AssertNoErr(t, err)

t.Cleanup(func() {
t.Logf("Attempting to disable propagation")
err = propagation.Delete(client, propagation.DeleteOpts{
RouterID: createResp.Instance.ID,
RouteTableID: createRtResp.ID,
AttachmentID: createVpcResp.ID,
})
th.AssertNoErr(t, err)
})

}

func waitForVpcPropagationAvailable(client *golangsdk.ServiceClient, secs int, erId, rtId string) error {
return golangsdk.WaitFor(secs, func() (bool, error) {
listPropagationResp, err := propagation.List(client, propagation.ListOpts{
RouterId: erId,
RouteTableId: rtId,
})
if err != nil {
return false, err
}
if listPropagationResp.Propagations[0].State == "available" {
return true, nil
}
return false, nil
})
}
41 changes: 41 additions & 0 deletions openstack/er/v3/association/Create.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package association

import (
golangsdk "github.com/opentelekomcloud/gophertelekomcloud"
"github.com/opentelekomcloud/gophertelekomcloud/internal/build"
"github.com/opentelekomcloud/gophertelekomcloud/internal/extract"
)

type CreateOpts struct {
RouterID string `json:"-" required:"true"`
RouteTableID string `json:"-" required:"true"`
AttachmentID string `json:"attachment_id,omitempty"`
}

func Create(client *golangsdk.ServiceClient, opts CreateOpts) (*Association, error) {
b, err := build.RequestBody(opts, "")
if err != nil {
return nil, err
}

raw, err := client.Post(client.ServiceURL("enterprise-router", opts.RouterID, "route-tables", opts.RouteTableID, "associate"), b, nil, &golangsdk.RequestOpts{
OkCodes: []int{202},
})
if err != nil {
return nil, err
}

var res Association
return &res, extract.IntoStructPtr(raw.Body, &res, "association")
}

type Association struct {
ID string `json:"id"`
RouteTableID string `json:"route_table_id"`
AttachmentID string `json:"attachment_id"`
ResourceType string `json:"resource_type"`
ResourceID string `json:"resource_id"`
State string `json:"state"`
CreatedAt string `json:"created_at"`
UpdatedAt string `json:"updated_at"`
}
24 changes: 24 additions & 0 deletions openstack/er/v3/association/Delete.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package association

import (
golangsdk "github.com/opentelekomcloud/gophertelekomcloud"
"github.com/opentelekomcloud/gophertelekomcloud/internal/build"
)

type DeleteOpts struct {
RouterID string `json:"-" required:"true"`
RouteTableID string `json:"-" required:"true"`
AttachmentID string `json:"attachment_id,omitempty"`
}

func Delete(client *golangsdk.ServiceClient, opts DeleteOpts) (err error) {
b, err := build.RequestBody(opts, "")
if err != nil {
return err
}

_, err = client.Post(client.ServiceURL("enterprise-router", opts.RouterID, "route-tables", opts.RouteTableID, "disassociate"), b, nil, &golangsdk.RequestOpts{
OkCodes: []int{202},
})
return
}
Loading