diff options
author | Shad <shadow.walker@free.fr> | 2024-03-14 01:09:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 09:09:56 +0900 |
commit | 712b4b3a9714ff58a5c0798c7b6e0ecf7c59857d (patch) | |
tree | df37d80b8e2f21e7eed9cf118ff06636c7fab10f /test | |
parent | 831f7393400935fadb1e762009ff3bd11d9fbe3b (diff) | |
download | ale-712b4b3a9714ff58a5c0798c7b6e0ecf7c59857d.zip |
Add support for sqlfluff 3.0.0 (#4743)
As stated in the changelog:
"the original fields of line_pos and line_no have been renamed to start_line_pos and start_line_no, to distinguish them from the new fields starting end_*"
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_sql_sqlfluff_handler.vader | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/test/handler/test_sql_sqlfluff_handler.vader b/test/handler/test_sql_sqlfluff_handler.vader index 1f0e028a..c7a4c291 100644 --- a/test/handler/test_sql_sqlfluff_handler.vader +++ b/test/handler/test_sql_sqlfluff_handler.vader @@ -4,7 +4,7 @@ Before: After: call ale#linter#Reset() -Execute(The sqlfluff handler should handle basic warnings): +Execute(The sqlfluff handler should handle basic warnings with version older than 3.0.0): AssertEqual \ [ \ { @@ -32,6 +32,44 @@ Execute(The sqlfluff handler should handle basic warnings): \ 'text': 'Files must end with a single trailing newline.', \ }, \ ], - \ ale_linters#sql#sqlfluff#Handle(1, [ + \ ale_linters#sql#sqlfluff#Handle(bufnr(''), [2, 3, 5], [ \ '[{"filepath": "schema.sql", "violations": [{"line_no": 1, "line_pos": 8, "code": "L010", "description": "Keywords must be consistently upper case."}, {"line_no": 13, "line_pos": 2, "code": "L003", "description": "Expected 1 indentation, found 0 [compared to line 12]"}, {"line_no": 16, "line_pos": 1, "code": "L009", "description": "Files must end with a single trailing newline."}]}]', \ ]) + +Execute(The sqlfluff handler should handle basic warnings with version newer than 3.0.0): + AssertEqual + \ [ + \ { + \ 'filename': 'schema.sql', + \ 'lnum': 1, + \ 'end_lnum': 1, + \ 'col': 8, + \ 'end_col': 12, + \ 'type': 'W', + \ 'code': 'L010', + \ 'text': 'Keywords must be consistently upper case.', + \ }, + \ { + \ 'filename': 'schema.sql', + \ 'lnum': 13, + \ 'end_lnum': 13, + \ 'col': 2, + \ 'end_col': 20, + \ 'type': 'W', + \ 'code': 'L003', + \ 'text': 'Expected 1 indentation, found 0 [compared to line 12]', + \ }, + \ { + \ 'filename': 'schema.sql', + \ 'lnum': 16, + \ 'end_lnum': 16, + \ 'col': 1, + \ 'end_col': 5, + \ 'type': 'W', + \ 'code': 'L009', + \ 'text': 'Files must end with a single trailing newline.', + \ }, + \ ], + \ ale_linters#sql#sqlfluff#Handle(bufnr(''), [3, 0, 0], [ + \ '[{"filepath": "schema.sql", "violations": [{"start_line_no": 1, "end_line_no":1, "start_line_pos": 8, "end_line_pos":12, "code": "L010", "description": "Keywords must be consistently upper case."}, {"start_line_no": 13, "end_line_no":13, "start_line_pos": 2, "end_line_pos":20, "code": "L003", "description": "Expected 1 indentation, found 0 [compared to line 12]"}, {"start_line_no": 16, "end_line_no":16, "start_line_pos": 1, "end_line_pos":5, "code": "L009", "description": "Files must end with a single trailing newline."}]}]', + \ ]) |