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
|
Before:
runtime ale_linters/powershell/powershell.vim
After:
call ale#linter#Reset()
Execute(The powershell handler should process syntax errors from parsing a powershell script):
AssertEqual
\ [
\ {
\ 'lnum': 8,
\ 'col': 29,
\ 'type': 'E',
\ 'text': 'Missing closing ''}'' in statement block or type definition.',
\ 'code': 'ParseException',
\ },
\ ],
\ ale_linters#powershell#powershell#Handle(bufnr(''), [
\ "At line:8 char:29",
\ "+ Invoke-Command -ScriptBlock {",
\ "+ ~",
\ "Missing closing '}' in statement block or type definition.",
\ "At /home/harrisj/tester.ps1:5 char:5",
\ "+ [void]$ExecutionContext.InvokeCommand.NewScriptBlock($Contents);",
\ "+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
\ "+ CategoryInfo : NotSpecified: (:) [], ParseException",
\ "+ FullyQualifiedErrorId : ParseException"
\ ])
Execute(The powershell handler should process multiple syntax errors from parsing a powershell script):
AssertEqual
\ [
\ {
\ 'lnum': 11,
\ 'col': 31,
\ 'type': 'E',
\ 'text': 'The string is missing the terminator: ".',
\ 'code': 'ParseException'
\ },
\ {
\ 'lnum': 3,
\ 'col': 16,
\ 'type': 'E',
\ 'text': 'Missing closing ''}'' in statement block or type definition.',
\ 'code': 'ParseException'
\ },
\ ],
\ ale_linters#powershell#powershell#Handle(bufnr(''), [
\ 'At line:11 char:31',
\ '+ write-verbose ''deleted''',
\ '+ ~',
\ 'The string is missing the terminator: ".',
\ 'At line:3 char:16',
\ '+ invoke-command {',
\ '+ ~',
\ 'Missing closing ''}'' in statement block or type definition.',
\ 'At /var/folders/qv/15ybvt050v9cgwrm7c95x4r4zc4qsg/T/vwhzIc8/1/script.ps1:1 char:150',
\ '+ ... ontents); [void]$ExecutionContext.InvokeCommand.NewScriptBlock($Con ...',
\ '+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~',
\ '+ CategoryInfo : NotSpecified: (:) [], ParseException',
\ '+ FullyQualifiedErrorId : ParseException'
\ ])
|