forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database_supported_operations_datasource_test.go
83 lines (67 loc) · 2.03 KB
/
database_supported_operations_datasource_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
// Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
package main
import (
"testing"
"time"
"github.com/MustWin/baremetal-sdk-go"
"github.com/MustWin/terraform-Oracle-BareMetal-Provider/client/mocks"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
"github.com/stretchr/testify/suite"
)
type DatasourceDatabaseSupportedOperationTestSuite struct {
suite.Suite
Client *mocks.BareMetalClient
Provider terraform.ResourceProvider
Providers map[string]terraform.ResourceProvider
TimeCreated baremetal.Time
Config string
ResourceName string
Res *baremetal.ListSupportedOperations
}
func (s *DatasourceDatabaseSupportedOperationTestSuite) SetupTest() {
s.Client = &mocks.BareMetalClient{}
s.Provider = Provider(
func(d *schema.ResourceData) (interface{}, error) {
return s.Client, nil
},
)
s.Providers = map[string]terraform.ResourceProvider{
"baremetal": s.Provider,
}
s.TimeCreated = baremetal.Time{Time: time.Now()}
s.Config = `
data "baremetal_database_supported_operations" "t" {}
`
s.Config += testProviderConfig
s.ResourceName = "data.baremetal_database_supported_operations.t"
s.Res = &baremetal.ListSupportedOperations{
SupportedOperations: []baremetal.SupportedOperation{
{
ID: "test-1",
},
{
ID: "test-2",
},
},
}
}
func (s *DatasourceDatabaseSupportedOperationTestSuite) TestDatabaseListSupportedOperations() {
s.Client.On("ListSupportedOperations").Return(s.Res, nil)
resource.UnitTest(s.T(), resource.TestCase{
Providers: s.Providers,
Steps: []resource.TestStep{
{
Config: s.Config,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(s.ResourceName, "supported_operations.0.id", "test-1"),
),
},
},
})
s.Client.AssertCalled(s.T(), "ListSupportedOperations")
}
func TestDatasourceDatabaseSupportedOperationTestSuite(t *testing.T) {
suite.Run(t, new(DatasourceDatabaseSupportedOperationTestSuite))
}