summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorNathaniel Williams <nat@livewatch.com>2017-10-26 19:32:33 +0100
committerw0rp <devw0rp@gmail.com>2017-10-26 19:37:04 +0100
commite4456a4e0e9622baf2af30acd34a28963df5f4fa (patch)
tree5ae24057300cbcafa576f6ca81903168133f6659 /test/handler
parent6ed456f99c46ad6853fdd893344e94060ce9f6c3 (diff)
downloadale-e4456a4e0e9622baf2af30acd34a28963df5f4fa.zip
Add tflint fot Terraform
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_tflint_handler.vader28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/handler/test_tflint_handler.vader b/test/handler/test_tflint_handler.vader
new file mode 100644
index 00000000..95671b8a
--- /dev/null
+++ b/test/handler/test_tflint_handler.vader
@@ -0,0 +1,28 @@
+Before:
+ runtime! ale_linters/terraform/tflint.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The tflint handler should parse items correctly):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 12,
+ \ 'text': 'be warned, traveller',
+ \ 'type': 'W',
+ \ },
+ \ {
+ \ 'lnum': 9,
+ \ 'text': 'error message',
+ \ 'type': 'E',
+ \ },
+ \ {
+ \ 'lnum': 5,
+ \ 'text': 'just so ya know',
+ \ 'type': 'I',
+ \ },
+ \ ],
+ \ ale_linters#terraform#tflint#Handle(123, [
+ \ '[ { "detector": "aws_db_instance_readable_password", "type": "WARNING", "message": "be warned, traveller", "line": 12, "file": "github.com/wata727/example-module/aws_db_instance.tf", "link": "https://github.com/wata727/tflint/blob/master/docs/aws_db_instance_readable_password.md" }, { "detector": "aws_elasticache_cluster_invalid_type", "type": "ERROR", "message": "error message", "line": 9, "file": "github.com/wata727/example-module/aws_elasticache_cluster.tf", "link": "https://github.com/wata727/tflint/blob/master/docs/aws_elasticache_cluster_invalid_type.md" }, { "detector": "aws_instance_not_specified_iam_profile", "type": "NOTICE", "message": "just so ya know", "line": 5, "file": "github.com/wata727/example-module/aws_instance.tf", "link": "https://github.com/wata727/tflint/blob/master/docs/aws_instance_not_specified_iam_profile.md" } ]'
+ \ ])