summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-10-25 23:01:49 +0100
committerGitHub <noreply@github.com>2017-10-25 23:01:49 +0100
commitf38ced1e4ccf8a462dd42999614966dafae6349f (patch)
treea6136f0702bcd99e2c788ea7f85bfc3eb0a32e44 /test
parent4af7219078e4aeb2c3a65928609f44cc7d7de1e8 (diff)
parentb0b91ba897e8633d6e99164384ab84cf62d68a2a (diff)
downloadale-f38ced1e4ccf8a462dd42999614966dafae6349f.zip
Merge pull request #1047 from thenoseman/linter-hamllint_autodetect_config
[PR: hamllint] auto-detect .rubocop.yml and .haml-lint.yml when using haml-lint
Diffstat (limited to 'test')
-rw-r--r--test/command_callback/test_haml_hamllint_command_callback.vader72
-rw-r--r--test/hamllint-test-files/haml-lint-and-rubocop/.haml-lint.yml0
-rw-r--r--test/hamllint-test-files/haml-lint-and-rubocop/.rubocop.yml0
-rw-r--r--test/hamllint-test-files/haml-lint-and-rubocop/subdir/file.haml0
-rw-r--r--test/hamllint-test-files/haml-lint-yml/.haml-lint.yml0
-rw-r--r--test/hamllint-test-files/haml-lint-yml/subdir/file.haml0
-rw-r--r--test/hamllint-test-files/rubocop-yml/.rubocop.yml0
-rw-r--r--test/hamllint-test-files/rubocop-yml/subdir/file.haml0
8 files changed, 72 insertions, 0 deletions
diff --git a/test/command_callback/test_haml_hamllint_command_callback.vader b/test/command_callback/test_haml_hamllint_command_callback.vader
new file mode 100644
index 00000000..68aa1e62
--- /dev/null
+++ b/test/command_callback/test_haml_hamllint_command_callback.vader
@@ -0,0 +1,72 @@
+Before:
+ runtime ale_linters/haml/hamllint.vim
+
+ let g:default_command = 'haml-lint %t'
+ call ale#test#SetDirectory('/testplugin/test/command_callback')
+
+After:
+ Restore
+
+ unlet! g:default_command
+ unlet! b:conf
+
+ call ale#linter#Reset()
+ call ale#test#RestoreDirectory()
+
+Execute(The default command should be correct):
+ AssertEqual g:default_command, ale_linters#haml#hamllint#GetCommand(bufnr(''))
+
+Execute(The command should have the .rubocop.yml prepended as an env var if one exists):
+ call ale#test#SetFilename('../hamllint-test-files/rubocop-yml/subdir/file.haml')
+ let b:conf = ale#path#Winify(g:dir . '/../hamllint-test-files/rubocop-yml/.rubocop.yml')
+
+ if has('win32')
+ " Windows uses 'set var=... && command'
+ AssertEqual
+ \ 'set HAML_LINT_RUBOCOP_CONF='
+ \ . ale#Escape(b:conf)
+ \ . ' && ' . g:default_command,
+ \ ale_linters#haml#hamllint#GetCommand(bufnr(''))
+ else
+ " Unix uses 'var=... command'
+ AssertEqual
+ \ 'HAML_LINT_RUBOCOP_CONF='
+ \ . ale#Escape(b:conf)
+ \ . ' ' . g:default_command,
+ \ ale_linters#haml#hamllint#GetCommand(bufnr(''))
+ endif
+
+Execute(The command should have the nearest .haml-lint.yml set as --config if it exists):
+ call ale#test#SetFilename('../hamllint-test-files/haml-lint-yml/subdir/file.haml')
+ let b:conf = ale#path#Winify(g:dir . '/../hamllint-test-files/haml-lint-yml/.haml-lint.yml')
+
+ AssertEqual
+ \ 'haml-lint --config '
+ \ . ale#Escape(b:conf)
+ \ . ' %t',
+ \ ale_linters#haml#hamllint#GetCommand(bufnr(''))
+
+Execute(The command should include a .rubocop.yml and a .haml-lint if both are found):
+ call ale#test#SetFilename('../hamllint-test-files/haml-lint-and-rubocop/subdir/file.haml')
+ let b:conf_hamllint = ale#path#Winify(g:dir . '/../hamllint-test-files/haml-lint-and-rubocop/.haml-lint.yml')
+ let b:conf_rubocop = ale#path#Winify(g:dir . '/../hamllint-test-files/haml-lint-and-rubocop/.rubocop.yml')
+
+ if has('win32')
+ " Windows uses 'set var=... && command'
+ AssertEqual
+ \ 'set HAML_LINT_RUBOCOP_CONF='
+ \ . ale#Escape(b:conf_rubocop)
+ \ . ' && haml-lint --config '
+ \ . ale#Escape(b:conf_hamllint)
+ \ . ' %t',
+ \ ale_linters#haml#hamllint#GetCommand(bufnr(''))
+ else
+ " Unix uses 'var=... command'
+ AssertEqual
+ \ 'HAML_LINT_RUBOCOP_CONF='
+ \ . ale#Escape(b:conf_rubocop)
+ \ . ' haml-lint --config '
+ \ . ale#Escape(b:conf_hamllint)
+ \ . ' %t',
+ \ ale_linters#haml#hamllint#GetCommand(bufnr(''))
+ endif
diff --git a/test/hamllint-test-files/haml-lint-and-rubocop/.haml-lint.yml b/test/hamllint-test-files/haml-lint-and-rubocop/.haml-lint.yml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/hamllint-test-files/haml-lint-and-rubocop/.haml-lint.yml
diff --git a/test/hamllint-test-files/haml-lint-and-rubocop/.rubocop.yml b/test/hamllint-test-files/haml-lint-and-rubocop/.rubocop.yml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/hamllint-test-files/haml-lint-and-rubocop/.rubocop.yml
diff --git a/test/hamllint-test-files/haml-lint-and-rubocop/subdir/file.haml b/test/hamllint-test-files/haml-lint-and-rubocop/subdir/file.haml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/hamllint-test-files/haml-lint-and-rubocop/subdir/file.haml
diff --git a/test/hamllint-test-files/haml-lint-yml/.haml-lint.yml b/test/hamllint-test-files/haml-lint-yml/.haml-lint.yml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/hamllint-test-files/haml-lint-yml/.haml-lint.yml
diff --git a/test/hamllint-test-files/haml-lint-yml/subdir/file.haml b/test/hamllint-test-files/haml-lint-yml/subdir/file.haml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/hamllint-test-files/haml-lint-yml/subdir/file.haml
diff --git a/test/hamllint-test-files/rubocop-yml/.rubocop.yml b/test/hamllint-test-files/rubocop-yml/.rubocop.yml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/hamllint-test-files/rubocop-yml/.rubocop.yml
diff --git a/test/hamllint-test-files/rubocop-yml/subdir/file.haml b/test/hamllint-test-files/rubocop-yml/subdir/file.haml
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/test/hamllint-test-files/rubocop-yml/subdir/file.haml