diff options
author | Martino Pilia <martino.pilia@gmail.com> | 2019-01-26 11:48:03 +0100 |
---|---|---|
committer | Martino Pilia <martino.pilia@gmail.com> | 2019-01-26 11:48:03 +0100 |
commit | 0a5de2b42b3b8774b7aa12f028544ac3f81b8830 (patch) | |
tree | 2dc023879cd84e2476fa6ddbccd5c2b0cad60ed3 /test/handler/test_bandit_handler.vader | |
parent | f12d312aa4aa49c4698056933030cd5adb60b489 (diff) | |
download | ale-0a5de2b42b3b8774b7aa12f028544ac3f81b8830.zip |
Add bandit linter for Python
Diffstat (limited to 'test/handler/test_bandit_handler.vader')
-rw-r--r-- | test/handler/test_bandit_handler.vader | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/handler/test_bandit_handler.vader b/test/handler/test_bandit_handler.vader new file mode 100644 index 00000000..a2793a46 --- /dev/null +++ b/test/handler/test_bandit_handler.vader @@ -0,0 +1,42 @@ +Before: + runtime ale_linters/python/bandit.vim + +After: + call ale#linter#Reset() + +Execute(The bandit handler for Python should parse input correctly): + AssertEqual + \ [ + \ { + \ 'bufnr': 0, + \ 'lnum': 2, + \ 'code': 'B404', + \ 'type': 'I', + \ 'text': 'Consider possible security implications associated with subprocess module.', + \ }, + \ { + \ 'bufnr': 0, + \ 'lnum': 4, + \ 'code': 'B305', + \ 'type': 'W', + \ 'text': 'Use of insecure cipher mode cryptography.hazmat.primitives.ciphers.modes.ECB.', + \ }, + \ { + \ 'bufnr': 0, + \ 'lnum': 6, + \ 'code': 'B609', + \ 'type': 'E', + \ 'text': 'Possible wildcard injection in call: subprocess.Popen', + \ }, + \ ], + \ ale_linters#python#bandit#Handle(0, [ + \ '[main] INFO profile include tests: None', + \ '[main] INFO profile exclude tests: None', + \ '[main] INFO cli include tests: None', + \ '[main] INFO cli exclude tests: None', + \ '[main] INFO running on Python 3.7.2', + \ '[node_visitor] INFO Unable to find qualified name for module: <stdin>', + \ '2:B404:LOW:Consider possible security implications associated with subprocess module.', + \ '4:B305:MEDIUM:Use of insecure cipher mode cryptography.hazmat.primitives.ciphers.modes.ECB.', + \ '6:B609:HIGH:Possible wildcard injection in call: subprocess.Popen', + \ ]) |