-
Notifications
You must be signed in to change notification settings - Fork 216
/
Copy pathdata_source_pagerduty_service_test.go
88 lines (73 loc) · 2.24 KB
/
data_source_pagerduty_service_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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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 TestAccDataSourcePagerDutyService_Basic(t *testing.T) {
username := fmt.Sprintf("tf-%s", acctest.RandString(5))
email := fmt.Sprintf("%[email protected]", username)
service := fmt.Sprintf("tf-%s", acctest.RandString(5))
escalationPolicy := fmt.Sprintf("tf-%s", acctest.RandString(5))
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccDataSourcePagerDutyServiceConfig(username, email, service, escalationPolicy),
Check: resource.ComposeTestCheckFunc(
testAccDataSourcePagerDutyService("pagerduty_service.test", "data.pagerduty_service.by_name"),
),
},
},
})
}
func testAccDataSourcePagerDutyService(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 service ID from PagerDuty")
}
testAtts := []string{"id", "name"}
for _, att := range testAtts {
if a[att] != srcA[att] {
return fmt.Errorf("Expected the service %s to be: %s, but got: %s", att, srcA[att], a[att])
}
}
return nil
}
}
func testAccDataSourcePagerDutyServiceConfig(username, email, service, escalationPolicy string) string {
return fmt.Sprintf(`
resource "pagerduty_user" "test" {
name = "%s"
email = "%s"
}
resource "pagerduty_escalation_policy" "test" {
name = "%s"
num_loops = 2
rule {
escalation_delay_in_minutes = 10
target {
type = "user_reference"
id = pagerduty_user.test.id
}
}
}
resource "pagerduty_service" "test" {
name = "%s"
auto_resolve_timeout = 14400
acknowledgement_timeout = 600
escalation_policy = pagerduty_escalation_policy.test.id
alert_creation = "create_incidents"
}
data "pagerduty_service" "by_name" {
name = pagerduty_service.test.name
}
`, username, email, service, escalationPolicy)
}