2017-02-10 22:47:56 +00:00
|
|
|
Before:
|
2017-04-16 10:45:42 +00:00
|
|
|
runtime ale_linters/javascript/flow.vim
|
|
|
|
|
|
|
|
After:
|
|
|
|
unlet! g:flow_output
|
|
|
|
unlet! g:expected
|
|
|
|
unlet! g:actual
|
|
|
|
call ale#linter#Reset()
|
|
|
|
|
2017-07-22 18:21:30 +00:00
|
|
|
Execute(The flow handler should throw away non-JSON lines):
|
|
|
|
AssertEqual
|
|
|
|
\ [],
|
|
|
|
\ ale_linters#javascript#flow#Handle(bufnr(''), [
|
|
|
|
\ 'Already up-to-date.',
|
|
|
|
\ '{"flowVersion":"0.50.0","errors":[],"passed":true}',
|
|
|
|
\ ])
|
|
|
|
AssertEqual
|
|
|
|
\ [],
|
|
|
|
\ ale_linters#javascript#flow#Handle(bufnr(''), [
|
|
|
|
\ 'foo',
|
|
|
|
\ 'bar',
|
|
|
|
\ 'baz',
|
|
|
|
\ '{"flowVersion":"0.50.0","errors":[],"passed":true}',
|
|
|
|
\ ])
|
|
|
|
|
2017-04-16 10:45:42 +00:00
|
|
|
Execute(The flow handler should process errors correctly.):
|
2017-06-06 19:08:19 +00:00
|
|
|
silent! noautocmd file /home/w0rp/Downloads/graphql-js/src/language/parser.js
|
2017-04-16 10:45:42 +00:00
|
|
|
|
2017-02-10 22:47:56 +00:00
|
|
|
let g:flow_output = {
|
|
|
|
\ "flowVersion": "0.39.0",
|
|
|
|
\ "errors": [
|
|
|
|
\ {
|
|
|
|
\ "kind": "infer",
|
|
|
|
\ "level": "error",
|
|
|
|
\ "message": [
|
|
|
|
\ {
|
|
|
|
\ "context": " return 1",
|
|
|
|
\ "descr": "number",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "source": expand('%:p'),
|
2017-02-10 22:47:56 +00:00
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 417,
|
|
|
|
\ "column": 10,
|
|
|
|
\ "offset": 9503
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 417,
|
|
|
|
\ "column": 10,
|
|
|
|
\ "offset": 9504
|
|
|
|
\ }
|
|
|
|
\ },
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "path": expand('%:p'),
|
2017-02-10 22:47:56 +00:00
|
|
|
\ "line": 417,
|
|
|
|
\ "endline": 417,
|
|
|
|
\ "start": 10,
|
|
|
|
\ "end": 10
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ "context": v:null,
|
|
|
|
\ "descr": "This type is incompatible with the expected return type of",
|
|
|
|
\ "type": "Comment",
|
|
|
|
\ "path": "",
|
|
|
|
\ "line": 0,
|
|
|
|
\ "endline": 0,
|
|
|
|
\ "start": 1,
|
|
|
|
\ "end": 0
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ "context": "function parseArguments(lexer: Lexer<*>): Array<ArgumentNode> {",
|
|
|
|
\ "descr": "array type",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "source": expand('%:p'),
|
2017-02-10 22:47:56 +00:00
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 416,
|
|
|
|
\ "column": 43,
|
|
|
|
\ "offset": 9472
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 416,
|
|
|
|
\ "column": 61,
|
|
|
|
\ "offset": 9491
|
|
|
|
\ }
|
|
|
|
\ },
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "path": expand('%:p'),
|
2017-02-10 22:47:56 +00:00
|
|
|
\ "line": 416,
|
|
|
|
\ "endline": 416,
|
|
|
|
\ "start": 43,
|
|
|
|
\ "end": 61
|
|
|
|
\ }
|
|
|
|
\ ]
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ "kind": "infer",
|
|
|
|
\ "level": "warning",
|
|
|
|
\ "message": [
|
|
|
|
\ {
|
|
|
|
\ "context": " return peek(lexer, TokenKind.PAREN_L) ?",
|
|
|
|
\ "descr": "unreachable code",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "source": expand('%:p'),
|
2017-02-10 22:47:56 +00:00
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 419,
|
|
|
|
\ "column": 3,
|
|
|
|
\ "offset": 9508
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 421,
|
|
|
|
\ "column": 7,
|
|
|
|
\ "offset": 9626
|
|
|
|
\ }
|
|
|
|
\ },
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "path": expand('%:p'),
|
2017-02-10 22:47:56 +00:00
|
|
|
\ "line": 419,
|
|
|
|
\ "endline": 421,
|
|
|
|
\ "start": 3,
|
|
|
|
\ "end": 7
|
|
|
|
\ }
|
|
|
|
\ ]
|
|
|
|
\ }
|
|
|
|
\ ],
|
|
|
|
\ "passed": v:false
|
|
|
|
\}
|
|
|
|
|
2017-04-16 10:45:42 +00:00
|
|
|
let g:actual = ale_linters#javascript#flow#Handle(bufnr(''), [json_encode(g:flow_output)])
|
2017-02-10 22:47:56 +00:00
|
|
|
let g:expected = [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 417,
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ 'col': 10,
|
|
|
|
\ 'text': 'number: This type is incompatible with the expected return type of array type',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 419,
|
|
|
|
\ 'type': 'W',
|
|
|
|
\ 'col': 3,
|
|
|
|
\ 'text': 'unreachable code:',
|
|
|
|
\ },
|
|
|
|
\]
|
|
|
|
|
|
|
|
AssertEqual g:expected, g:actual
|
2017-04-16 10:45:42 +00:00
|
|
|
|
|
|
|
Execute(The flow handler should fetch the correct location for the currently opened file, even when it's not in the first message.):
|
2017-06-06 19:08:19 +00:00
|
|
|
silent! noautocmd file /Users/rav/Projects/vim-ale-flow/index.js
|
2017-04-16 10:45:42 +00:00
|
|
|
|
|
|
|
let g:flow_output = {
|
|
|
|
\ "flowVersion": "0.44.0",
|
|
|
|
\ "errors": [{
|
|
|
|
\ "operation": {
|
|
|
|
\ "context": " <Foo foo=\"bar\"/>, document.getElementById('foo')",
|
|
|
|
\ "descr": "React element `Foo`",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "source": expand('%:p'),
|
2017-04-16 10:45:42 +00:00
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 3,
|
|
|
|
\ "offset": 92
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 18,
|
|
|
|
\ "offset": 108
|
|
|
|
\ }
|
|
|
|
\ },
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "path": expand('%:p'),
|
2017-04-16 10:45:42 +00:00
|
|
|
\ "line": 6,
|
|
|
|
\ "endline": 6,
|
|
|
|
\ "start": 3,
|
|
|
|
\ "end": 18
|
|
|
|
\ },
|
|
|
|
\ "kind": "infer",
|
|
|
|
\ "level": "error",
|
|
|
|
\ "message": [{
|
|
|
|
\ "context": "module.exports = function(props: Props) {",
|
|
|
|
\ "descr": "property `bar`",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
|
|
|
\ "source": "/Users/rav/Projects/vim-ale-flow/foo.js",
|
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 9,
|
|
|
|
\ "column": 34,
|
|
|
|
\ "offset": 121
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 9,
|
|
|
|
\ "column": 38,
|
|
|
|
\ "offset": 126
|
|
|
|
\ }
|
|
|
|
\ },
|
|
|
|
\ "path": "/Users/rav/Projects/vim-ale-flow/foo.js",
|
|
|
|
\ "line": 9,
|
|
|
|
\ "endline": 9,
|
|
|
|
\ "start": 34,
|
|
|
|
\ "end": 38
|
|
|
|
\ }, {
|
|
|
|
\ "context": v:null,
|
|
|
|
\ "descr": "Property not found in",
|
|
|
|
\ "type": "Comment",
|
|
|
|
\ "path": "",
|
|
|
|
\ "line": 0,
|
|
|
|
\ "endline": 0,
|
|
|
|
\ "start": 1,
|
|
|
|
\ "end": 0
|
|
|
|
\ }, {
|
|
|
|
\ "context": " <Foo foo=\"bar\"/>, document.getElementById('foo')",
|
|
|
|
\ "descr": "props of React element `Foo`",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "source": expand('%:p'),
|
2017-04-16 10:45:42 +00:00
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 3,
|
|
|
|
\ "offset": 92
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 18,
|
|
|
|
\ "offset": 108
|
|
|
|
\ }
|
|
|
|
\ },
|
2017-09-13 23:10:47 +00:00
|
|
|
\ "path": expand('%:p'),
|
2017-04-16 10:45:42 +00:00
|
|
|
\ "line": 6,
|
|
|
|
\ "endline": 6,
|
|
|
|
\ "start": 3,
|
|
|
|
\ "end": 18
|
|
|
|
\ }]
|
|
|
|
\ }],
|
|
|
|
\ "passed": v:false
|
|
|
|
\}
|
|
|
|
|
|
|
|
let g:actual = ale_linters#javascript#flow#Handle(bufnr(''), [json_encode(g:flow_output)])
|
|
|
|
let g:expected = [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 6,
|
|
|
|
\ 'col': 3,
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ 'text': 'property `bar`: Property not found in props of React element `Foo` See also: React element `Foo`'
|
|
|
|
\ }
|
|
|
|
\]
|
|
|
|
|
|
|
|
AssertEqual g:expected, g:actual
|
2017-06-06 19:08:19 +00:00
|
|
|
|
|
|
|
Execute(The flow handler should handle relative paths):
|
|
|
|
silent! noautocmd file /Users/rav/Projects/vim-ale-flow/index.js
|
|
|
|
|
|
|
|
let g:flow_output = {
|
|
|
|
\ "flowVersion": "0.44.0",
|
|
|
|
\ "errors": [{
|
|
|
|
\ "operation": {
|
|
|
|
\ "context": " <Foo foo=\"bar\"/>, document.getElementById('foo')",
|
|
|
|
\ "descr": "React element `Foo`",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
2017-10-01 17:41:41 +00:00
|
|
|
\ "source": expand('%:p'),
|
2017-06-06 19:08:19 +00:00
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 3,
|
|
|
|
\ "offset": 92
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 18,
|
|
|
|
\ "offset": 108
|
|
|
|
\ }
|
|
|
|
\ },
|
2017-10-01 17:41:41 +00:00
|
|
|
\ "path": expand('%:p'),
|
2017-06-06 19:08:19 +00:00
|
|
|
\ "line": 6,
|
|
|
|
\ "endline": 6,
|
|
|
|
\ "start": 3,
|
|
|
|
\ "end": 18
|
|
|
|
\ },
|
|
|
|
\ "kind": "infer",
|
|
|
|
\ "level": "error",
|
|
|
|
\ "message": [{
|
|
|
|
\ "context": "module.exports = function(props: Props) {",
|
|
|
|
\ "descr": "property `bar`",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
|
|
|
\ "source": "vim-ale-flow/foo.js",
|
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 9,
|
|
|
|
\ "column": 34,
|
|
|
|
\ "offset": 121
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 9,
|
|
|
|
\ "column": 38,
|
|
|
|
\ "offset": 126
|
|
|
|
\ }
|
|
|
|
\ },
|
|
|
|
\ "path": "vim-ale-flow/foo.js",
|
|
|
|
\ "line": 9,
|
|
|
|
\ "endline": 9,
|
|
|
|
\ "start": 34,
|
|
|
|
\ "end": 38
|
|
|
|
\ }, {
|
|
|
|
\ "context": v:null,
|
|
|
|
\ "descr": "Property not found in",
|
|
|
|
\ "type": "Comment",
|
|
|
|
\ "path": "",
|
|
|
|
\ "line": 0,
|
|
|
|
\ "endline": 0,
|
|
|
|
\ "start": 1,
|
|
|
|
\ "end": 0
|
|
|
|
\ }, {
|
|
|
|
\ "context": " <Foo foo=\"bar\"/>, document.getElementById('foo')",
|
|
|
|
\ "descr": "props of React element `Foo`",
|
|
|
|
\ "type": "Blame",
|
|
|
|
\ "loc": {
|
2017-10-01 17:41:41 +00:00
|
|
|
\ "source": expand('%:p'),
|
2017-06-06 19:08:19 +00:00
|
|
|
\ "type": "SourceFile",
|
|
|
|
\ "start": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 3,
|
|
|
|
\ "offset": 92
|
|
|
|
\ },
|
|
|
|
\ "end": {
|
|
|
|
\ "line": 6,
|
|
|
|
\ "column": 18,
|
|
|
|
\ "offset": 108
|
|
|
|
\ }
|
|
|
|
\ },
|
2017-10-01 17:41:41 +00:00
|
|
|
\ "path": expand('%:p'),
|
2017-06-06 19:08:19 +00:00
|
|
|
\ "line": 6,
|
|
|
|
\ "endline": 6,
|
|
|
|
\ "start": 3,
|
|
|
|
\ "end": 18
|
|
|
|
\ }]
|
|
|
|
\ }],
|
|
|
|
\ "passed": v:false
|
|
|
|
\}
|
|
|
|
|
|
|
|
let g:actual = ale_linters#javascript#flow#Handle(bufnr(''), [json_encode(g:flow_output)])
|
|
|
|
let g:expected = [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 6,
|
|
|
|
\ 'col': 3,
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ 'text': 'property `bar`: Property not found in props of React element `Foo` See also: React element `Foo`'
|
|
|
|
\ }
|
|
|
|
\]
|
|
|
|
|
|
|
|
AssertEqual g:expected, g:actual
|