@@ -13,6 +13,7 @@ import {
13
13
getMetricsCallCustomFilters ,
14
14
getRegionProperties ,
15
15
getResourcesProperties ,
16
+ getTagsProperties ,
16
17
getTimeDurationProperties ,
17
18
} from './FilterBuilder' ;
18
19
import { deepEqual , getFilters } from './FilterBuilder' ;
@@ -52,6 +53,38 @@ it('test getRegionProperties method', () => {
52
53
}
53
54
} ) ;
54
55
56
+ it ( 'test getTagsProperties' , ( ) => {
57
+ const tagsConfig = linodeConfig ?. filters . find (
58
+ ( filterObj ) => filterObj . name === 'Tags'
59
+ ) ;
60
+
61
+ expect ( tagsConfig ) . toBeDefined ( ) ;
62
+
63
+ if ( tagsConfig ) {
64
+ const {
65
+ disabled,
66
+ handleTagsChange,
67
+ label,
68
+ region,
69
+ resourceType,
70
+ } = getTagsProperties (
71
+ {
72
+ config : tagsConfig ,
73
+ dashboard : mockDashboard ,
74
+ dependentFilters : { region : 'us-east' } ,
75
+ isServiceAnalyticsIntegration : true ,
76
+ } ,
77
+ vi . fn ( )
78
+ ) ;
79
+ const { name } = tagsConfig . configuration ;
80
+ expect ( handleTagsChange ) . toBeDefined ( ) ;
81
+ expect ( disabled ) . toEqual ( false ) ;
82
+ expect ( label ) . toEqual ( name ) ;
83
+ expect ( region ) . toEqual ( 'us-east' ) ;
84
+ expect ( resourceType ) . toEqual ( 'linode' ) ;
85
+ }
86
+ } ) ;
87
+
55
88
it ( 'test getTimeDuratonProperties method' , ( ) => {
56
89
const timeDurationConfig = linodeConfig ?. filters . find (
57
90
( { name } ) => name === 'Time Range'
@@ -145,6 +178,46 @@ it('test getResourceSelectionProperties method with disabled true', () => {
145
178
}
146
179
} ) ;
147
180
181
+ describe ( 'checkIfWeNeedToDisableFilterByFilterKey' , ( ) => {
182
+ // resources filter has region as mandatory and tags as an optional filter, this should reflect in the dependent filters
183
+ it ( 'should enable filter when dependent filter region is provided' , ( ) => {
184
+ const result = checkIfWeNeedToDisableFilterByFilterKey (
185
+ 'resource_id' ,
186
+ { region : 'us-east' } ,
187
+ mockDashboard
188
+ ) ;
189
+ expect ( result ) . toEqual ( false ) ;
190
+ } ) ;
191
+
192
+ it ( 'should disable filter when dependent filter region is undefined' , ( ) => {
193
+ const result = checkIfWeNeedToDisableFilterByFilterKey (
194
+ 'resource_id' ,
195
+ { region : undefined } ,
196
+ mockDashboard
197
+ ) ;
198
+ expect ( result ) . toEqual ( true ) ;
199
+ } ) ;
200
+
201
+ it ( 'should disable filter when no dependent filters are provided' , ( ) => {
202
+ const result = checkIfWeNeedToDisableFilterByFilterKey (
203
+ 'resource_id' ,
204
+ { } ,
205
+ mockDashboard
206
+ ) ;
207
+ expect ( result ) . toEqual ( true ) ;
208
+ } ) ;
209
+
210
+ it ( 'should disable filter when required dependent filter is undefined in dependent filters but defined in preferences' , ( ) => {
211
+ const result = checkIfWeNeedToDisableFilterByFilterKey (
212
+ 'resource_id' ,
213
+ { region : 'us-east' , tags : undefined } ,
214
+ mockDashboard ,
215
+ { region : 'us-east' , tags : [ 'tag-1' ] } // tags are defined in preferences which confirms that this optional filter was selected
216
+ ) ;
217
+ expect ( result ) . toEqual ( true ) ;
218
+ } ) ;
219
+ } ) ;
220
+
148
221
it ( 'test checkIfWeNeedToDisableFilterByFilterKey method all cases' , ( ) => {
149
222
let result = checkIfWeNeedToDisableFilterByFilterKey (
150
223
'resource_id' ,
@@ -169,6 +242,23 @@ it('test checkIfWeNeedToDisableFilterByFilterKey method all cases', () => {
169
242
) ;
170
243
171
244
expect ( result ) . toEqual ( true ) ;
245
+
246
+ result = checkIfWeNeedToDisableFilterByFilterKey (
247
+ 'resource_id' ,
248
+ { region : 'us-east' , tags : undefined } ,
249
+ mockDashboard ,
250
+ { [ 'region' ] : 'us-east' , [ 'tags' ] : [ 'tag-1' ] }
251
+ ) ;
252
+
253
+ expect ( result ) . toEqual ( true ) ; // disabled is true as tags are not updated in dependent filters
254
+
255
+ result = checkIfWeNeedToDisableFilterByFilterKey (
256
+ 'tags' ,
257
+ { region : undefined } ,
258
+ mockDashboard
259
+ ) ;
260
+
261
+ expect ( result ) . toEqual ( true ) ;
172
262
} ) ;
173
263
174
264
it ( 'test buildXfilter method' , ( ) => {
0 commit comments