From 6c4be47437707bd6e9afc6a09d7bfec15864f2d3 Mon Sep 17 00:00:00 2001 From: Carl Smedstad Date: Mon, 21 Nov 2022 11:50:45 +0100 Subject: Implement support for SQL linter sqlfluff (#4361) --- test/handler/test_sql_sqlfluff_handler.vader | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 test/handler/test_sql_sqlfluff_handler.vader (limited to 'test/handler/test_sql_sqlfluff_handler.vader') diff --git a/test/handler/test_sql_sqlfluff_handler.vader b/test/handler/test_sql_sqlfluff_handler.vader new file mode 100644 index 00000000..f1f684bd --- /dev/null +++ b/test/handler/test_sql_sqlfluff_handler.vader @@ -0,0 +1,39 @@ +Before: + runtime ale_linters/sql/sqlfluff.vim + +After: + Restore + + call ale#linter#Reset() + +Execute(The sqlfluff handler should handle basic warnings): + AssertEqual + \ [ + \ { + \ 'filename': 'schema.sql', + \ 'lnum': 1, + \ 'col': 8, + \ 'type': 'W', + \ 'code': 'L010', + \ 'text': 'Keywords must be consistently upper case.', + \ }, + \ { + \ 'filename': 'schema.sql', + \ 'lnum': 13, + \ 'col': 2, + \ 'type': 'W', + \ 'code': 'L003', + \ 'text': 'Expected 1 indentation, found 0 [compared to line 12]', + \ }, + \ { + \ 'filename': 'schema.sql', + \ 'lnum': 16, + \ 'col': 1, + \ 'type': 'W', + \ 'code': 'L009', + \ 'text': 'Files must end with a single trailing newline.', + \ }, + \ ], + \ ale_linters#sql#sqlfluff#Handle(1, [ + \ '[{"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."}]}]', + \ ]) -- cgit v1.2.3