Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit 493f173

Browse files
authored
Merge pull request #35 from cyrilgdn/fix-grant-option
mysql_grant: Fix the read of grant option.
2 parents 218109d + 0a47158 commit 493f173

File tree

2 files changed

+65
-4
lines changed

2 files changed

+65
-4
lines changed

mysql/resource_grant.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,10 @@ func ReadGrant(d *schema.ResourceData, meta interface{}) error {
268268
for _, grant := range grants {
269269
if grant.Database == database && grant.Table == table {
270270
privileges = grant.Privileges
271-
}
272-
273-
if grant.Grant {
274-
grantOption = true
271+
if grant.Grant {
272+
grantOption = true
273+
}
274+
break
275275
}
276276
}
277277

mysql/resource_grant_test.go

+61
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,67 @@ func TestAccGrant(t *testing.T) {
4646
})
4747
}
4848

49+
func TestAccGrant_grantOption(t *testing.T) {
50+
randInt := rand.Intn(100)
51+
db1 := fmt.Sprintf("tf-test-%d", randInt)
52+
db2 := fmt.Sprintf("tf-test-%d", randInt+1)
53+
54+
config := fmt.Sprintf(`
55+
resource "mysql_database" "db1" {
56+
name = "%s"
57+
}
58+
59+
resource "mysql_database" "db2" {
60+
name = "%s"
61+
}
62+
63+
resource "mysql_user" "test" {
64+
user = "jdoe-%d"
65+
host = "example.com"
66+
}
67+
68+
resource "mysql_grant" "test_db1" {
69+
user = mysql_user.test.user
70+
host = mysql_user.test.host
71+
database = mysql_database.db1.name
72+
privileges = ["SELECT"]
73+
}
74+
75+
resource "mysql_grant" "test_db2" {
76+
user = mysql_user.test.user
77+
host = mysql_user.test.host
78+
database = mysql_database.db2.name
79+
privileges = ["SELECT"]
80+
grant = true
81+
}
82+
`, db1, db2, randInt)
83+
84+
resource.Test(t, resource.TestCase{
85+
PreCheck: func() { testAccPreCheck(t) },
86+
Providers: testAccProviders,
87+
CheckDestroy: testAccGrantCheckDestroy,
88+
Steps: []resource.TestStep{
89+
{
90+
Config: config,
91+
Check: resource.ComposeTestCheckFunc(
92+
testAccPrivilegeExists("mysql_grant.test_db1", "SELECT"),
93+
resource.TestCheckResourceAttr("mysql_grant.test_db1", "user", fmt.Sprintf("jdoe-%d", randInt)),
94+
resource.TestCheckResourceAttr("mysql_grant.test_db1", "host", "example.com"),
95+
resource.TestCheckResourceAttr("mysql_grant.test_db1", "database", db1),
96+
resource.TestCheckResourceAttr("mysql_grant.test_db1", "table", "*"),
97+
resource.TestCheckResourceAttr("mysql_grant.test_db1", "grant", "false"),
98+
99+
testAccPrivilegeExists("mysql_grant.test_db2", "SELECT"),
100+
resource.TestCheckResourceAttr("mysql_grant.test_db2", "user", fmt.Sprintf("jdoe-%d", randInt)),
101+
resource.TestCheckResourceAttr("mysql_grant.test_db2", "host", "example.com"),
102+
resource.TestCheckResourceAttr("mysql_grant.test_db2", "database", db2),
103+
resource.TestCheckResourceAttr("mysql_grant.test_db2", "grant", "true"),
104+
),
105+
},
106+
},
107+
})
108+
}
109+
49110
func TestAccGrant_role(t *testing.T) {
50111
rand.Seed(time.Now().UnixNano())
51112
dbName := fmt.Sprintf("tf-test-%d", rand.Intn(100))

0 commit comments

Comments
 (0)