forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_obmcs_identity_swift_passwords_test.go
82 lines (75 loc) · 2.6 KB
/
data_source_obmcs_identity_swift_passwords_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
// 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 DatasourceIdentitySwiftPasswordsTestSuite struct {
suite.Suite
Client *baremetal.Client
Provider terraform.ResourceProvider
Providers map[string]terraform.ResourceProvider
Config string
ResourceName string
}
func (s *DatasourceIdentitySwiftPasswordsTestSuite) SetupTest() {
_, tokenFn := tokenize()
s.Client = testAccClient
s.Provider = testAccProvider
s.Providers = testAccProviders
s.Config = testProviderConfig() + tokenFn(`
resource "oci_identity_user" "t" {
name = "{{.token}}"
description = "tf test user"
}
resource "oci_identity_swift_password" "t" {
user_id = "${oci_identity_user.t.id}"
description = "tf test user swift password"
}`, nil)
s.ResourceName = "data.oci_identity_swift_passwords.p"
}
func (s *DatasourceIdentitySwiftPasswordsTestSuite) TestAccDatasourceIdentitySwiftPasswords_basic() {
resource.Test(s.T(), resource.TestCase{
Providers: s.Providers,
Steps: []resource.TestStep{
{
ImportState: true,
ImportStateVerify: true,
Config: s.Config + `
data "oci_identity_swift_passwords" "p" {
user_id = "${oci_identity_user.t.id}"
}`,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet(s.ResourceName, "passwords.#"),
),
},
{
Config: s.Config + `
data "oci_identity_swift_passwords" "p" {
user_id = "${oci_identity_user.t.id}"
filter {
name = "description"
values = ["${oci_identity_swift_password.t.description}"]
}
}`,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(s.ResourceName, "passwords.#", "1"),
resource.TestCheckResourceAttrSet(s.ResourceName, "passwords.0.id"),
resource.TestCheckResourceAttrSet(s.ResourceName, "passwords.0.user_id"),
resource.TestCheckResourceAttrSet(s.ResourceName, "passwords.0.time_created"),
resource.TestCheckResourceAttrSet(s.ResourceName, "passwords.0.expires_on"),
resource.TestCheckResourceAttr(s.ResourceName, "passwords.0.description", "tf test user swift password"),
resource.TestCheckResourceAttr(s.ResourceName, "passwords.0.state", "ACTIVE"),
resource.TestCheckResourceAttr(s.ResourceName, "passwords.0.inactive_state", "0"),
),
},
},
},
)
}
func TestDatasourceIdentitySwiftPasswordsTestSuite(t *testing.T) {
suite.Run(t, new(DatasourceIdentitySwiftPasswordsTestSuite))
}