-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathOptionParsersTest.kt
More file actions
641 lines (567 loc) · 22.7 KB
/
OptionParsersTest.kt
File metadata and controls
641 lines (567 loc) · 22.7 KB
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
/*
* Copyright (C) 2026 The ORT Project Copyright Holders <https://github.com/oss-review-toolkit/ort/blob/main/NOTICE>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/
package org.ossreviewtoolkit.plugins.api
import io.kotest.assertions.throwables.shouldThrow
import io.kotest.core.spec.style.WordSpec
import io.kotest.matchers.collections.beEmpty
import io.kotest.matchers.should
import io.kotest.matchers.shouldBe
enum class TestEnum { FIRST, SECOND, THIRD }
class OptionParsersTest : WordSpec({
"parseBooleanOption()" should {
val factory = createFactory(
PluginOption(
name = "booleanOption",
description = "A boolean option.",
type = PluginOptionType.BOOLEAN,
enumType = null,
enumEntries = null,
defaultValue = "false",
aliases = emptyList(),
isNullable = false,
isRequired = false
)
)
"return the correct boolean value from the options" {
factory.parseBooleanOption(
"booleanOption",
PluginConfig(options = mapOf("booleanOption" to "true"))
) shouldBe true
}
"return the default value if the option is not set" {
factory.parseBooleanOption("booleanOption", PluginConfig.EMPTY) shouldBe false
}
"throw an exception for an invalid boolean value" {
shouldThrow<IllegalArgumentException> {
factory.parseBooleanOption(
"booleanOption",
PluginConfig(options = mapOf("booleanOption" to "notABoolean"))
)
}
}
}
"parseNullableBooleanOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableBooleanOption",
description = "A nullable boolean option.",
type = PluginOptionType.BOOLEAN,
enumType = null,
enumEntries = null,
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct boolean value from the options" {
factory.parseNullableBooleanOption(
"nullableBooleanOption",
PluginConfig(options = mapOf("nullableBooleanOption" to "true"))
) shouldBe true
}
"return null if the option is not set" {
factory.parseNullableBooleanOption("nullableBooleanOption", PluginConfig.EMPTY) shouldBe null
}
"throw an exception for an invalid boolean value" {
shouldThrow<IllegalArgumentException> {
factory.parseNullableBooleanOption(
"nullableBooleanOption",
PluginConfig(options = mapOf("nullableBooleanOption" to "notABoolean"))
)
}
}
}
"findEnumEntry()" should {
val entries = listOf(
EnumEntry(name = "FIRST", alternativeName = "1st", aliases = emptyList()),
EnumEntry(name = "SECOND", alternativeName = "2nd", aliases = listOf("second", "2.0")),
EnumEntry(name = "THIRD", alternativeName = null, aliases = listOf("third", "3.0"))
)
"find an entry by name" {
findEnumEntry<TestEnum>(entries, "THIRD") shouldBe TestEnum.THIRD
}
"find an entry by alternative name" {
findEnumEntry<TestEnum>(entries, "1st") shouldBe TestEnum.FIRST
}
"ignore the name if an alternative name is set" {
findEnumEntry<TestEnum>(entries, "FIRST") shouldBe null
}
"find an entry by alias" {
findEnumEntry<TestEnum>(entries, "second") shouldBe TestEnum.SECOND
findEnumEntry<TestEnum>(entries, "2.0") shouldBe TestEnum.SECOND
findEnumEntry<TestEnum>(entries, "third") shouldBe TestEnum.THIRD
findEnumEntry<TestEnum>(entries, "3.0") shouldBe TestEnum.THIRD
}
}
"parseEnumOption()" should {
val factory = createFactory(
PluginOption(
name = "enumOption",
description = "An enum option.",
type = PluginOptionType.ENUM,
enumType = "TestEnum",
enumEntries = TestEnum.entries.map { EnumEntry(it.name, null, emptyList()) },
defaultValue = "FIRST",
aliases = emptyList(),
isNullable = false,
isRequired = false
)
)
"return the correct enum value from the options" {
factory.parseEnumOption<TestEnum>(
"enumOption",
PluginConfig(options = mapOf("enumOption" to "FIRST"))
) shouldBe TestEnum.FIRST
}
"return the default value if the option is not set" {
factory.parseEnumOption<TestEnum>("enumOption", PluginConfig.EMPTY) shouldBe TestEnum.FIRST
}
"throw an exception for an invalid enum value" {
shouldThrow<IllegalArgumentException> {
factory.parseEnumOption<TestEnum>(
"enumOption",
PluginConfig(options = mapOf("enumOption" to "INVALID"))
)
}
}
}
"parseNullableEnumOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableEnumOption",
description = "A nullable enum option.",
type = PluginOptionType.ENUM,
enumType = "TestEnum",
enumEntries = TestEnum.entries.map { EnumEntry(it.name, null, emptyList()) },
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct enum value from the options" {
factory.parseEnumOption<TestEnum>(
"nullableEnumOption",
PluginConfig(options = mapOf("nullableEnumOption" to "SECOND"))
) shouldBe TestEnum.SECOND
}
"return null if the option is not set" {
factory.parseNullableEnumOption<TestEnum>("nullableEnumOption", PluginConfig.EMPTY) shouldBe null
}
"throw an exception for an invalid enum value" {
shouldThrow<IllegalArgumentException> {
factory.parseEnumOption<TestEnum>(
"nullableEnumOption",
PluginConfig(options = mapOf("nullableEnumOption" to "INVALID"))
)
}
}
}
"parseEnumListOption()" should {
val factory = createFactory(
PluginOption(
name = "enumListOption",
description = "An enum list option.",
type = PluginOptionType.ENUM_LIST,
enumType = "TestEnum",
enumEntries = TestEnum.entries.map { EnumEntry(it.name, null, emptyList()) },
defaultValue = "FIRST,SECOND",
aliases = emptyList(),
isNullable = false,
isRequired = false
)
)
"return the correct enum list from the options" {
factory.parseEnumListOption<TestEnum>(
"enumListOption",
PluginConfig(options = mapOf("enumListOption" to "SECOND,THIRD"))
) shouldBe listOf(TestEnum.SECOND, TestEnum.THIRD)
}
"trim values and filter out empty strings" {
factory.parseEnumListOption<TestEnum>(
"enumListOption",
PluginConfig(options = mapOf("enumListOption" to " first , , third , "))
) shouldBe listOf(TestEnum.FIRST, TestEnum.THIRD)
}
"return the default value if the option is not set" {
factory.parseEnumListOption<TestEnum>("enumListOption", PluginConfig.EMPTY) shouldBe
listOf(TestEnum.FIRST, TestEnum.SECOND)
}
"throw an exception for an invalid enum value" {
shouldThrow<IllegalArgumentException> {
factory.parseEnumListOption<TestEnum>(
"enumListOption",
PluginConfig(options = mapOf("enumListOption" to "INVALID"))
)
}
}
}
"parseNullableEnumListOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableEnumListOption",
description = "A nullable enum list option.",
type = PluginOptionType.ENUM_LIST,
enumType = "TestEnum",
enumEntries = TestEnum.entries.map { EnumEntry(it.name, null, emptyList()) },
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct enum list from the options" {
factory.parseNullableEnumListOption<TestEnum>(
"nullableEnumListOption",
PluginConfig(options = mapOf("nullableEnumListOption" to "SECOND,THIRD"))
) shouldBe listOf(TestEnum.SECOND, TestEnum.THIRD)
}
"trim values and filter out empty strings" {
factory.parseNullableEnumListOption<TestEnum>(
"nullableEnumListOption",
PluginConfig(options = mapOf("nullableEnumListOption" to " first , , third , "))
) shouldBe listOf(TestEnum.FIRST, TestEnum.THIRD)
}
"return null if the option is not set" {
factory.parseNullableEnumListOption<TestEnum>("nullableEnumListOption", PluginConfig.EMPTY) shouldBe null
}
"throw an exception for an invalid enum value" {
shouldThrow<IllegalArgumentException> {
factory.parseEnumListOption<TestEnum>(
"nullableEnumListOption",
PluginConfig(options = mapOf("nullableEnumListOption" to "INVALID"))
)
}
}
}
"parseIntegerOption()" should {
val factory = createFactory(
PluginOption(
name = "integerOption",
description = "An integer option.",
type = PluginOptionType.INTEGER,
enumType = null,
enumEntries = null,
defaultValue = "42",
aliases = emptyList(),
isNullable = false,
isRequired = false
)
)
"return the correct integer value from the options" {
factory.parseIntegerOption(
"integerOption",
PluginConfig(options = mapOf("integerOption" to "100"))
) shouldBe 100
}
"return the default value if the option is not set" {
factory.parseIntegerOption("integerOption", PluginConfig.EMPTY) shouldBe 42
}
"throw an exception for an invalid integer value" {
shouldThrow<NumberFormatException> {
factory.parseIntegerOption(
"integerOption",
PluginConfig(options = mapOf("integerOption" to "notAnInteger"))
)
}
}
}
"parseNullableIntegerOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableIntegerOption",
description = "A nullable integer option.",
type = PluginOptionType.INTEGER,
enumType = null,
enumEntries = null,
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct integer value from the options" {
factory.parseNullableIntegerOption(
"nullableIntegerOption",
PluginConfig(options = mapOf("nullableIntegerOption" to "100"))
) shouldBe 100
}
"return null if the option is not set" {
factory.parseNullableIntegerOption("nullableIntegerOption", PluginConfig.EMPTY) shouldBe null
}
"throw an exception for an invalid integer value" {
shouldThrow<NumberFormatException> {
factory.parseNullableIntegerOption(
"nullableIntegerOption",
PluginConfig(options = mapOf("nullableIntegerOption" to "notAnInteger"))
)
}
}
}
"parseLongOption()" should {
val factory = createFactory(
PluginOption(
name = "longOption",
description = "A long option.",
type = PluginOptionType.LONG,
enumType = null,
enumEntries = null,
defaultValue = "42000000000",
aliases = emptyList(),
isNullable = false,
isRequired = false
)
)
"return the correct long value from the options" {
factory.parseLongOption(
"longOption",
PluginConfig(options = mapOf("longOption" to "100000000000"))
) shouldBe 100000000000L
}
"return the default value if the option is not set" {
factory.parseLongOption("longOption", PluginConfig.EMPTY) shouldBe 42000000000L
}
"throw an exception for an invalid long value" {
shouldThrow<NumberFormatException> {
factory.parseLongOption(
"longOption",
PluginConfig(options = mapOf("longOption" to "notALong"))
)
}
}
}
"parseNullableLongOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableLongOption",
description = "A nullable long option.",
type = PluginOptionType.LONG,
enumType = null,
enumEntries = null,
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct long value from the options" {
factory.parseNullableLongOption(
"nullableLongOption",
PluginConfig(options = mapOf("nullableLongOption" to "100000000000"))
) shouldBe 100000000000L
}
"return null if the option is not set" {
factory.parseNullableLongOption("nullableLongOption", PluginConfig.EMPTY) shouldBe null
}
"throw an exception for an invalid long value" {
shouldThrow<NumberFormatException> {
factory.parseNullableLongOption(
"nullableLongOption",
PluginConfig(options = mapOf("nullableLongOption" to "notALong"))
)
}
}
}
"parseSecretOption()" should {
val factory = createFactory(
PluginOption(
name = "secretOption",
description = "A secret option.",
type = PluginOptionType.SECRET,
enumType = null,
enumEntries = null,
defaultValue = "defaultSecret",
aliases = emptyList(),
isNullable = false,
isRequired = false
)
)
"return the correct secret value from the options" {
factory.parseSecretOption(
"secretOption",
PluginConfig(secrets = mapOf("secretOption" to "mySecretValue"))
) shouldBe Secret("mySecretValue")
}
"return the default value if the option is not set" {
factory.parseSecretOption("secretOption", PluginConfig.EMPTY) shouldBe Secret("defaultSecret")
}
}
"parseNullableSecretOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableSecretOption",
description = "A nullable secret option.",
type = PluginOptionType.SECRET,
enumType = null,
enumEntries = null,
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct secret value from the options" {
factory.parseNullableSecretOption(
"nullableSecretOption",
PluginConfig(secrets = mapOf("nullableSecretOption" to "mySecretValue"))
) shouldBe Secret("mySecretValue")
}
"return null if the option is not set" {
factory.parseNullableSecretOption("nullableSecretOption", PluginConfig.EMPTY) shouldBe null
}
}
"parseStringOption()" should {
val factory = createFactory(
PluginOption(
name = "stringOption",
description = "A string option.",
type = PluginOptionType.STRING,
enumType = null,
enumEntries = null,
defaultValue = "defaultString",
aliases = emptyList(),
isNullable = false,
isRequired = false
)
)
"return the correct string value from the options" {
factory.parseStringOption(
"stringOption",
PluginConfig(options = mapOf("stringOption" to "customString"))
) shouldBe "customString"
}
"return the default value if the option is not set" {
factory.parseStringOption("stringOption", PluginConfig.EMPTY) shouldBe "defaultString"
}
}
"parseNullableStringOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableStringOption",
description = "A nullable string option.",
type = PluginOptionType.STRING,
enumType = null,
enumEntries = null,
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct string value from the options" {
factory.parseNullableStringOption(
"nullableStringOption",
PluginConfig(options = mapOf("nullableStringOption" to "customString"))
) shouldBe "customString"
}
"return null if the option is not set" {
factory.parseNullableStringOption("nullableStringOption", PluginConfig.EMPTY) shouldBe null
}
}
"parseStringListOption()" should {
val factory = createFactory(
PluginOption(
name = "stringListOption",
description = "A string list option.",
type = PluginOptionType.STRING_LIST,
enumType = null,
enumEntries = null,
defaultValue = "a,b,c",
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct string list from the options" {
factory.parseStringListOption(
"stringListOption",
PluginConfig(options = mapOf("stringListOption" to "x,y,z"))
) shouldBe listOf("x", "y", "z")
}
"return the default value if the option is not set" {
factory.parseStringListOption("stringListOption", PluginConfig.EMPTY) shouldBe listOf("a", "b", "c")
}
"trim values and filter out empty strings" {
factory.parseStringListOption(
"stringListOption",
PluginConfig(options = mapOf("stringListOption" to " a , , b , c , "))
) shouldBe listOf("a", "b", "c")
}
"return an empty list for an empty default value" {
createFactory(
PluginOption(
name = "stringListOption",
description = "A string list option.",
type = PluginOptionType.STRING_LIST,
enumType = null,
enumEntries = null,
defaultValue = "",
aliases = emptyList(),
isNullable = false,
isRequired = true
)
).parseStringListOption("stringListOption", PluginConfig.EMPTY) should beEmpty()
}
}
"parseNullableStringListOption()" should {
val factory = createFactory(
PluginOption(
name = "nullableStringListOption",
description = "A nullable string list option.",
type = PluginOptionType.STRING_LIST,
enumType = null,
enumEntries = null,
defaultValue = null,
aliases = emptyList(),
isNullable = true,
isRequired = false
)
)
"return the correct string list from the options" {
factory.parseNullableStringListOption(
"nullableStringListOption",
PluginConfig(options = mapOf("nullableStringListOption" to "x,y,z"))
) shouldBe listOf("x", "y", "z")
}
"return null if the option is not set" {
factory.parseNullableStringListOption("nullableStringListOption", PluginConfig.EMPTY) shouldBe null
}
"trim values and filter out empty strings" {
factory.parseNullableStringListOption(
"nullableStringListOption",
PluginConfig(options = mapOf("nullableStringListOption" to " a , , b , c , "))
) shouldBe listOf("a", "b", "c")
}
}
})
private fun createFactory(option: PluginOption) =
object : PluginFactory<Plugin> {
private val pluginDescriptor = PluginDescriptor(
id = "test",
displayName = "Test",
summary = "Test plugin",
options = listOf(option)
)
override val descriptor = pluginDescriptor
override fun create(config: PluginConfig) =
object : Plugin {
override val descriptor = pluginDescriptor
}
}