2021-04-22 23:46:30 +02:00
|
|
|
local whole_file = require('tests.indent.common').indent_whole_file
|
|
|
|
|
local new_line = require('tests.indent.common').indent_new_line
|
2021-04-17 22:45:42 +02:00
|
|
|
local scan_dir = require('plenary.scandir').scan_dir
|
2021-03-13 22:46:45 +01:00
|
|
|
|
2021-04-18 14:31:05 +02:00
|
|
|
local opts = {
|
|
|
|
|
tabstop = 4,
|
|
|
|
|
shiftwidth = 4,
|
|
|
|
|
softtabstop = 0,
|
|
|
|
|
expandtab = true,
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-22 21:23:24 +02:00
|
|
|
local run = function(file, spec, title)
|
|
|
|
|
title = title and title or tostring(spec.on_line)
|
|
|
|
|
it(string.format('%s[%s]', file, title), function()
|
|
|
|
|
new_line('tests/indent/python/' .. file, spec, opts)
|
|
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-17 22:45:42 +02:00
|
|
|
describe('indent Python:', function()
|
|
|
|
|
describe('whole file:', function()
|
2021-04-22 20:53:30 +02:00
|
|
|
local files = scan_dir('tests/indent/python');
|
2021-04-17 22:45:42 +02:00
|
|
|
for _, file in ipairs(files) do
|
|
|
|
|
it(vim.fn.fnamemodify(file, ':t'), function()
|
2021-04-18 14:31:05 +02:00
|
|
|
whole_file(file, opts)
|
|
|
|
|
end)
|
|
|
|
|
end
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
describe('new line:', function()
|
|
|
|
|
run('aligned_indent.py', { on_line = 1, text = 'arg3,', indent = 19 })
|
|
|
|
|
run('basic_blocks.py', { on_line = 1, text = 'wait,', indent = 4 })
|
|
|
|
|
run('basic_blocks.py', { on_line = 6, text = 'x += 1', indent = 4 })
|
|
|
|
|
run('basic_blocks.py', { on_line = 10, text = 'x += 1', indent = 8 })
|
|
|
|
|
run('basic_blocks.py', { on_line = 7, text = 'x += 1', indent = 4 }, '7, after last line of a block')
|
|
|
|
|
run('basic_blocks.py', { on_line = 11, text = 'x += 1', indent = 8 }, '11, after last line of a block')
|
|
|
|
|
run('basic_collections.py', { on_line = 3, text = '4,', indent = 4 })
|
|
|
|
|
run('comprehensions.py', { on_line = 8, text = 'if x != 2', indent = 4 })
|
|
|
|
|
run('control_flow.py', { on_line = 23, text = 'x = 4', indent = 4 })
|
|
|
|
|
run('hanging_indent.py', { on_line = 1, text = 'arg0,', indent = 8 })
|
|
|
|
|
run('hanging_indent.py', { on_line = 5, text = '0,', indent = 4 })
|
|
|
|
|
run('join_lines.py', { on_line = 1, text = '+ 1 \\', indent = 4 })
|
|
|
|
|
run('join_lines.py', { on_line = 4, text = '+ 1 \\', indent = 4 })
|
|
|
|
|
run('join_lines.py', { on_line = 7, text = '+ 1 \\', indent = 4 })
|
|
|
|
|
run('nested_collections.py', { on_line = 5, text = '0,', indent = 12 })
|
|
|
|
|
run('nested_collections.py', { on_line = 6, text = ',0', indent = 12 })
|
|
|
|
|
run('nested_collections.py', { on_line = 29, text = '[1, 2],', indent = 12 })
|
|
|
|
|
run('nested_collections.py', { on_line = 39, text = '0,', indent = 5 })
|
|
|
|
|
run('strings.py', { on_line = 14, text = 'x', indent = 4 })
|
|
|
|
|
run('strings.py', { on_line = 15, text = 'x', indent = 0 })
|
|
|
|
|
run('strings.py', { on_line = 16, text = 'x', indent = 8 })
|
2021-04-17 22:45:42 +02:00
|
|
|
end)
|
2021-03-13 22:46:45 +01:00
|
|
|
end)
|