forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_obmcs_identity_group_test.go
90 lines (77 loc) · 2.12 KB
/
data_source_obmcs_identity_group_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
// Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
package main
import (
"testing"
"time"
"github.com/MustWin/baremetal-sdk-go"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
"github.com/stretchr/testify/suite"
)
type ResourceIdentityGroupsTestSuite struct {
suite.Suite
Client mockableClient
Config string
Provider terraform.ResourceProvider
Providers map[string]terraform.ResourceProvider
ResourceName string
List *baremetal.ListGroups
}
func (s *ResourceIdentityGroupsTestSuite) SetupTest() {
s.Client = GetTestProvider()
s.Provider = Provider(func(d *schema.ResourceData) (interface{}, error) {
return s.Client, nil
})
s.Providers = map[string]terraform.ResourceProvider{
"baremetal": s.Provider,
}
s.Config = `
resource "baremetal_identity_group" "t" {
name = "groupname"
description = "group desc!"
}
`
s.Config += testProviderConfig()
s.ResourceName = "data.baremetal_identity_groups.t"
b1 := baremetal.Group{
ID: "id",
Name: "groupname",
CompartmentID: "compartment",
Description: "blah",
State: baremetal.ResourceActive,
TimeCreated: time.Now(),
}
b2 := b1
b2.ID = "id2"
s.List = &baremetal.ListGroups{
Groups: []baremetal.Group{b1, b2},
}
}
func (s *ResourceIdentityGroupsTestSuite) TestReadGroups() {
resource.UnitTest(s.T(), resource.TestCase{
PreventPostDestroyRefresh: true,
Providers: s.Providers,
Steps: []resource.TestStep{
{
ImportState: true,
ImportStateVerify: true,
Config: s.Config,
},
{
Config: s.Config + `
data "baremetal_identity_groups" "t" {
compartment_id = "${var.compartment_id}"
}`,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet(s.ResourceName, "groups.0.id"),
resource.TestCheckResourceAttrSet(s.ResourceName, "groups.#"),
),
},
},
},
)
}
func TestResourceIdentityGroupsTestSuite(t *testing.T) {
suite.Run(t, new(ResourceIdentityGroupsTestSuite))
}