summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorJohannes Wienke <languitar@semipol.de>2018-04-09 17:45:08 +0200
committerJohannes Wienke <languitar@semipol.de>2018-04-09 17:48:00 +0200
commit49c4bfde148dfb4925c79a2e93eb04311afcc904 (patch)
tree55a216f1543e2c3b003bfd8c9ddb80902b89908d /test/handler
parent2f2dcb84444f440ceb4b35010b861738216525f6 (diff)
downloadale-49c4bfde148dfb4925c79a2e93eb04311afcc904.zip
Add support for the java PMD linter
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_pmd_handler.vader27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/handler/test_pmd_handler.vader b/test/handler/test_pmd_handler.vader
new file mode 100644
index 00000000..0c95fb2a
--- /dev/null
+++ b/test/handler/test_pmd_handler.vader
@@ -0,0 +1,27 @@
+Before:
+ runtime ale_linters/java/pmd.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The pmd handler should parse lines correctly):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 18,
+ \ 'text': 'Each class should declare at least one constructor',
+ \ 'code': 'Code Style - AtLeastOneConstructor',
+ \ 'type': 'W',
+ \ },
+ \ {
+ \ 'lnum': 36,
+ \ 'text': 'Local variable ''node'' could be declared final',
+ \ 'code': 'Code Style - LocalVariableCouldBeFinal',
+ \ 'type': 'W',
+ \ },
+ \ ],
+ \ ale_linters#java#pmd#Handle(666, [
+ \ '"Problem","Package","File","Priority","Line","Description","Rule set","Rule"',
+ \ '"1","rsb.performance.test.ros","/home/languitar/src/rsb-performance-test-api-ros/src/main/java/rsb/performance/test/ros/NodeHolder.java","3","18","Each class should declare at least one constructor","Code Style","AtLeastOneConstructor"',
+ \ '"2","rsb.performance.test.ros","/home/languitar/src/rsb-performance-test-api-ros/src/main/java/rsb/performance/test/ros/NodeHolder.java","1","36","Local variable ''node'' could be declared final","Code Style","LocalVariableCouldBeFinal"'
+ \ ])