-
Notifications
You must be signed in to change notification settings - Fork 62
/
resource_snmp_test.go
92 lines (82 loc) · 2.07 KB
/
resource_snmp_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
89
90
91
92
package routeros
import (
"fmt"
"testing"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
"github.com/hashicorp/terraform-plugin-testing/terraform"
)
const testSNMPMinVersion = "7.8"
const testSNMPAddress = "routeros_snmp.test"
func TestAccSNMPTest_basic(t *testing.T) {
if !testCheckMinVersion(t, testSNMPMinVersion) {
t.Logf("Test skipped, the minimum required version is %v", testSNMPMinVersion)
return
}
for _, name := range testNames {
t.Run(name, func(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testSetTransportEnv(t, name)
},
ProviderFactories: testAccProviderFactories,
Steps: []resource.TestStep{
{
Config: testAccSNMPConfig(0),
Check: resource.ComposeTestCheckFunc(
testAccCheckSNMPExists(testSNMPAddress),
resource.TestCheckResourceAttr(testSNMPAddress, "enabled", "true"),
),
},
{
Config: testAccSNMPConfig(1),
Check: resource.ComposeTestCheckFunc(
testAccCheckSNMPExists(testSNMPAddress),
resource.TestCheckResourceAttr(testSNMPAddress, "enabled", "false"),
),
},
},
})
})
}
}
func testAccCheckSNMPExists(name string) resource.TestCheckFunc {
return func(s *terraform.State) error {
rs, ok := s.RootModule().Resources[name]
if !ok {
return fmt.Errorf("not found: %s", name)
}
if rs.Primary.ID == "" {
return fmt.Errorf("no id is set")
}
return nil
}
}
func testAccSNMPConfig(n int) string {
var conf = []string{
`
resource "routeros_snmp_community" "test" {
name = "private"
}
resource "routeros_snmp" "test" {
contact = "John D."
enabled = true
engine_id_suffix = "8a3c"
location = "Backyard"
trap_community = "private"
trap_generators = "start-trap"
trap_version = 3
}`,
`
resource "routeros_snmp" "test" {
contact = ""
enabled = false
engine_id_suffix = ""
location = ""
trap_community = "public"
trap_generators = "temp-exception"
trap_version = 1
}`,
}
return providerConfig + conf[n]
}