summaryrefslogtreecommitdiff
path: root/buildscripts/tests/test_evglint.py
blob: 6e4cc5a09f59e74a6160b5c8203a7d9081cecd94 (plain)
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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
"""evglint tests."""
import unittest
from io import StringIO
from unittest.mock import MagicMock, patch
from typing import List

import yaml
from typing_extensions import TypedDict

from buildscripts.evglint.yamlhandler import load
from buildscripts.evglint import rules
from buildscripts.evglint.model import LintRule, LintError
import buildscripts.evglint.helpers as h


class TestRulebreaker(unittest.TestCase):
    """Attempt to raise exceptions in evglint rules."""

    # the Evergreen YAML freely allows for lists of dicts or just a single
    # dict for commands, which can painfully lead to exceptions.
    # Additionally, the rule author cannot safely assume that any parameters
    # are defined, so we generate an even larger list of parameter-less
    # commands that will raise exceptions in any rule.
    RULEBREAKER = """
    functions:
      "single command": &a1
        # this is, surprisingly, a valid evergreen command
        command: shell.exec

      "list of commands": &a2
        - command: shell.exec
          params:
            script: /bin/true
        - command: shell.exec
          params:
            script: /bin/true

      "deliberately empty kv pair":
      "inject here":
{inject_here}
      "anchor cheese":
        - *a1
        - *a1

    timeout:
      - *a1
    pre:
      - *a1
    post:
      - *a1
    tasks:
    - name: empty
    - name: clang_tidy
      setup_task:
        - *a1
      teardown_task:
        - *a1
      teardown_group:
        - *a1
      setup_group:
        - *a1
      timeout:
        - *a1

      commands:
        - func: "single command"
        - func: "anchor cheese"
        - command: shell.exec
    """

    @classmethod
    def _gen_rule_breaker(cls) -> dict:
        # List from https://github.com/evergreen-ci/evergreen/wiki/Project-Commands
        commands = [
            "keyval.inc",
            "archive.targz_extract",
            "archive.targz_pack",
            "attach.artifacts",
            "attach.results",
            "attach.xunit_results",
            "expansions.update",
            "expansions.write",
            "generate.tasks",
            "git.get_project",
            "gotest.parse_files",
            "host.create",
            "host.list",
            "json.send",
            "manifest.load",
            "perf.send",
            "s3.get",
            "s3.put",
            "s3.push",
            "s3.pull",
            "s3Copy.copy",
            "shell.exec",
            "subprocess.exec",
            "subprocess.scripting",
            "timeout.update",
        ]
        buf = StringIO()
        for cmd in commands:
            buf.write(f"        - command: {cmd}\n")

        gen_commands = TestRulebreaker.RULEBREAKER.format(inject_here=buf.getvalue())
        return load(gen_commands)

    def test_break_rules(self):
        """test that rules don't raise exceptions."""
        yaml_dict = self._gen_rule_breaker()
        for rule_name, rule in rules.RULES.items():
            try:
                rule(yaml_dict)
            except Exception as ex:  # pylint: disable=broad-except
                self.fail(f"{rule_name} raised an exception, but must not. "
                          "The rule is likely accessing a key without "
                          "verifying that it exists first. Write a more "
                          "thorough rule.\n"
                          f"Exception: {ex}")


class TestHelpers(unittest.TestCase):
    """Test .helpers module."""

    def test_iterate_commands(self):
        """test iterate_commands."""
        yaml_dict = load(TestRulebreaker.RULEBREAKER.format(inject_here=""))
        gen = h.iterate_commands(yaml_dict)
        count = 0
        for _ in gen:
            count = count + 1
        self.assertEqual(count, 14)

    I_CANT_BELIEVE_THAT_VALIDATES = """
tasks:
- name: test
    """

    def test_iterate_commands_no_commands(self):
        """Test iterate_commands when the yaml has no commands."""
        yaml_dict = load(TestHelpers.I_CANT_BELIEVE_THAT_VALIDATES)
        gen = h.iterate_commands(yaml_dict)
        count = 0
        for _ in gen:
            count = count + 1
        self.assertEqual(count, 0)

    def test_iterate_command_lists(self):
        """test iterate_command_lists."""
        yaml_dict = load(TestRulebreaker.RULEBREAKER.format(inject_here=""))
        gen = h.iterate_command_lists(yaml_dict)
        count = 0
        for _ in gen:
            count = count + 1
        self.assertEqual(count, 12)

    def test_iterate_command_lists_no_commands(self):
        """Test iterate_command_lists when the yaml has no commands."""
        yaml_dict = load(TestHelpers.I_CANT_BELIEVE_THAT_VALIDATES)
        gen = h.iterate_command_lists(yaml_dict)
        count = 0
        for _ in gen:
            count = count + 1
        self.assertEqual(count, 0)

    def test_match_expansions_write(self):
        """Test match_expansions_write."""
        cmd = {}
        self.assertFalse(h.match_expansions_write(cmd))
        cmd = {
            "command": "expansions.write", "params": {"file": "expansions.yml", "redacted": True}
        }
        self.assertTrue(h.match_expansions_write(cmd))

    def test_iterate_fn_calls_context(self):
        """Test iterate_fn_calls_context."""
        yaml_dict = load(TestRulebreaker.RULEBREAKER.format(inject_here=""))
        gen = h.iterate_fn_calls_context(yaml_dict)
        count = 0
        for _ in gen:
            count = count + 1
        self.assertEqual(count, 2)

    def test_match_subprocess_exec(self):
        """Test match_subprocess_exec."""
        cmd = {}
        self.assertFalse(h.match_subprocess_exec(cmd))
        cmd = {
            "command": "subprocess.exec",
            "params": {"binary": "bash", "args": ["./src/evergreen/something.sh"]}
        }
        self.assertTrue(h.match_subprocess_exec(cmd))


class _RuleExpect(TypedDict):
    raw_yaml: str
    errors: List[LintError]


class _BaseTestClasses:
    # this extra class prevents unittest from running the base class as a test
    # suite

    class RuleTest(unittest.TestCase):
        """Test a rule."""

        @staticmethod
        def _whine(_: dict) -> LintRule:
            raise RuntimeError("Programmer error: func was not set")

        def __init__(self, *args, **kwargs):
            self.table: List[_RuleExpect] = []
            self.func: LintRule = self._whine
            super().__init__(*args, **kwargs)
            self.maxDiff = None  # pylint: disable=invalid-name

        def test_rule(self):
            """Test self.func with the yamls listed in self.table, and compare results."""

            for expectation in self.table:
                yaml_dict = load(expectation["raw_yaml"])
                errors = self.func(yaml_dict)
                # a discrepancy on this assert means that your rule isn't working
                # as expected
                self.assertListEqual(errors, expectation["errors"])


class TestNoKeyvalInc(_BaseTestClasses.RuleTest):
    """Test no-keyval-inc."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.no_keyval_inc
        self.table = [
            {
                "raw_yaml":
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: shell.exec
tasks:
- name: test
        """, "errors": []
            },
            {
                'raw_yaml':
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: keyval.inc
tasks:
- name: test
            """,
                "errors": [
                    "Function 'cat i'm a kitty cat, and i test test test and i test test test', command 0 includes keyval.inc, which is not permitted. Do not use keyval.inc."
                ]
            },
        ]


class TestShellExecExplicitShell(_BaseTestClasses.RuleTest):
    """Test shell-exec-explicit-shell."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.shell_exec_explicit_shell
        self.table = [
            {
                "raw_yaml":
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: shell.exec
        params:
          shell: bash
tasks:
- name: test
            """, "errors": []
            },
            {
                'raw_yaml':
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: shell.exec
tasks:
- name: test
            """,
                "errors": [
                    "Function 'cat i'm a kitty cat, and i test test test and i test test test', command 0 is a shell.exec command without an explicitly declared shell. You almost certainly want to add 'shell: bash' to the parameters list."
                ]
            },
        ]


class TestNoWorkingDirOnShell(_BaseTestClasses.RuleTest):
    """Test no-working-dir-on-shell."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.no_working_dir_on_shell
        self.table = [
            {
                "raw_yaml":
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: subprocess.exec
tasks:
- name: test
            """, "errors": []
            },
            {
                'raw_yaml':
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: shell.exec
        params:
            working_dir: somewhere
tasks:
- name: test
            """,
                "errors": [(
                    "Function 'cat i'm a kitty cat, and i test test test and i test test test', command 0 is a shell.exec command with a working_dir parameter. Do not set working_dir, instead `cd` into the directory in the shell script."
                )]
            },
        ]


class TestInvalidFunctionName(_BaseTestClasses.RuleTest):
    """Test invalid-function-name."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.invalid_function_name
        self.table = [
            {
                'raw_yaml':
                    """
functions:
    "f_cat_im_a_kitty_cat_and_i_test_test_test_and_i_test_test_test":
      - command: shell.exec
tasks:
- name: test
            """, "errors": []
            },
            {
                "raw_yaml":
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
        - command: subprocess.exec
tasks:
- name: test
            """,
                "errors": [(
                    "Function 'cat i'm a kitty cat, and i test test test and i test test test' must have a name matching '^f_[a-z][A-Za-z0-9_]*'"
                )]
            },
        ]


class TestNoShellExec(_BaseTestClasses.RuleTest):
    """Test no-shell-exec."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.no_shell_exec
        self.table = [
            {
                'raw_yaml':
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: subprocess.exec
tasks:
- name: test
            """, "errors": []
            },
            {
                "raw_yaml":
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: shell.exec
tasks:
- name: test
            """,
                "errors": [(
                    "Function 'cat i'm a kitty cat, and i test test test and i test test test', command 0 is a shell.exec command, which is forbidden. Extract your shell script out of the YAML and into a .sh file in directory 'evergreen', and use subprocess.exec instead."
                )]
            },
        ]


class TestNoMultilineExpansionsUpdate(_BaseTestClasses.RuleTest):
    """Test no-multiline-expansions-update."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.no_multiline_expansions_update
        self.table = [
            {
                'raw_yaml':
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: expansions.update
        params:
          updates:
          - key: test
            value: a single line value \n
tasks:
- name: test
            """, "errors": []
            },
            {
                "raw_yaml":
                    """
functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: expansions.update
        params:
          updates:
          - key: test
            value: |
              a
              multiline
              value

tasks:
- name: test
            """,
                "errors":
                    [("Function 'cat i'm a kitty cat, and i test test test and i test test test', "
                      "command 0, key-value pair 0 is an expansions.update command with multi-line "
                      "values embedded in the yaml, which is forbidden. For long-form values, use "
                      "the files parameter of expansions.update.")]
            },
        ]


class TestInvalidBuildParameter(_BaseTestClasses.RuleTest):
    """Test invalid-build-parameter."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.invalid_build_parameter
        self.table = [
            {
                'raw_yaml':
                    """
parameters:
  - key: num_kitties
    description: "number of kitties"

functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: shell.exec
tasks:
- name: test
            """, "errors": []
            },
            {
                "raw_yaml":
                    """
parameters:
  - key: numberOfKitties
    description: "number of kitties"
  - key: number_of_kitties
  - key: number_of_kitties2
    description: ""

functions:
    "cat i'm a kitty cat, and i test test test and i test test test":
      - command: shell.exec
tasks:
- name: test
            """, "errors": [
                        "Build parameter, pair 0, key must match '[a-z][a-z0-9_]*'.",
                        "Build parameter, pair 1, must have a description.",
                        "Build parameter, pair 2, must have a description."
                    ]
            },
        ]


class TestRequiredExpansionsWrite(_BaseTestClasses.RuleTest):
    """Test required-expansions-write."""

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.func = rules.required_expansions_write
        self.table = [
            {
                'raw_yaml':
                    """
functions:
    # this function can serve in lieu of an expansions.write call
    "f_expansions_write": &f_expansions_write
        command: expansions.write
        params:
          file: expansions.yml
          redacted: true

    # this function cannot, because redacted is not True
    "f_expansions_write2": &f_expansions_write2
        command: expansions.write
        params:
          file: expansions.yml

    "dangerous_fn": &dangerous_fn
        # will not generate errors because this is a dict defintion. Errors
        # will be generated if this function is called with arguments
        command: subprocess.exec
        params:
          binary: bash
          args:
            - "src/evergreen/do_something.sh"

    "dangerous_fn2": &dangerous_fn2
        # will not generate errors because this is a dict defintion.
        command: expansions.update

    "test1":
        # needs expansions.write
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"
        # only ONE of these should generate an error
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"
    "test2a":
        # correct
        - func: "f_expansions_write"
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"
    "test2b":
        # correct
        - *f_expansions_write
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"
    "test2c":
        # function isn't a compatible substitution
        - *f_expansions_write2
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"
    "test3":
        # correct because the subprocess.exec call is a script outside
        # of evergreen
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "somewhere/else/do_something.sh"
    "test3a":
        # needs expansions.write
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "somewhere/else/do_something.sh"
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"
    "test4a":
        # need an expansions.write call after expansions.update
        - command: expansions.update
    "test4b":
        # need an expansions.write call after expansions.update
        - command: expansions.update
        - command: shell.exec
        - *f_expansions_write
    "test4c":
        # no errors
        - command: expansions.update
        - *f_expansions_write
    "test4d":
        # errors, because an incompatible function is called
        - *f_expansions_write2
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"
    "test5":
        # errors, because an incompatible function is called
        - command: expansions.update
        - func: f_expansions_write2

    "test6":
        # error because this needs an expansions write call after dangerous_fn2
        - *f_expansions_write
        - func: "dangerous_fn2"
          vars:
            test: test

    "test7":
        # error, needs an expansion.write at the end
        - command: expansions.update
        - *f_expansions_write
        - command: timeout.update

    "test8":
        # no errors
        - command: expansions.update
        - *f_expansions_write
        - command: timeout.update
        - *f_expansions_write
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "somewhere/else/do_something.sh"
        - command: timeout.update
        - *f_expansions_write
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"

    "test8b":
        - command: expansions.update
        - command: timeout.update
        - *f_expansions_write
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "somewhere/else/do_something.sh"
        - command: timeout.update
        - command: subprocess.exec
          params:
            binary: bash
            args:
              - "src/evergreen/do_something.sh"

tasks:
- name: test
  commands:
    # need an expansions.write call here
    - command: shell.exec
    - command: subprocess.exec
      params:
        binary: bash
        args:
          - "src/evergreen/do_something.sh"
- name: test1
  commands:
    - func: "dangerous_fn"
      vars:
        test: true

- name: test2
  commands:
  # need an expansions.write call after expansions.update
    - command: expansions.update
    - command: shell.exec
    - command: subprocess.exec
      params:
        binary: bash
        args:
          - "src/evergreen/do_something.sh"
- name: test3
  commands:
    # an expansions.write call is required here.
    - func: dangerous_fn
        """,
                "errors": [
                    "Function 'test1', command 0 calls an evergreen shell script without a "
                    'preceding expansions.write call. Always call expansions.write with params: '
                    'file: expansions.yml; redacted: true, (or use one of these functions: '
                    "['f_expansions_write']) before calling an evergreen shell script via "
                    'subprocess.exec.',
                    "Function 'test2c', command 1 calls an evergreen shell script without a "
                    'preceding expansions.write call. Always call expansions.write with params: '
                    'file: expansions.yml; redacted: true, (or use one of these functions: '
                    "['f_expansions_write']) before calling an evergreen shell script via "
                    'subprocess.exec.',
                    "Function 'test3a', command 1 calls an evergreen shell script without a "
                    'preceding expansions.write call. Always call expansions.write with params: '
                    'file: expansions.yml; redacted: true, (or use one of these functions: '
                    "['f_expansions_write']) before calling an evergreen shell script via "
                    'subprocess.exec.',
                    "Function 'test4a', command 0 is an expansions.update command that is not "
                    'immediately followed by an expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) after calling "
                    'expansions.update.',
                    "Function 'test4b', command 0 is an expansions.update command that is not "
                    'immediately followed by an expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) after calling "
                    'expansions.update.',
                    "Function 'test4d', command 1 calls an evergreen shell script without a "
                    'preceding expansions.write call. Always call expansions.write with params: '
                    'file: expansions.yml; redacted: true, (or use one of these functions: '
                    "['f_expansions_write']) before calling an evergreen shell script via "
                    'subprocess.exec.',
                    "Function 'test5', command 0 is an expansions.update command that is not "
                    'immediately followed by an expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) after calling "
                    'expansions.update.',
                    "Function 'test6', command 1, (function call: dangerous_fn2) is an "
                    'expansions.update command that is not immediately followed by an '
                    'expansions.write call. Always call expansions.write with params: file: '
                    'expansions.yml; redacted: true, (or use one of these functions: '
                    "['f_expansions_write']) after calling expansions.update.",
                    "Function 'test7', command 2 is an timeout.update command that is not "
                    'immediately followed by an expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) after calling "
                    'timeout.update.',
                    "Function 'test8b', command 0 is an expansions.update command that is not "
                    'immediately followed by an expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) after calling "
                    'expansions.update.',
                    "Function 'test8b', command 4 is an timeout.update command that is not "
                    'immediately followed by an expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) after calling "
                    'timeout.update.',
                    "Task 'test', command 1 calls an evergreen shell script without a preceding "
                    'expansions.write call. Always call expansions.write with params: file: '
                    'expansions.yml; redacted: true, (or use one of these functions: '
                    "['f_expansions_write']) before calling an evergreen shell script via "
                    'subprocess.exec.',
                    "Task 'test1', command 0, (function call: dangerous_fn) calls an evergreen "
                    'shell script without a preceding expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) before calling an evergreen "
                    'shell script via subprocess.exec.',
                    "Task 'test2', command 0 is an expansions.update command that is not "
                    'immediately followed by an expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) after calling "
                    'expansions.update.',
                    "Task 'test2', command 2 calls an evergreen shell script without a preceding "
                    'expansions.write call. Always call expansions.write with params: file: '
                    'expansions.yml; redacted: true, (or use one of these functions: '
                    "['f_expansions_write']) before calling an evergreen shell script via "
                    'subprocess.exec.',
                    "Task 'test3', command 0, (function call: dangerous_fn) calls an evergreen "
                    'shell script without a preceding expansions.write call. Always call '
                    'expansions.write with params: file: expansions.yml; redacted: true, (or use '
                    "one of these functions: ['f_expansions_write']) before calling an evergreen "
                    'shell script via subprocess.exec.',
                    "Task 'test1', command 0 (function call: 'dangerous_fn') cannot safely take "
                    'arguments. Call expansions.write with params: file: expansions.yml; '
                    "redacted: true, (or use one of these functions: ['f_expansions_write']) in "
                    'the function, or do not pass arguments to it.'
                ]
            },
        ]