@@ -29,7 +29,7 @@ func TestListGroupVariabless(t *testing.T) {
29
29
mux .HandleFunc ("/api/v4/groups/1/variables" ,
30
30
func (w http.ResponseWriter , r * http.Request ) {
31
31
testMethod (t , r , http .MethodGet )
32
- fmt .Fprint (w , `[{"key": "TEST_VARIABLE_1","value": "test1","protected": false,"masked": true}]` )
32
+ fmt .Fprint (w , `[{"key": "TEST_VARIABLE_1","value": "test1","protected": false,"masked": true,"hidden": true }]` )
33
33
})
34
34
35
35
variables , _ , err := client .GroupVariables .ListVariables (1 , & ListGroupVariablesOptions {})
@@ -43,6 +43,7 @@ func TestListGroupVariabless(t *testing.T) {
43
43
Value : "test1" ,
44
44
Protected : false ,
45
45
Masked : true ,
46
+ Hidden : true ,
46
47
},
47
48
}
48
49
@@ -58,15 +59,15 @@ func TestGetGroupVariable(t *testing.T) {
58
59
func (w http.ResponseWriter , r * http.Request ) {
59
60
testMethod (t , r , http .MethodGet )
60
61
testParams (t , r , "filter%5Benvironment_scope%5D=prod" )
61
- fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","value": "test1","protected": false,"masked": true}` )
62
+ fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","value": "test1","protected": false,"masked": true,"hidden": false }` )
62
63
})
63
64
64
65
variable , _ , err := client .GroupVariables .GetVariable (1 , "TEST_VARIABLE_1" , & GetGroupVariableOptions {Filter : & VariableFilter {EnvironmentScope : "prod" }})
65
66
if err != nil {
66
67
t .Errorf ("GroupVariables.GetVariable returned error: %v" , err )
67
68
}
68
69
69
- want := & GroupVariable {Key : "TEST_VARIABLE_1" , Value : "test1" , Protected : false , Masked : true }
70
+ want := & GroupVariable {Key : "TEST_VARIABLE_1" , Value : "test1" , Protected : false , Masked : true , Hidden : false }
70
71
if ! reflect .DeepEqual (want , variable ) {
71
72
t .Errorf ("GroupVariables.GetVariable returned %+v, want %+v" , variable , want )
72
73
}
@@ -78,22 +79,51 @@ func TestCreateGroupVariable(t *testing.T) {
78
79
mux .HandleFunc ("/api/v4/groups/1/variables" ,
79
80
func (w http.ResponseWriter , r * http.Request ) {
80
81
testMethod (t , r , http .MethodPost )
81
- fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","value": "test1","protected": false,"masked": true}` )
82
+ fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","value":"test1","protected": false,"masked": true,"hidden": false }` )
82
83
})
83
84
84
85
opt := & CreateGroupVariableOptions {
85
- Key : Ptr ("TEST_VARIABLE_1" ),
86
- Value : Ptr ("test1" ),
87
- Protected : Ptr (false ),
88
- Masked : Ptr (true ),
86
+ Key : Ptr ("TEST_VARIABLE_1" ),
87
+ Value : Ptr ("test1" ),
88
+ Protected : Ptr (false ),
89
+ Masked : Ptr (true ),
90
+ MaskedAndHidden : Ptr (false ),
89
91
}
90
92
91
93
variable , _ , err := client .GroupVariables .CreateVariable (1 , opt , nil )
92
94
if err != nil {
93
95
t .Errorf ("GroupVariables.CreateVariable returned error: %v" , err )
94
96
}
95
97
96
- want := & GroupVariable {Key : "TEST_VARIABLE_1" , Value : "test1" , Protected : false , Masked : true }
98
+ want := & GroupVariable {Key : "TEST_VARIABLE_1" , Value : "test1" , Protected : false , Masked : true , Hidden : false }
99
+ if ! reflect .DeepEqual (want , variable ) {
100
+ t .Errorf ("GroupVariables.CreateVariable returned %+v, want %+v" , variable , want )
101
+ }
102
+ }
103
+
104
+ func TestCreateGroupVariable_MaskedAndHidden (t * testing.T ) {
105
+ mux , client := setup (t )
106
+
107
+ mux .HandleFunc ("/api/v4/groups/1/variables" ,
108
+ func (w http.ResponseWriter , r * http.Request ) {
109
+ testMethod (t , r , http .MethodPost )
110
+ fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","protected": false,"masked": true,"hidden": true}` )
111
+ })
112
+
113
+ opt := & CreateGroupVariableOptions {
114
+ Key : Ptr ("TEST_VARIABLE_1" ),
115
+ Value : Ptr ("test1" ),
116
+ Protected : Ptr (false ),
117
+ Masked : Ptr (true ),
118
+ MaskedAndHidden : Ptr (true ),
119
+ }
120
+
121
+ variable , _ , err := client .GroupVariables .CreateVariable (1 , opt , nil )
122
+ if err != nil {
123
+ t .Errorf ("GroupVariables.CreateVariable returned error: %v" , err )
124
+ }
125
+
126
+ want := & GroupVariable {Key : "TEST_VARIABLE_1" , Protected : false , Masked : true , Hidden : true }
97
127
if ! reflect .DeepEqual (want , variable ) {
98
128
t .Errorf ("GroupVariables.CreateVariable returned %+v, want %+v" , variable , want )
99
129
}
@@ -126,15 +156,35 @@ func TestUpdateGroupVariable(t *testing.T) {
126
156
mux .HandleFunc ("/api/v4/groups/1/variables/TEST_VARIABLE_1" ,
127
157
func (w http.ResponseWriter , r * http.Request ) {
128
158
testMethod (t , r , http .MethodPut )
129
- fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","value": "test1","protected": false,"masked": true}` )
159
+ fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","value": "test1","protected": false,"masked": true,"hidden": false}` )
160
+ })
161
+
162
+ variable , _ , err := client .GroupVariables .UpdateVariable (1 , "TEST_VARIABLE_1" , & UpdateGroupVariableOptions {})
163
+ if err != nil {
164
+ t .Errorf ("GroupVariables.UpdateVariable returned error: %v" , err )
165
+ }
166
+
167
+ want := & GroupVariable {Key : "TEST_VARIABLE_1" , Value : "test1" , Protected : false , Masked : true , Hidden : false }
168
+ if ! reflect .DeepEqual (want , variable ) {
169
+ t .Errorf ("Groups.UpdatedGroup returned %+v, want %+v" , variable , want )
170
+ }
171
+ }
172
+
173
+ func TestUpdateGroupVariable_MaskedAndHidden (t * testing.T ) {
174
+ mux , client := setup (t )
175
+
176
+ mux .HandleFunc ("/api/v4/groups/1/variables/TEST_VARIABLE_1" ,
177
+ func (w http.ResponseWriter , r * http.Request ) {
178
+ testMethod (t , r , http .MethodPut )
179
+ fmt .Fprint (w , `{"key": "TEST_VARIABLE_1","protected": false,"masked": true,"hidden": true}` )
130
180
})
131
181
132
182
variable , _ , err := client .GroupVariables .UpdateVariable (1 , "TEST_VARIABLE_1" , & UpdateGroupVariableOptions {})
133
183
if err != nil {
134
184
t .Errorf ("GroupVariables.UpdateVariable returned error: %v" , err )
135
185
}
136
186
137
- want := & GroupVariable {Key : "TEST_VARIABLE_1" , Value : "test1" , Protected : false , Masked : true }
187
+ want := & GroupVariable {Key : "TEST_VARIABLE_1" , Protected : false , Masked : true , Hidden : true }
138
188
if ! reflect .DeepEqual (want , variable ) {
139
189
t .Errorf ("Groups.UpdatedGroup returned %+v, want %+v" , variable , want )
140
190
}
0 commit comments