mirror of
https://github.com/dense-analysis/ale
synced 2024-12-22 06:10:07 +00:00
Update test to match update to linter
Also make lnum and col proper strings, since that is how it is matched by the regexp, ALE handles the conversion to number.
This commit is contained in:
parent
b7db095221
commit
f14e3bb109
@ -9,25 +9,25 @@ Execute(The cfn_python_lint handler should parse items correctly):
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'lnum': 96,
|
||||
\ 'col': 7,
|
||||
\ 'end_lnum': 96,
|
||||
\ 'end_col': 15,
|
||||
\ 'lnum': '96',
|
||||
\ 'col': '7',
|
||||
\ 'end_lnum': '96',
|
||||
\ 'end_col': '15',
|
||||
\ 'text': 'Property Resources/Sample/Properties/FromPort should be of type Integer',
|
||||
\ 'code': 'E3012',
|
||||
\ 'type': 'E',
|
||||
\ },
|
||||
\ {
|
||||
\ 'lnum': 97,
|
||||
\ 'col': 7,
|
||||
\ 'end_lnum': 97,
|
||||
\ 'end_col': 15,
|
||||
\ 'lnum': '97',
|
||||
\ 'col': '7',
|
||||
\ 'end_lnum': '97',
|
||||
\ 'end_col': '15',
|
||||
\ 'text': 'AllowedPattern and/or AllowedValues for Parameter should be specified at Parameters/SampleIpAddress. Example for AllowedPattern "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$"',
|
||||
\ 'code': 'W2509',
|
||||
\ 'type': 'W',
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#cloudformation#cfn_python_lint#Handle(bufnr(''), [
|
||||
\ fnamemodify(tempname(), ':h') . '/sample.template.yaml:96:7:96:15: [E3012] Property Resources/Sample/Properties/FromPort should be of type Integer',
|
||||
\ fnamemodify(tempname(), ':h') . '/sample.template.yaml:97:7:97:15: [W2509] AllowedPattern and/or AllowedValues for Parameter should be specified at Parameters/SampleIpAddress. Example for AllowedPattern "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$"',
|
||||
\ fnamemodify(tempname(), ':h') . '/sample.template.yaml:96:7:96:15:E3012:Property Resources/Sample/Properties/FromPort should be of type Integer',
|
||||
\ fnamemodify(tempname(), ':h') . '/sample.template.yaml:97:7:97:15:W2509:AllowedPattern and/or AllowedValues for Parameter should be specified at Parameters/SampleIpAddress. Example for AllowedPattern "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$"',
|
||||
\ ])
|
||||
|
Loading…
Reference in New Issue
Block a user