Skip to content

Commit

Permalink
Add data source for pubsub topics
Browse files Browse the repository at this point in the history
  • Loading branch information
mopp committed Oct 5, 2020
1 parent 9594637 commit 0af321b
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 0 deletions.
30 changes: 30 additions & 0 deletions google/data_source_pubsub_topic.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package google

import (
"fmt"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)

func dataSourceGooglePubsubService() *schema.Resource {

dsSchema := datasourceSchemaFromResourceSchema(resourcePubsubTopic().Schema)
addRequiredFieldsToSchema(dsSchema, "name")
addOptionalFieldsToSchema(dsSchema, "project")

return &schema.Resource{
Read: dataSourceGooglePubsubServiceRead,
Schema: dsSchema,
}
}

func dataSourceGooglePubsubServiceRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)

id, err := replaceVars(d, config, "namespaces/{{project}}/topics/{{name}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
return resourcePubsubTopicRead(d, meta)
}
76 changes: 76 additions & 0 deletions google/data_source_pubsub_topic_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package google

import (
"testing"

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

func TestAccDataSourceGooglePubsubTopic_basic(t *testing.T) {
t.Parallel()

context := map[string]interface{}{
"random_suffix": randString(t, 10),
}

vcrTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckPubsubTopicDestroyProducer(t),
Steps: []resource.TestStep{
{
Config: testAccDataSourceGooglePubsubTopic_basic(context),
Check: resource.ComposeTestCheckFunc(
checkDataSourceStateMatchesResourceState("data.google_pubsub_topic.foo", "google_pubsub_topic.foo"),
),
},
},
})
}

func TestAccDataSourceGooglePubsubTopic_optionalProject(t *testing.T) {
t.Parallel()

context := map[string]interface{}{
"random_suffix": randString(t, 10),
}

vcrTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckPubsubTopicDestroyProducer(t),
Steps: []resource.TestStep{
{
Config: testAccDataSourceGooglePubsubTopic_optionalProject(context),
Check: resource.ComposeTestCheckFunc(
checkDataSourceStateMatchesResourceState("data.google_pubsub_topic.foo", "google_pubsub_topic.foo"),
),
},
},
})
}

func testAccDataSourceGooglePubsubTopic_basic(context map[string]interface{}) string {
return Nprintf(`
resource "google_pubsub_topic" "foo" {
name = "tf-test-pubsub-%{random_suffix}"
}
data "google_pubsub_topic" "foo" {
name = google_pubsub_topic.foo.name
project = google_pubsub_topic.foo.project
}
`, context)
}

func testAccDataSourceGooglePubsubTopic_optionalProject(context map[string]interface{}) string {
return Nprintf(`
resource "google_pubsub_topic" "foo" {
name = "tf-test-pubsub-%{random_suffix}"
}
data "google_pubsub_topic" "foo" {
name = google_pubsub_topic.foo.name
}
`, context)
}
1 change: 1 addition & 0 deletions google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ func Provider() *schema.Provider {
"google_client_openid_userinfo": dataSourceGoogleClientOpenIDUserinfo(),
"google_cloudfunctions_function": dataSourceGoogleCloudFunctionsFunction(),
"google_cloud_run_service": dataSourceGoogleCloudRunService(),
"google_pubsub_topic": dataSourceGooglePubsubService(),
"google_composer_image_versions": dataSourceGoogleComposerImageVersions(),
"google_compute_address": dataSourceGoogleComputeAddress(),
"google_compute_backend_service": dataSourceGoogleComputeBackendService(),
Expand Down

0 comments on commit 0af321b

Please sign in to comment.