forked from GoogleCloudPlatform/magic-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
privateca sweeper (GoogleCloudPlatform#5560)
- Loading branch information
Showing
1 changed file
with
127 additions
and
0 deletions.
There are no files selected for viewing
127 changes: 127 additions & 0 deletions
127
mmv1/third_party/terraform/tests/resource_privateca_certificate_authority_sweeper_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
package google | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"log" | ||
"strings" | ||
|
||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
) | ||
|
||
func init() { | ||
resource.AddTestSweepers("CertificateAuthority", &resource.Sweeper{ | ||
Name: "CertificateAuthority", | ||
F: testSweepCertificateAuthority, | ||
}) | ||
} | ||
|
||
// At the time of writing, the CI only passes us-central1 as the region | ||
func testSweepCertificateAuthority(region string) error { | ||
resourceName := "CertificateAuthority" | ||
log.Printf("[INFO][SWEEPER_LOG] Starting sweeper for %s", resourceName) | ||
|
||
config, err := sharedConfigForRegion(region) | ||
if err != nil { | ||
log.Printf("[INFO][SWEEPER_LOG] error getting shared config for region: %s", err) | ||
return err | ||
} | ||
|
||
err = config.LoadAndValidate(context.Background()) | ||
if err != nil { | ||
log.Printf("[INFO][SWEEPER_LOG] error loading: %s", err) | ||
return err | ||
} | ||
|
||
// Setup variables to replace in list template | ||
d := &ResourceDataMock{ | ||
FieldsInSchema: map[string]interface{}{ | ||
"project": config.Project, | ||
"location": region, | ||
}, | ||
} | ||
|
||
caPoolsUrl, err := replaceVars(d, config, "{{PrivatecaBasePath}}projects/{{project}}/locations/{{location}}/caPools") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
res, err := sendRequest(config, "GET", config.Project, caPoolsUrl, config.userAgent, nil) | ||
if err != nil { | ||
log.Printf("[INFO][SWEEPER_LOG] Error in response from request %s: %s", caPoolsUrl, err) | ||
return nil | ||
} | ||
|
||
resourceList, ok := res["caPools"] | ||
if !ok { | ||
log.Printf("[INFO][SWEEPER_LOG] Nothing found in response.") | ||
return nil | ||
} | ||
|
||
rl := resourceList.([]interface{}) | ||
|
||
log.Printf("[INFO][SWEEPER_LOG] Found %d items in %s list response.", len(rl), resourceName) | ||
// Count items that weren't sweeped. | ||
nonPrefixCount := 0 | ||
for _, ri := range rl { | ||
obj := ri.(map[string]interface{}) | ||
|
||
poolName := obj["name"].(string) | ||
|
||
caListUrl := config.PrivatecaBasePath + poolName + "/certificateAuthorities" | ||
|
||
res, err := sendRequest(config, "GET", config.Project, caListUrl, config.userAgent, nil) | ||
if err != nil { | ||
log.Printf("[INFO][SWEEPER_LOG] Error in response from request %s: %s", caPoolsUrl, err) | ||
return nil | ||
} | ||
|
||
caResourceList, ok := res["certificateAuthorities"] | ||
if !ok { | ||
log.Printf("[INFO][SWEEPER_LOG] Nothing found in certificate authority list response.") | ||
continue | ||
} | ||
|
||
carl := caResourceList.([]interface{}) | ||
for _, cai := range carl { | ||
obj := cai.(map[string]interface{}) | ||
caName := obj["name"].(string) | ||
|
||
// Increment count and skip if resource is not sweepable. | ||
nameParts := strings.Split(caName, "/") | ||
id := nameParts[len(nameParts)-1] | ||
if !isSweepableTestResource(id) { | ||
nonPrefixCount++ | ||
continue | ||
} | ||
|
||
if obj["state"] == "DELETED" { | ||
continue | ||
} | ||
|
||
if obj["state"] == "ENABLED" { | ||
disableUrl := fmt.Sprintf("%s%s:disable", config.PrivatecaBasePath, caName) | ||
_, err = sendRequest(config, "POST", config.Project, disableUrl, config.userAgent, nil) | ||
if err != nil { | ||
log.Printf("[INFO][SWEEPER_LOG] Error disabling for url %s : %s", disableUrl, err) | ||
} else { | ||
log.Printf("[INFO][SWEEPER_LOG] Disabling %s resource: %s", resourceName, caName) | ||
} | ||
} | ||
|
||
deleteUrl := config.PrivatecaBasePath + caName | ||
_, err = sendRequest(config, "DELETE", config.Project, deleteUrl, config.userAgent, nil) | ||
if err != nil { | ||
log.Printf("[INFO][SWEEPER_LOG] Error deleting for url %s : %s", deleteUrl, err) | ||
} else { | ||
log.Printf("[INFO][SWEEPER_LOG] Deleted a %s resource: %s", resourceName, caName) | ||
} | ||
} | ||
} | ||
|
||
if nonPrefixCount > 0 { | ||
log.Printf("[INFO][SWEEPER_LOG] %d items without tf-test prefix remain.", nonPrefixCount) | ||
} | ||
|
||
return nil | ||
} |