summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-09 14:58:17 +0100
committerw0rp <devw0rp@gmail.com>2017-07-09 14:58:21 +0100
commit836a2cfe3b5ba2761291564cbf412ca79f9a52a9 (patch)
tree59eb08c4de6b7a823971b94817803a8598ea61fd /test
parentc67d3b7e60b03ad52fe232b93b8867395dd8caa5 (diff)
downloadale-836a2cfe3b5ba2761291564cbf412ca79f9a52a9.zip
Fix issues with running individual tests, and get the Vim tests to run on certain machines again
Diffstat (limited to 'test')
-rw-r--r--test/handler/test_jscs_handler.vader5
-rw-r--r--test/test_find_nearest_directory.vader16
-rw-r--r--test/test_nearest_file_search.vader16
-rw-r--r--test/test_resolve_local_path.vader16
-rw-r--r--test/test_sandbox_execution.vader6
5 files changed, 38 insertions, 21 deletions
diff --git a/test/handler/test_jscs_handler.vader b/test/handler/test_jscs_handler.vader
index 81e91d8e..6247307e 100644
--- a/test/handler/test_jscs_handler.vader
+++ b/test/handler/test_jscs_handler.vader
@@ -1,3 +1,8 @@
+Before:
+ runtime ale_linters/javascript/jscs.vim
+
+After:
+ call ale#linter#Reset()
Execute(jscs should parse lines correctly):
AssertEqual
diff --git a/test/test_find_nearest_directory.vader b/test/test_find_nearest_directory.vader
index ecfd1385..03d38862 100644
--- a/test/test_find_nearest_directory.vader
+++ b/test/test_find_nearest_directory.vader
@@ -1,15 +1,17 @@
-Execute(Open a file some directory down):
- silent! cd /testplugin/test
- :e! top/middle/bottom/dummy.txt
+Before:
+ call ale#test#SetDirectory('/testplugin/test')
+
+After:
+ call ale#test#RestoreDirectory()
+
+Execute(We should be able to find a directory some directory down):
+ call ale#test#SetFilename('top/middle/bottom/dummy.txt')
-Then(We should be able to find the right directory):
AssertEqual
\ expand('%:p:h:h:h:h') . '/top/ale-special-directory-name-dont-use-this-please/',
\ ale#path#FindNearestDirectory(bufnr('%'), 'ale-special-directory-name-dont-use-this-please')
-Execute(Do nothing):
-
-Then(We shouldn't find anything for files which don't match):
+Execute(We shouldn't find anything for files which don't match):
AssertEqual
\ '',
\ ale#path#FindNearestDirectory(bufnr('%'), 'ale-this-should-never-match-anything')
diff --git a/test/test_nearest_file_search.vader b/test/test_nearest_file_search.vader
index c2499ad2..71b7d109 100644
--- a/test/test_nearest_file_search.vader
+++ b/test/test_nearest_file_search.vader
@@ -1,11 +1,13 @@
-Execute(Open a file some directory down):
- silent! cd /testplugin/test
- :e! top/middle/bottom/dummy.txt
+Before:
+ call ale#test#SetDirectory('/testplugin/test')
-Then(We should be able to find a configuration file further up):
- AssertEqual expand('%:p:h:h:h:h') . '/top/example.ini', ale#path#FindNearestFile(bufnr('%'), 'example.ini')
+After:
+ call ale#test#RestoreDirectory()
+
+Execute(We should be able to find a configuration file further up):
+ call ale#test#SetFilename('top/middle/bottom/dummy.txt')
-Execute(Do nothing):
+ AssertEqual expand('%:p:h:h:h:h') . '/top/example.ini', ale#path#FindNearestFile(bufnr('%'), 'example.ini')
-Then(We shouldn't find anything for files which don't match):
+Execute(We shouldn't find anything for files which don't match):
AssertEqual '', ale#path#FindNearestFile(bufnr('%'), 'cantfindthis')
diff --git a/test/test_resolve_local_path.vader b/test/test_resolve_local_path.vader
index 703eec3d..ed1549a2 100644
--- a/test/test_resolve_local_path.vader
+++ b/test/test_resolve_local_path.vader
@@ -1,15 +1,17 @@
-Execute(Open a file some directory down):
- silent! cd /testplugin/test
- :e! top/middle/bottom/dummy.txt
+Before:
+ call ale#test#SetDirectory('/testplugin/test')
+
+After:
+ call ale#test#RestoreDirectory()
+
+Execute(We should be able to find the local version of a file):
+ call ale#test#SetFilename('top/middle/bottom/dummy.txt')
-Then(We should be able to find the local version of a file):
AssertEqual
\ expand('%:p:h:h:h:h') . '/top/example.ini',
\ ale#path#ResolveLocalPath(bufnr('%'), 'example.ini', '/global/config.ini')
-Execute(Do nothing):
-
-Then(We shouldn't find anything for files which don't match):
+Execute(We shouldn't find anything for files which don't match):
AssertEqual
\ '/global/config.ini',
\ ale#path#ResolveLocalPath(bufnr('%'), 'missing.ini', '/global/config.ini')
diff --git a/test/test_sandbox_execution.vader b/test/test_sandbox_execution.vader
index dc0cb01c..7f4941fd 100644
--- a/test/test_sandbox_execution.vader
+++ b/test/test_sandbox_execution.vader
@@ -47,6 +47,12 @@ Execute(ALE shouldn't blow up when run from a sandbox):
sandbox call ale#Lint()
Execute(ALE shouldn't blow up if file cleanup happens in a sandbox):
+ " Make a call to an engine function first, so the function will be defined
+ " before we make the sandbox call.
+ "
+ " You are not allowed to define any functions in the sandbox.
+ call ale#engine#InitBufferInfo(3)
+
let g:ale_buffer_info[3] = {
\ 'temporary_file_list': ['/tmp/foo'],
\ 'temporary_directory_list': ['/tmp/bar'],