forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_obmcs_core_cpe_test.go
69 lines (61 loc) · 1.82 KB
/
data_source_obmcs_core_cpe_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
// Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
package main
import (
"testing"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"github.com/oracle/bmcs-go-sdk"
"github.com/stretchr/testify/suite"
)
type DatasourceCoreCpeTestSuite struct {
suite.Suite
Client *baremetal.Client
Config string
Provider terraform.ResourceProvider
Providers map[string]terraform.ResourceProvider
ResourceName string
Token string
TokenFn TokenFn
}
func (s *DatasourceCoreCpeTestSuite) SetupTest() {
s.Token, s.TokenFn = tokenize()
s.Client = testAccClient
s.Provider = testAccProvider
s.Providers = testAccProviders
s.Config = testProviderConfig() + s.TokenFn(`
resource "oci_core_cpe" "t" {
compartment_id = "${var.compartment_id}"
display_name = "{{.token}}"
ip_address = "142.10.10.1"
}`, nil)
s.ResourceName = "data.oci_core_cpes.s"
}
func (s *DatasourceCoreCpeTestSuite) TestAccDatasourceCoreCpe_basic() {
resource.Test(s.T(), resource.TestCase{
PreventPostDestroyRefresh: true,
Providers: s.Providers,
Steps: []resource.TestStep{
{
ImportState: true,
ImportStateVerify: true,
Config: s.Config + s.TokenFn(`
data "oci_core_cpes" "s" {
compartment_id = "${oci_core_cpe.t.compartment_id}"
filter {
name = "display_name"
values = ["{{.token}}"]
}
}`, nil),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(s.ResourceName, "cpes.#", "1"),
resource.TestCheckResourceAttr(s.ResourceName, "cpes.0.display_name", s.Token),
resource.TestCheckResourceAttr(s.ResourceName, "cpes.0.ip_address", "142.10.10.1"),
),
},
},
},
)
}
func TestDatasourceCoreCpeTestSuite(t *testing.T) {
suite.Run(t, new(DatasourceCoreCpeTestSuite))
}