summaryrefslogtreecommitdiff
path: root/test/handler/test_cookstyle_handler.vader
diff options
context:
space:
mode:
authorRaphael Hoegger <pfuender@users.noreply.github.com>2019-04-10 19:52:52 +0200
committerw0rp <w0rp@users.noreply.github.com>2019-04-10 18:52:52 +0100
commit81423701b0378af56d53402b1a95026b71369246 (patch)
tree21dd9e07e9cde7b3cfa7d10e416064dcb12e1bcf /test/handler/test_cookstyle_handler.vader
parentabcefe7a6e2555db924d56e3d88f28cf5b6a55e8 (diff)
downloadale-81423701b0378af56d53402b1a95026b71369246.zip
Adding new linter "cookstyle" for chef recipes (Issue #1187) (#2362)
Diffstat (limited to 'test/handler/test_cookstyle_handler.vader')
-rw-r--r--test/handler/test_cookstyle_handler.vader22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/handler/test_cookstyle_handler.vader b/test/handler/test_cookstyle_handler.vader
new file mode 100644
index 00000000..7d705a19
--- /dev/null
+++ b/test/handler/test_cookstyle_handler.vader
@@ -0,0 +1,22 @@
+Before:
+ runtime ale_linters/chef/cookstyle.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(Basic warnings should be handled):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 58,
+ \ 'col': 24,
+ \ 'code': 'Style/UnneededInterpolation',
+ \ 'type': 'W',
+ \ 'end_col': 40,
+ \ 'text': 'Style/UnneededInterpolation: Prefer `to_s` over string interpolation.',
+ \ }
+ \ ],
+ \ ale_linters#chef#cookstyle#Handle(bufnr(''), [
+ \ '{"metadata":{"rubocop_version":"0.62.0","ruby_engine":"ruby","ruby_version":"2.6.0","ruby_patchlevel":"0","ruby_platform":"x86_64-linux"},"files":[{"path":"recipes/default.rb","offenses":[{"severity":"convention","message":"Style/UnneededInterpolation: Prefer `to_s` over string interpolation.","cop_name":"Style/UnneededInterpolation","corrected":false,"location":{"start_line":58,"start_column":24,"last_line":58,"last_column":40,"length":17,"line":58,"column":24}}]}],"summary":{"offense_count":1,"target_file_count":1,"inspected_file_count":1}}'
+ \ ])
+