summaryrefslogtreecommitdiff
path: root/test/test_getmatches.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-04-18 00:35:53 +0100
committerw0rp <devw0rp@gmail.com>2017-04-18 00:35:53 +0100
commitbdad25eefd6526f8130f97edbe25a1179e27aadc (patch)
treec2e563e959121e77f6d96a256583849f6851f0a4 /test/test_getmatches.vader
parente237add9fdec64c80ed57f383e2b73464fb4b43d (diff)
downloadale-bdad25eefd6526f8130f97edbe25a1179e27aadc.zip
Add a function for getting matches, and use it to simplify a lot of code
Diffstat (limited to 'test/test_getmatches.vader')
-rw-r--r--test/test_getmatches.vader148
1 files changed, 148 insertions, 0 deletions
diff --git a/test/test_getmatches.vader b/test/test_getmatches.vader
new file mode 100644
index 00000000..e728b571
--- /dev/null
+++ b/test/test_getmatches.vader
@@ -0,0 +1,148 @@
+Execute (ale#util#GetMatches should return matches for many lines):
+ AssertEqual
+ \ [
+ \ [
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ '47',
+ \ '14',
+ \ 'Missing trailing comma.',
+ \ 'Warning/comma-dangle',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ [
+ \ '/path/to/some-filename.js:56:41: Missing semicolon. [Error/semi]',
+ \ '56',
+ \ '41',
+ \ 'Missing semicolon.',
+ \ 'Error/semi',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ ],
+ \ ale#util#GetMatches(
+ \ [
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ '/path/to/some-filename.js:56:41: Missing semicolon. [Error/semi]',
+ \ ],
+ \ [
+ \ '^.*:\(\d\+\):\(\d\+\): \(.\+\) \[\(.\+\)\]$',
+ \ ]
+ \ )
+
+Execute (ale#util#GetMatches should accept a string for a single pattern):
+ AssertEqual
+ \ [
+ \ [
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ '47',
+ \ '14',
+ \ 'Missing trailing comma.',
+ \ 'Warning/comma-dangle',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ [
+ \ '/path/to/some-filename.js:56:41: Missing semicolon. [Error/semi]',
+ \ '56',
+ \ '41',
+ \ 'Missing semicolon.',
+ \ 'Error/semi',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ ],
+ \ ale#util#GetMatches(
+ \ [
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ '/path/to/some-filename.js:56:41: Missing semicolon. [Error/semi]',
+ \ ],
+ \ '^.*:\(\d\+\):\(\d\+\): \(.\+\) \[\(.\+\)\]$'
+ \ )
+
+Execute (ale#util#GetMatches should accept a single line as a string):
+ AssertEqual
+ \ [
+ \ [
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ '47',
+ \ '14',
+ \ 'Missing trailing comma.',
+ \ 'Warning/comma-dangle',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ ],
+ \ ale#util#GetMatches(
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ [
+ \ '^.*:\(\d\+\):\(\d\+\): \(.\+\) \[\(.\+\)\]$',
+ \ ]
+ \ )
+
+Execute (ale#util#GetMatches should match multiple patterns correctly):
+ AssertEqual
+ \ [
+ \ [
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ '47',
+ \ '14',
+ \ 'Missing trailing comma.',
+ \ 'Warning/comma-dangle',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ [
+ \ '/path/to/some-filename.js:56:41: Missing semicolon. [Error/semi]',
+ \ '56',
+ \ '41',
+ \ 'Missing semicolon.',
+ \ 'Error/semi',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ [
+ \ '/path/to/some-filename.js:13:3: Parsing error: Unexpected token',
+ \ '13',
+ \ '3',
+ \ 'Parsing error: Unexpected token',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ '',
+ \ ],
+ \ ],
+ \ ale#util#GetMatches(
+ \ [
+ \ '/path/to/some-filename.js:47:14: Missing trailing comma. [Warning/comma-dangle]',
+ \ '/path/to/some-filename.js:56:41: Missing semicolon. [Error/semi]',
+ \ '/path/to/some-filename.js:13:3: Parsing error: Unexpected token',
+ \ ],
+ \ [
+ \ '^.*:\(\d\+\):\(\d\+\): \(.\+\) \[\(.\+\)\]$',
+ \ '^.*:\(\d\+\):\(\d\+\): \(.\+\)$',
+ \ ]
+ \ )