-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.json
606 lines (606 loc) · 22.8 KB
/
examples.json
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
[
{
"section": "Basic GUID bucketing functionality",
"examples": [
{
"why": "GUID bucketed, full rollout features should be on for any GUID",
"feature": "feature_flags/simple/full_rollout_guid.json",
"id": null,
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": true
},{
"why": "GUID bucketed, full rollout features should fail when no GUID given",
"feature": "feature_flags/simple/full_rollout_guid.json",
"id": "whatever",
"guid": null,
"properties": {},
"error": true,
"returns": false
}
]
},{
"section": "GUID bucketing experiment functionality",
"examples": [
{
"why": "This experiment results in variant 'a' for this GUID",
"feature": "experiments/a_b_guid.json",
"id": null,
"guid": "5a5585fb-ac14-4566-b41f-fa6f4531fcdc",
"properties": {},
"returns": "a"
},{
"why": "This experiment results in variant 'b' for this GUID",
"feature": "experiments/a_b_guid.json",
"id": null,
"guid": "b61ca515-a9a8-453d-b84d-ca23d325f784",
"properties": {},
"returns": "b"
},{
"why": "The rollout of this experiment means this GUID is excluded",
"feature": "experiments/off_guid.json",
"id": null,
"guid": "5a5585fb-ac14-4566-b41f-fa6f4531fcdc",
"properties": {},
"returns": false
},{
"why": "When a winning variant is specified, all actors that are rolled out to will see that variant",
"feature": "experiments/a_b_guid_with_winner.json",
"id": null,
"guid": "5a5585fb-ac14-4566-b41f-fa6f4531fcdc",
"properties": {},
"returns": "b"
},{
"why": "When a winning variant is specified, all actors that are not rolled out to will still not be in the experiment",
"feature": "experiments/a_b_guid_with_winner.json",
"id": null,
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false
},{
"why": "Variants are ordered alphanumerically before the correct one is picked",
"feature": "experiments/b_a_guid.json",
"id": null,
"guid": "5a5585fb-ac14-4566-b41f-fa6f4531fcdc",
"properties": {},
"returns": "a"
},{
"why": "An actor will be assigned to a fixed variant if its properties overlap with a fixed determinations properties",
"feature": "experiments/always_assign_to_one_variant.json",
"id": null,
"guid": "5a5585fb-ac14-4566-b41f-fa6f4531fcdc",
"properties": {
"attribute": ["e"]
},
"returns": "a"
}
]
},{
"section": "Basic ID bucketing functionality",
"examples": [
{
"why": "ID bucketed, full rollout features should be on for any ID",
"feature": "feature_flags/simple/full_rollout_id.json",
"id": "10321",
"guid": null,
"properties": {},
"returns": true
},{
"why": "ID bucketed, full rollout features should be off when no ID given",
"feature": "feature_flags/simple/full_rollout_id.json",
"id": null,
"guid": "whatever",
"properties": {},
"returns": false
},{
"why": "IDs can be integers as well as strings",
"feature": "feature_flags/simple/full_rollout_id.json",
"id": "10321",
"guid": null,
"properties": {},
"returns": true
}
]
},{
"section": "ID bucketing experiment functionality",
"examples": [
{
"why": "This experiment results in variant 'a' for this GUID",
"feature": "experiments/a_b_id.json",
"id": "42113",
"guid": null,
"properties": {},
"returns": "a"
},{
"why": "This experiment results in variant 'b' for this GUID",
"feature": "experiments/a_b_id.json",
"id": "280238",
"guid": null,
"properties": {},
"returns": "b"
}, {
"why": "This experiment results in variant 'autochthonal' for this GUID",
"feature": "experiments/100_variants_id.json",
"id": "42113",
"guid": null,
"properties": {},
"returns": "autochthonal"
},{
"why": "This experiment results in variant 'azimino' for this GUID",
"feature": "experiments/100_variants_id.json",
"id": "280239",
"guid": null,
"properties": {},
"returns": "azimino"
}, {
"why": "The rollout of this experiment means this GUID is excluded",
"feature": "experiments/off_id.json",
"id": "42113",
"guid": null,
"properties": {},
"returns": false
}
]
},{
"section": "Basic Fallback bucketing functionality",
"examples": [
{
"why": "Fallback bucketed, full rollout features should be on for any ID",
"feature": "feature_flags/simple/full_rollout_fallback.json",
"id": "10321",
"guid": null,
"properties": {},
"returns": true
},{
"why": "Fallback bucketed, full rollout features should be on for any GUID",
"feature": "feature_flags/simple/full_rollout_fallback.json",
"id": "54888",
"guid": null,
"properties": {},
"returns": true
},{
"why": "Fallback bucketed, full rollout features should fail when no ID or GUID given",
"feature": "feature_flags/simple/full_rollout_fallback.json",
"id": null,
"guid": null,
"properties": {},
"error": true,
"returns": false
}
]
},{
"section": "Basic Single bucketing functionality",
"examples": [
{
"why": "Single bucketed, full rollout features should be on for any ID or GUID",
"feature": "feature_flags/simple/full_rollout_single.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": true
},{
"why": "Single bucketed, zero rollout features should be off for any ID or GUID",
"feature": "feature_flags/simple/zero_rollout_single.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {},
"returns": false
},{
"why": "Single bucketed, full rollout features should be on when no ID or GUID given",
"feature": "feature_flags/simple/full_rollout_single.json",
"id": null,
"guid": null,
"properties": {},
"returns": true
},{
"why": "Single bucketed, zero rollout features should be off when no ID or GUID given",
"feature": "feature_flags/simple/zero_rollout_single.json",
"id": null,
"guid": null,
"properties": {},
"returns": false
}
]
},{
"section": "Basic determination functionality",
"examples": [
{
"why": "Each GUID has a rollout which just excludes it",
"feature": "feature_flags/simple/32768_rollout.json",
"id": null,
"guid": "65464efc-9230-4ce7-bb12-ea3e01385bcd",
"properties": {},
"returns": false
},{
"why": "Each GUID has a rollout which just includes it",
"feature": "feature_flags/simple/32769_rollout.json",
"id": null,
"guid": "65464efc-9230-4ce7-bb12-ea3e01385bcd",
"properties": {},
"returns": true
},{
"why": "Each ID has a rollout which just excludes it",
"feature": "feature_flags/simple/32768_rollout.json",
"id": "31467",
"guid": null,
"properties": {},
"returns": false
},{
"why": "Each ID has a rollout which just includes it",
"feature": "feature_flags/simple/32769_rollout.json",
"id": "31467",
"guid": null,
"properties": {},
"returns": true
}
]
},{
"section": "Fixed determination functionality",
"examples": [
{
"why": "When the actor's properties matches the fixed_determinations contraints the determination is fixed",
"feature": "feature_flags/fixed_determinations/high_low_spread_constraints.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {
"group_a": ["true"]
},
"returns": true
},{
"why": "When the actor's properties matches a single fixed_determinations constraints when there are multiple fixed_determinations constraints the determination is fixed",
"feature": "feature_flags/fixed_determinations/high_low_spread_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"group_b": ["true"]
},
"returns": false
},{
"why": "When the actor's properties match the contraints for multiple fixed determinations, the first fixed determination will be chosen",
"feature": "feature_flags/fixed_determinations/high_low_spread_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"group_a": ["true"],
"group_b": ["true"]
},
"returns": true
},
{
"why": "When the actor's property exists within the fixed determination constraints array the determination is fixed",
"feature": "feature_flags/fixed_determinations/array_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute": ["a"]
},
"returns": true
},{
"why": "When the actor's property does not exist within the fixed determination constraints array the determination is not fixed",
"feature": "feature_flags/fixed_determinations/array_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute": ["d"]
},
"returns": false
},{
"why": "When the actors properties matches the fixed_determinations constraints and on is set to false the determination is fixed as being off",
"feature": "feature_flags/fixed_determinations/feature_switched_off.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute": ["a"]
},
"returns": false
},{
"why": "When the actor's property array overlaps with the fixed determination containing an app_version the determination is fixed",
"feature": "feature_flags/fixed_determinations/app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"app_version": ["2.3.0", "0.4.0", "1.3.0"]
},
"returns": true
},{
"why": "When the actor's property array does not overlap with the fixed determination containing an app_version the determination is not fixed",
"feature": "feature_flags/fixed_determinations/app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"app_version": ["0.2.0"]
},
"returns": false
},{
"why": "When the actor's property array overlaps with the fixed determination containing a request.app_version the determination is fixed",
"feature": "feature_flags/fixed_determinations/structured_app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"request.app_version": ["2.3.0", "0.4.0", "1.3.0"]
},
"returns": true
},{
"why": "When the actor's property array does not overlap with the fixed determination containing a request.app_version the determination is not fixed",
"feature": "feature_flags/fixed_determinations/structured_app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"request.app_version": ["0.2.0"]
},
"returns": false
},{
"why": "When the actor's property array matches all the constraints in a fixed determination the determination is fixed",
"feature": "feature_flags/fixed_determinations/multiple_constraints.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {
"attribute_1": ["b"],
"attribute_2": ["x"]
},
"returns": true
},{
"why": "When the actor's property array partially matches the constraints in a fixed determination the determination is not fixed",
"feature": "feature_flags/fixed_determinations/multiple_constraints.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {
"attribute_1": ["c"]
},
"returns": false
}
]
},{
"section": "Target group functionality",
"examples": [
{
"why": "A feature is rolled out if a target group's contraints are met by the given properties",
"feature": "feature_flags/target_groups/high_low_spread_constraints.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {
"group_a": ["true"]
},
"returns": true
},{
"why": "A feature is not rolled out to the extent specified by a target group whose contraints are not met by the given properties",
"feature": "feature_flags/target_groups/high_low_spread_constraints.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {
"group_b": ["true"]
},
"returns": false
},{
"why": "When the actor's properties match two target groups, the feature is on when their indicator includes them in either rollout",
"feature": "feature_flags/target_groups/high_low_spread_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"group_a": ["true"],
"group_b": ["true"]
},
"returns": true
},{
"why": "When the actor's property exists within the target group constraints array the feature is on",
"feature": "feature_flags/target_groups/array_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute": ["a"]
},
"returns": true
},{
"why": "When the actor's property does not exist within the target group constraints array the feature is off",
"feature": "feature_flags/target_groups/array_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute": ["d"]
},
"returns": false
},{
"why": "When the actor's property array overlaps with the target group constraints array the feature is on",
"feature": "feature_flags/target_groups/array_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute": ["c", "d"]
},
"returns": true
},{
"why": "When the actor's property array does not overlap with the target group constraints array the feature is off",
"feature": "feature_flags/target_groups/array_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute": ["d", "e"]
},
"returns": false
},{
"why": "When the actor's property array overlaps with the target group containing an app_version the feature is on",
"feature": "feature_flags/target_groups/app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"app_version": ["2.3.0", "0.4.0", "1.3.0"]
},
"returns": true
},{
"why": "When the actor's property array does not overlap with the target group containing an app_version the feature is off",
"feature": "feature_flags/target_groups/app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"app_version": ["0.2.0"]
},
"returns": false
},{
"why": "When the actor's property array overlaps with the target group containing a request.app_version the feature is on",
"feature": "feature_flags/target_groups/structured_app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"request.app_version": ["2.3.0", "0.4.0", "1.3.0"]
},
"returns": true
},{
"why": "When the actor's property array does not overlap with the target group containing a request.app_version the feature is off",
"feature": "feature_flags/target_groups/structured_app_version_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"app_version": ["0.2.0"]
},
"returns": false
},{
"why": "When the actor's property array matches all the constraints in a target group",
"feature": "feature_flags/target_groups/multiple_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute_1": ["b"],
"attribute_2": ["x"]
},
"returns": true
},{
"why": "When the actor's property array partially matches the constraints in a target group",
"feature": "feature_flags/target_groups/multiple_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute_1": ["c"]
},
"returns": false
},{
"why": "When the actor's property array partially matches the second set of constraints in a target group",
"feature": "feature_flags/target_groups/multiple_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute_2": ["x"]
},
"returns": false
},{
"why": "When the actor's property array has additional properties but matches all the constraints in a target group",
"feature": "feature_flags/target_groups/multiple_constraints.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"attribute_1": ["b"],
"attribute_2": ["x"],
"attribute_3": ["q"]
},
"returns": true
}
]
},{
"section": "Override functionality",
"examples": [
{
"why": "A feature flag that should be off can be overridden to be on for specific IDs",
"feature": "feature_flags/overridden.json",
"id": "1",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {},
"returns": true
},{
"why": "A feature flag that should be on can be overridden to be off for specific IDs",
"feature": "feature_flags/overridden.json",
"id": "0",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false
},{
"why": "An experiment that should be on can be overridden to be off for specific IDs",
"feature": "experiments/overridden.json",
"id": "0",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false
},{
"why": "An experiment that should be off can be overridden to be in a specific variant for specific IDs",
"feature": "experiments/overridden.json",
"id": "65",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {},
"returns": "a"
},{
"why": "An inactive feature flag cannot be overridden",
"feature": "feature_flags/inactive_overridden.json",
"id": "1",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {},
"returns": false
}
]
},{
"section": "Malformed features",
"examples": [
{
"why": "Features missing 'active' are assumed to be inactive",
"feature": "feature_flags/malformed/missing_active.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false
},{
"why": "Features without any target groups are always off",
"feature": "feature_flags/malformed/no_target_group.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false
},{
"why": "Features with an unknown bucket type should be off, but raise an error",
"feature": "feature_flags/malformed/invalid_bucket_type.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false,
"error": true
},{
"why": "Target groups with invalid rollouts are ignored",
"feature": "feature_flags/malformed/invalid_rollout.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false
},{
"why": "Target groups with malformed app_version are ignored",
"feature": "feature_flags/malformed/malformed_app_version.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"app_version": ["1.3.0"]
},
"returns": false
},{
"why": "Target groups with app_version not compliant with semantic versioning specs are ignored",
"feature": "feature_flags/malformed/semver_non_compliance.json",
"id": "54888",
"guid": "d641e1bb-652c-4bb1-a54f-e18b6c1a9746",
"properties": {
"app_version": ["1.3.0"]
},
"returns": false
},{
"why": "Features with constraints which contain non-strings should be off, but raise an error",
"feature": "feature_flags/malformed/invalid_constraints_number.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false,
"error": true
},{
"why": "Features with constraints which are not arrays should be off, but raise an error",
"feature": "feature_flags/malformed/invalid_constraints_scalar.json",
"id": "10321",
"guid": "5b189db0-dc19-4b0f-b06e-68e7ffa2e5b8",
"properties": {},
"returns": false,
"error": true
}
]
}
]