aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/rust_spec.lua
blob: 468abe004388db8fbcaad960732b32ed5a250ec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
local whole_file = require('tests.indent.common').indent_whole_file
local new_line = require('tests.indent.common').indent_new_line
local scan_dir = require('plenary.scandir').scan_dir

local opts = {
  tabstop = 4,
  shiftwidth = 4,
  softtabstop = 0,
  expandtab = true,
}

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/rust/' .. file, spec, opts)
  end)
end

describe('indent Rust:', function()
  describe('whole file:', function()
    local files = scan_dir('tests/indent/rust');
    for _, file in ipairs(files) do
      it(vim.fn.fnamemodify(file, ':t'), function()
        whole_file(file, opts)
      end)
    end
  end)

  describe('new line:', function()
    run('array.rs', { on_line = 2, text = '0,', indent = 4 })
    run('array.rs', { on_line = 8, text = '0,', indent = 8 })
    run('comment.rs', { on_line = 3, text = 'a', indent = '/// ' })
    run('cond.rs', { on_line = 11, text = 'x += 1;', indent = 12 })
    run('cond.rs', { on_line = 2, text = 'x += 1;', indent = 8 })
    run('cond.rs', { on_line = 4, text = 'x += 1;', indent = 8 })
    run('cond.rs', { on_line = 6, text = 'x += 1;', indent = 8 })
    run('enum.rs', { on_line = 2, text = 'Q,', indent = 4 })
    run('enum.rs', { on_line = 4, text = 'i32,', indent = 8 })
    run('enum.rs', { on_line = 8, text = 'z: u32,', indent = 8 })
    run('func.rs', { on_line = 1, text = 'let _x = 1;', indent = 4 })
    run('func.rs', { on_line = 6, text = 'z: i32,', indent = 4 })
    run('impl.rs', { on_line = 3, text = 'const FOO: u32 = 1;', indent = 4 })
    run('impl.rs', { on_line = 4, text = 'let _x = 1;', indent = 8 })
    run('loop.rs', { on_line = 10, text = 'x += 1;', indent = 8 })
    run('loop.rs', { on_line = 2, text = 'x += 1;', indent = 8 })
    run('loop.rs', { on_line = 6, text = 'x += 1;', indent = 8 })
    run('macro.rs', { on_line = 1, text = '() => {},', indent = 4 })
    run('macro.rs', { on_line = 12, text = 'B C', indent = 4 })
    run('macro.rs', { on_line = 2, text = 'struct $c;', indent = 8 })
    run('match.rs', { on_line = 2, text = '-1 => -1,', indent = 8 })
    run('match.rs', { on_line = 7, text = 'let y = 1;', indent = 12 })
    run('mod.rs', { on_line = 1, text = 'const Z: i32 = 1;', indent = 4 })
    run('mod.rs', { on_line = 2, text = 'const Z: i32 = 1;', indent = 4 })
    run('mod.rs', { on_line = 6, text = 'const Z: i32 = 1;', indent = 8 })
    run('string.rs', { on_line = 2, text = 'brave new', indent = 0 })
    run('string.rs', { on_line = 5, text = 'brave new \\', indent = 8 })
    run('string.rs', { on_line = 9, text = 'brave new \\', indent = 8 })
    run('struct.rs', { on_line = 1, text = 'z: i32,', indent = 4 })
    run('struct.rs', { on_line = 2, text = 'z: i32,', indent = 4 })
    run('trait.rs', { on_line = 4, text = 'fn baz();', indent = 4 })
    run('trait.rs', { on_line = 7, text = 'fn baz();', indent = 4 })
    run('trait.rs', { on_line = 8, text = '()', indent = 8 })
    run('where.rs', { on_line = 17, text = 'T: Debug,', indent = 4 })
    run('where.rs', { on_line = 2, text = 'T: Debug,', indent = 4 })
    run('where.rs', { on_line = 9, text = 'T: Debug,', indent = 4 })
  end)
end)