@@ -46,6 +46,67 @@ func TestAccGrant(t *testing.T) {
46
46
})
47
47
}
48
48
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
+
49
110
func TestAccGrant_role (t * testing.T ) {
50
111
rand .Seed (time .Now ().UnixNano ())
51
112
dbName := fmt .Sprintf ("tf-test-%d" , rand .Intn (100 ))
0 commit comments