forked from hashicorp/terraform-provider-google
-
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.
Merge pull request hashicorp#477 from modular-magician/codegen-pr-1450
Autogen for region read, cloud scheduler examples
- Loading branch information
Showing
5 changed files
with
284 additions
and
205 deletions.
There are no files selected for viewing
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
183 changes: 183 additions & 0 deletions
183
google-beta/resource_cloud_scheduler_job_generated_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,183 @@ | ||
// ---------------------------------------------------------------------------- | ||
// | ||
// *** AUTO GENERATED CODE *** AUTO GENERATED CODE *** | ||
// | ||
// ---------------------------------------------------------------------------- | ||
// | ||
// This file is automatically generated by Magic Modules and manual | ||
// changes will be clobbered when the file is regenerated. | ||
// | ||
// Please read more about how to change this file in | ||
// .github/CONTRIBUTING.md. | ||
// | ||
// ---------------------------------------------------------------------------- | ||
|
||
package google | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/hashicorp/terraform/helper/acctest" | ||
"github.com/hashicorp/terraform/helper/resource" | ||
"github.com/hashicorp/terraform/terraform" | ||
) | ||
|
||
func TestAccCloudSchedulerJob_schedulerJobPubsubExample(t *testing.T) { | ||
t.Parallel() | ||
|
||
context := map[string]interface{}{ | ||
"random_suffix": acctest.RandString(10), | ||
} | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
CheckDestroy: testAccCheckCloudSchedulerJobDestroy, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccCloudSchedulerJob_schedulerJobPubsubExample(context), | ||
}, | ||
{ | ||
ResourceName: "google_cloud_scheduler_job.job", | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
ImportStateVerifyIgnore: []string{"region"}, | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccCloudSchedulerJob_schedulerJobPubsubExample(context map[string]interface{}) string { | ||
return Nprintf(` | ||
resource "google_pubsub_topic" "topic" { | ||
name = "job-topic-%{random_suffix}" | ||
} | ||
resource "google_cloud_scheduler_job" "job" { | ||
name = "test-job-%{random_suffix}" | ||
description = "test job" | ||
schedule = "*/2 * * * *" | ||
pubsub_target { | ||
topic_name = "${google_pubsub_topic.topic.id}" | ||
data = "${base64encode("test")}" | ||
} | ||
} | ||
`, context) | ||
} | ||
|
||
func TestAccCloudSchedulerJob_schedulerJobHttpExample(t *testing.T) { | ||
t.Parallel() | ||
|
||
context := map[string]interface{}{ | ||
"random_suffix": acctest.RandString(10), | ||
} | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
CheckDestroy: testAccCheckCloudSchedulerJobDestroy, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccCloudSchedulerJob_schedulerJobHttpExample(context), | ||
}, | ||
{ | ||
ResourceName: "google_cloud_scheduler_job.job", | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
ImportStateVerifyIgnore: []string{"region"}, | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccCloudSchedulerJob_schedulerJobHttpExample(context map[string]interface{}) string { | ||
return Nprintf(` | ||
resource "google_cloud_scheduler_job" "job" { | ||
name = "test-job-%{random_suffix}" | ||
description = "test http job" | ||
schedule = "*/8 * * * *" | ||
time_zone = "America/New_York" | ||
http_target { | ||
http_method = "POST" | ||
uri = "https://example.com/ping" | ||
} | ||
} | ||
`, context) | ||
} | ||
|
||
func TestAccCloudSchedulerJob_schedulerJobAppEngineExample(t *testing.T) { | ||
t.Parallel() | ||
|
||
context := map[string]interface{}{ | ||
"random_suffix": acctest.RandString(10), | ||
} | ||
|
||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t) }, | ||
Providers: testAccProviders, | ||
CheckDestroy: testAccCheckCloudSchedulerJobDestroy, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccCloudSchedulerJob_schedulerJobAppEngineExample(context), | ||
}, | ||
{ | ||
ResourceName: "google_cloud_scheduler_job.job", | ||
ImportState: true, | ||
ImportStateVerify: true, | ||
ImportStateVerifyIgnore: []string{"region"}, | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccCloudSchedulerJob_schedulerJobAppEngineExample(context map[string]interface{}) string { | ||
return Nprintf(` | ||
resource "google_cloud_scheduler_job" "job" { | ||
name = "test-job-%{random_suffix}" | ||
schedule = "*/4 * * * *" | ||
description = "test app engine job" | ||
time_zone = "Europe/London" | ||
app_engine_http_target { | ||
http_method = "POST" | ||
app_engine_routing { | ||
service = "web" | ||
version = "prod" | ||
instance = "my-instance-001" | ||
} | ||
relative_uri = "/ping" | ||
} | ||
} | ||
`, context) | ||
} | ||
|
||
func testAccCheckCloudSchedulerJobDestroy(s *terraform.State) error { | ||
for name, rs := range s.RootModule().Resources { | ||
if rs.Type != "google_cloud_scheduler_job" { | ||
continue | ||
} | ||
if strings.HasPrefix(name, "data.") { | ||
continue | ||
} | ||
|
||
config := testAccProvider.Meta().(*Config) | ||
|
||
url, err := replaceVarsForTest(rs, "https://cloudscheduler.googleapis.com/v1beta1/projects/{{project}}/locations/{{region}}/jobs/{{name}}") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
_, err = sendRequest(config, "GET", url, nil) | ||
if err == nil { | ||
return fmt.Errorf("CloudSchedulerJob still exists at %s", url) | ||
} | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.