Skip to content

Commit

Permalink
🧹 sweepers, but now they're working
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarhermoso committed Oct 12, 2024
1 parent 341a9ef commit 625c8a2
Show file tree
Hide file tree
Showing 9 changed files with 123 additions and 14 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
fi
- name: Run tests
run: go test -v -cover ./internal/provider/...
env:
TF_ACC: '1'
BINARYLANE_API_TOKEN: ${{ secrets.BINARYLANE_API_TOKEN }}fi
- name: Run sweepers
if: always()
run: go test -v ./internal/provider/... -sweep=all
env:
TF_ACC: '1'
BINARYLANE_API_TOKEN: ${{ secrets.BINARYLANE_API_TOKEN }}
Expand Down
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ eval export $(cat .env)
go test -v ./internal/provider/...
```

To run Sweepers:

```sh
go test -v ./internal/provider/... -sweep=all
```

### Update modules

```sh
Expand Down
7 changes: 5 additions & 2 deletions internal/provider/load_balancer_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,12 @@ func (r *loadBalancerResource) Create(ctx context.Context, req resource.CreateRe
tflog.Info(ctx, fmt.Sprintf("Creating Load Balancer: name=%s", data.Name.ValueString()))

const maxRetries = 3
var lbResp binarylane.PostLoadBalancersResponse
var lbResp *binarylane.PostLoadBalancersResponse

retryLoop:
for i := 0; i < maxRetries; i++ {
lbResp, err := r.bc.client.PostLoadBalancersWithResponse(ctx, body)
var err error
lbResp, err = r.bc.client.PostLoadBalancersWithResponse(ctx, body)
if err != nil {
tflog.Info(ctx, fmt.Sprintf("Attempted to create new load balancer: request=%+v", body))
resp.Diagnostics.AddError(
Expand Down Expand Up @@ -174,6 +175,8 @@ retryLoop:
return
}

data.Id = types.Int64Value(*lbResp.JSON200.LoadBalancer.Id)

// Save data into Terraform state
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)

Expand Down
4 changes: 2 additions & 2 deletions internal/provider/load_balancer_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ func init() {
if err != nil {
return fmt.Errorf("Error deleting load balancer %d for test sweep: %w", *lb.Id, err)
}
if lbResp.StatusCode() != http.StatusOK {
return fmt.Errorf("Unexpected status deleting load balancer %d in test sweep: %s", *lb.Id, lbResp.Body)
if lbResp.StatusCode() != http.StatusNoContent {
return fmt.Errorf("Unexpected status %d deleting load balancer %d in test sweep: %s", lbResp.StatusCode(), *lb.Id, lbResp.Body)
}
log.Println("Deleted load balancer during test sweep:", *lb.Id)
}
Expand Down
5 changes: 3 additions & 2 deletions internal/provider/server_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,12 @@ func (r *serverResource) Create(ctx context.Context, req resource.CreateRequest,
}

const maxRetries = 3
var serverResp binarylane.PostServersResponse
var serverResp *binarylane.PostServersResponse

retryLoop:
for i := 0; i < maxRetries; i++ {
serverResp, err := r.bc.client.PostServersWithResponse(ctx, body)
var err error
serverResp, err = r.bc.client.PostServersWithResponse(ctx, body)
if err != nil {
resp.Diagnostics.AddError(
fmt.Sprintf("Error creating server: name=%s", data.Name.ValueString()),
Expand Down
18 changes: 13 additions & 5 deletions internal/provider/server_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,13 @@ echo "Hello World" > /var/tmp/output.txt
})
}

func TestSweepLoadBalancer(t *testing.T) {
t.Skip("This is a placeholder to trigger the sweeper")
}

func init() {
resource.AddTestSweepers("server", &resource.Sweeper{
Name: "server",
Dependencies: []string{},
Name: "server",
F: func(_ string) error {
endpoint := os.Getenv("BINARYLANE_API_ENDPOINT")
if endpoint == "" {
Expand Down Expand Up @@ -161,12 +164,17 @@ func init() {
servers := *serverResp.JSON200.Servers
for _, s := range servers {
if strings.HasPrefix(*s.Name, "tf-test-") {
serverResp, err := client.DeleteLoadBalancersLoadBalancerIdWithResponse(ctx, *s.Id)
reason := "Terraform deletion"
params := binarylane.DeleteServersServerIdParams{
Reason: &reason,
}

serverResp, err := client.DeleteServersServerIdWithResponse(ctx, *s.Id, &params)
if err != nil {
return fmt.Errorf("Error deleting server %d during test sweep: %w", *s.Id, err)
}
if serverResp.StatusCode() != http.StatusOK {
return fmt.Errorf("Unexpected status deleting server %d in test sweep: %s", *s.Id, serverResp.Body)
if serverResp.StatusCode() != http.StatusNoContent {
return fmt.Errorf("Unexpected status %d deleting server %d in test sweep: %s", serverResp.StatusCode(), *s.Id, serverResp.Body)
}
log.Println("Deleted server during test sweep:", *s.Id)
}
Expand Down
5 changes: 3 additions & 2 deletions internal/provider/ssh_key_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,12 @@ func (r *sshKeyResource) Create(ctx context.Context, req resource.CreateRequest,

// Create API call logic
const maxRetries = 3
var sshResp binarylane.PostAccountKeysResponse
var sshResp *binarylane.PostAccountKeysResponse

retryLoop:
for i := 0; i < maxRetries; i++ {
sshResp, err := r.bc.client.PostAccountKeysWithResponse(ctx, binarylane.SshKeyRequest{
var err error
sshResp, err = r.bc.client.PostAccountKeysWithResponse(ctx, binarylane.SshKeyRequest{
Name: data.Name.ValueString(),
Default: data.Default.ValueBoolPointer(),
PublicKey: data.PublicKey.ValueString(),
Expand Down
75 changes: 74 additions & 1 deletion internal/provider/ssh_key_resource_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
package provider

import (
"context"
"crypto/ed25519"
"encoding/base64"
"fmt"
"log"
"net/http"
"os"
"strings"
"terraform-provider-binarylane/internal/binarylane"
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
Expand All @@ -20,7 +26,7 @@ func TestSshKeyResource(t *testing.T) {
{
Config: providerConfig + `
resource "binarylane_ssh_key" "test" {
name = "tf_ssh_key_resource_test"
name = "tf-test-key-resource-test"
public_key = "` + publicKey + `"
}
Expand Down Expand Up @@ -106,3 +112,70 @@ func ImportByFingerprint(state *terraform.State) (fingerprint string, err error)

return rawState["fingerprint"], nil
}

func init() {
resource.AddTestSweepers("ssh_key", &resource.Sweeper{
Name: "ssh_key",
F: func(_ string) error {
endpoint := os.Getenv("BINARYLANE_API_ENDPOINT")
if endpoint == "" {
endpoint = "https://api.binarylane.com.au/v2"
}
token := os.Getenv("BINARYLANE_API_TOKEN")

client, err := binarylane.NewClientWithAuth(
endpoint,
token,
)

if err != nil {
return fmt.Errorf("Error creating Binary Lane API client: %w", err)
}

ctx := context.Background()

var page int32 = 1
perPage := int32(200)
nextPage := true

for nextPage {
params := binarylane.GetAccountKeysParams{
Page: &page,
PerPage: &perPage,
}

keyResp, err := client.GetAccountKeysWithResponse(ctx, &params)
if err != nil {
return fmt.Errorf("Error getting SSH keys for test sweep: %w", err)
}

if keyResp.StatusCode() != http.StatusOK {
return fmt.Errorf("Unexpected status code getting SSH keys for test sweep: %s", keyResp.Body)
}

keys := keyResp.JSON200.SshKeys
for _, k := range keys {
if strings.HasPrefix(*k.Name, "tf-test-") {

keyResp, err := client.DeleteAccountKeysKeyIdWithResponse(ctx, int(*k.Id))
if err != nil {
return fmt.Errorf("Error deleting SSH key %d for test sweep: %w", *k.Id, err)
}
if keyResp.StatusCode() != http.StatusNoContent {
return fmt.Errorf("Unexpected status %d deleting SSH key %d for test sweep: %s", keyResp.StatusCode(), *k.Id, keyResp.Body)
}
log.Println("Deleted SSH key for test sweep:", *k.Id)
}
}
if keyResp.JSON200.Links == nil || keyResp.JSON200.Links.Pages == nil || keyResp.JSON200.Links.Pages.Next == nil {
nextPage = false
break
}

page++
}

return nil
},
})
}
11 changes: 11 additions & 0 deletions internal/provider/sweeper_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package provider

import (
"testing"

"github.com/hashicorp/terraform-plugin-testing/helper/resource"
)

func TestMain(m *testing.M) {
resource.TestMain(m)
}

0 comments on commit 625c8a2

Please sign in to comment.