forked from PagerDuty/terraform-provider-pagerduty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_source_pagerduty_team_test.go
66 lines (53 loc) · 1.57 KB
/
data_source_pagerduty_team_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package pagerduty
import (
"fmt"
"testing"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/terraform"
)
func TestAccDataSourcePagerDutyTeam_Basic(t *testing.T) {
name := fmt.Sprintf("tf-%s", acctest.RandString(5))
description := "team description"
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccDataSourcePagerDutyTeamConfig(name, description),
Check: resource.ComposeTestCheckFunc(
testAccDataSourcePagerDutyTeam("pagerduty_team.test", "data.pagerduty_team.by_name"),
),
},
},
})
}
func testAccDataSourcePagerDutyTeam(src, n string) resource.TestCheckFunc {
return func(s *terraform.State) error {
srcR := s.RootModule().Resources[src]
srcA := srcR.Primary.Attributes
r := s.RootModule().Resources[n]
a := r.Primary.Attributes
if a["id"] == "" {
return fmt.Errorf("Expected to get a user ID from PagerDuty")
}
testAtts := []string{"id", "name", "description"}
for _, att := range testAtts {
if a[att] != srcA[att] {
return fmt.Errorf("Expected the team %s to be: %s, but got: %s", att, srcA[att], a[att])
}
}
return nil
}
}
func testAccDataSourcePagerDutyTeamConfig(name, description string) string {
return fmt.Sprintf(`
resource "pagerduty_team" "test" {
name = "%s"
description = "%s"
}
data "pagerduty_team" "by_name" {
name = pagerduty_team.test.name
}
`, name, description)
}