aboutsummaryrefslogtreecommitdiff
path: root/spec/novim_mode_spec.rb
blob: a3d603c09220178b76fcfc2deb40781716a6d565 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# Tip of the hat to terryma/vim-multiple-cursors for this style
# of testing Vim.
require 'spec_helper'

def initial(string)
  @vim_options.each { |x| vim.command(x) } if @vim_options
  write_file_content(string)
end

def final(string)
  expect(load_file_content).to eq normalize_string_indent(string)
end

describe 'Basic editing' do
  specify 'writing simple text' do
    initial <<-EOF
    EOF

    type 'hello world'

    final <<-EOF
      hello world
    EOF
  end

  specify '<Home> goes to first non-whitespace char' do
    initial <<-EOF
      justified
         indented
    EOF

    type '<Down><End><Home>!'

    final <<-EOF
      justified
         !indented
    EOF
  end

  specify 'copy and paste' do
    initial <<-EOF
      copy me
    EOF

    type '<S-End><C-c><Esc><Space><C-v>'

    final <<-EOF
      copy me copy me
    EOF
  end
end

describe 'Selecting' do
  specify 'select all and replace' do
    initial <<-EOF
      select me
    EOF

    type '<C-a>gone'

    final <<-EOF
      gone
    EOF
  end

  specify 'paste over selection' do
    initial <<-EOF
      cut me and paste over me
    EOF

    7.times { type '<S-Right>' }
    type '<C-x>'
    10.times { type '<Right>' }
    7.times { type '<S-Right>' }
    type '<C-v>'

    final <<-EOF
      and paste cut me
    EOF
  end

  specify 'selecting from middle of line to end' do
    initial <<-EOF
      a line of text
    EOF

    6.times { type '<Right>' }
    type '<S-End>'
    type '!'

    final <<-EOF
      a line!
    EOF
  end

  specify 'selecting from middle of line to beginning' do
    initial <<-EOF
      a line of text
    EOF

    7.times { type '<Right>' }
    type '<S-Home>'
    type '!'

    final <<-EOF
      !of text
    EOF
  end
end

describe 'Wrapped text' do
  before(:each) do
    @vim_options = [
      # A single buffer can't be resized, so create a split of the buffer
      'vsplit',
      'vertical resize 6'
    ]
  end

  specify 'move up/down one wrapped line' do
    initial <<-EOF
      line line line line
    EOF

    type '<Down><Down>down '
    type '<Up>up '

    final <<-EOF
      line line up down line line
    EOF
  end

  specify 'select wrapped line below' do
    initial <<-EOF
      line1 line2 line3 line4
    EOF

    type '<Down><S-Down><S-Down>'
    type '!'

    final <<-EOF
      line1 !line3 line4
    EOF
  end

  specify 'select wrapped line above' do
    initial <<-EOF
      line1 line2 line3 line4
    EOF

    type '<Down><Down><S-Up><S-Up>'
    type '!'

    final <<-EOF
      line1 !line3 line4
    EOF
  end

  specify '<End> goes to end of wrapped line' do
    initial <<-EOF
      line line line line
    EOF

    type '<End>!'

    final <<-EOF
      line! line line line
    EOF
  end

  specify '<Home> goes to beginning of wrapped line' do
    initial <<-EOF
      line line line line
    EOF

    type '<Down><Home>!'

    final <<-EOF
      line !line line line
    EOF
  end
end

describe 'Pane control' do
  specify 'moving to another pane' do
    # Open Quickfix window (auto focuses to it)
    type '<M-;>:copen<CR>'
    pane_type = vim.command 'echo &buftype'
    expect(pane_type).to eq 'quickfix'

    # Focus back to file
    type '<M-Up>'
    pane_type = vim.command 'echo &buftype'

    expect(pane_type).to eq ''
  end

  specify 'closing a pane' do
    # Open Netrw file manager in a sidebar
    type '<M-;>:Vexplore<CR>'
    buffer_id = vim.command "echo bufnr('%')"
    expect(buffer_id).to eq '2'

    # Close Netrw pane
    type '<C-w>'
    buffer_id = vim.command "echo bufnr('%')"
    expect(buffer_id).to eq '1'
  end
end