summaryrefslogtreecommitdiff
path: root/test/handler/test_terraform_handler.vader
blob: b201f89a3d1d0cdc9bb6d999e32a44edcfb1a1fb (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
Before:
  " Load the file which defines the linter.
  runtime ale_linters/terraform/terraform.vim
  call ale#test#SetDirectory('/testplugin/test/terraform_files')
  call ale#test#SetFilename('providers.tf')

After:
  " Unload all linters again.
  call ale#linter#Reset()
  call ale#test#RestoreDirectory()

Execute(The output should be correct):
  AssertEqual
  \ [
  \   {
  \     'lnum': 17,
  \     'col': 13,
  \     'filename': '/testplugin/test/terraform_files/providers.tf',
  \     'type': 'W',
  \     'text': 'Terraform 0.13 and earlier allowed provider version',
  \   },
  \   {
  \     'lnum': 0,
  \     'col': 0,
  \     'filename': '/testplugin/test/terraform_files/providers.tf',
  \     'type': 'E',
  \     'text': 'Plugin reinitialization required. Please run "terraform"',
  \   }
  \ ],
  \ ale_linters#terraform#terraform#Handle(bufnr(''), [
  \ '{',
  \ '"valid": false,',
  \ '"error_count": 1,',
  \ '"warning_count": 1,',
  \ '"diagnostics": [',
  \ '  {',
  \ '    "severity": "warning",',
  \ '    "summary": "Version constraints inside provider configuration blocks are deprecated",',
  \ '    "detail": "Terraform 0.13 and earlier allowed provider version",',
  \ '    "range": {',
  \ '      "filename": "providers.tf",',
  \ '      "start": {',
  \ '        "line": 17,',
  \ '        "column": 13,',
  \ '        "byte": 669',
  \ '      },',
  \ '      "end": {',
  \ '        "line": 17,',
  \ '        "column": 24,',
  \ '        "byte": 680',
  \ '      }',
  \ '    }',
  \ '  },',
  \ '  {',
  \ '    "severity": "error",',
  \ '    "summary": "Could not load plugin",',
  \ '    "detail": "Plugin reinitialization required. Please run \"terraform\""',
  \ '  }',
  \ '  ]',
  \ '}',
  \ ])