mirror of https://github.com/dense-analysis/ale
prolog/swipl: cover new format with complex tests
https://github.com/dense-analysis/ale/pull/3377#issuecomment-763628447
This commit is contained in:
parent
6a3d215571
commit
80a0108fcf
|
@ -95,6 +95,50 @@ Execute (The swipl handler should ignore warnings / errors 'No permission to cal
|
|||
\ ' vimscript: (multifile A)',
|
||||
\ ])
|
||||
|
||||
Execute (The swipl handler should join three or more lines with '. ' on latest swipl):
|
||||
call ale#test#SetFilename('test.pl')
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'lnum': 10,
|
||||
\ 'col': 0,
|
||||
\ 'text': 'Clauses of fib/2 are not together in the source-file. Earlier definition at /path/to/test.pl:7. Current predicate: f/0. Use :- discontiguous fib/2. to suppress this message',
|
||||
\ 'type': 'W',
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#prolog#swipl#Handle(bufnr(''), [
|
||||
\ 'Warning: /path/to/test.pl:10:',
|
||||
\ 'Warning: Clauses of fib/2 are not together in the source-file',
|
||||
\ 'Warning: Earlier definition at /path/to/test.pl:7',
|
||||
\ 'Warning: Current predicate: f/0',
|
||||
\ 'Warning: Use :- discontiguous fib/2. to suppress this message',
|
||||
\ ])
|
||||
|
||||
Execute (The swipl handler should ignore warnings / errors 'No permission to call sandboxed with latest swpl...'):
|
||||
call ale#test#SetFilename('test.pl')
|
||||
AssertEqual
|
||||
\ [],
|
||||
\ ale_linters#prolog#swipl#Handle(bufnr(''), [
|
||||
\ 'ERROR: /path/to/test.pl:11:',
|
||||
\ 'ERROR: No permission to call sandboxed `''$set_predicate_attribute''(_G3416:_G3417,_G3413,_G3414)''',
|
||||
\ 'ERROR: Reachable from:',
|
||||
\ 'ERROR: system:''$set_pattr''(A,B,C,D)',
|
||||
\ 'ERROR: system:''$set_pattr''(vimscript:A,B,C)',
|
||||
\ 'ERROR: vimscript: (multifile A)',
|
||||
\ 'ERROR: /path/to/test.pl:12:',
|
||||
\ 'ERROR: No permission to call sandboxed `''$set_predicate_attribute''(_G205:_G206,_G202,_G203)''',
|
||||
\ 'ERROR: Reachable from:',
|
||||
\ 'ERROR: system:''$set_pattr''(A,B,C,D)',
|
||||
\ 'ERROR: system:''$set_pattr''(vimscript:A,B,C)',
|
||||
\ 'ERROR: vimscript: (multifile A)',
|
||||
\ 'ERROR: /path/to/test.pl:13:',
|
||||
\ 'ERROR: No permission to call sandboxed `''$set_predicate_attribute''(_G1808:_G1809,_G1805,_G1806)''',
|
||||
\ 'ERROR: Reachable from:',
|
||||
\ 'ERROR: system:''$set_pattr''(A,B,C,D)',
|
||||
\ 'ERROR: system:''$set_pattr''(vimscript:A,B,C)',
|
||||
\ 'ERROR: vimscript: (multifile A)',
|
||||
\ ])
|
||||
|
||||
Execute (The swipl handler should handle a warning / error with no line number):
|
||||
call ale#test#SetFilename('test.pl')
|
||||
AssertEqual
|
||||
|
|
Loading…
Reference in New Issue