summaryrefslogtreecommitdiff
path: root/test/test_code_action_python.vader
blob: 2aac1ec7ccb1de8079366b48ae170046bef1f7a5 (plain)
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
Given python(An example Python file):
  def main():
      a = 1
      c = a + 1

Execute():
  let g:changes = [
  \ {'end': {'offset': 7, 'line': 1}, 'newText': 'func_qtffgsv', 'start': {'offset': 5, 'line': 1}},
  \ {'end': {'offset': 9, 'line': 1}, 'newText': '', 'start': {'offset': 8, 'line': 1}},
  \ {'end': {'offset': 15, 'line': 3}, 'newText': "    return c\n\n\ndef main():\n    c = func_qtffgsvi()\n", 'start': {'offset': 15, 'line': 3}}
  \]

  call ale#code_action#ApplyChanges(expand('%:p'), g:changes, 0)

Expect(The changes should be applied correctly):
  def func_qtffgsvi():
      a = 1
      c = a + 1
      return c


  def main():
      c = func_qtffgsvi()


Given python(Second python example):
  import sys
  import exifread

  def main():
      with open(sys.argv[1], 'rb') as f:
          exif = exifread.process_file(f)
          dt = str(exif['Image DateTime'])
          date = dt[:10].replace(':', '-')

Execute():
  let g:changes = [
  \ {'end': {'offset': 16, 'line': 2}, 'newText': "\n\n\ndef func_ivlpdpao(f):\n    exif = exifread.process_file(f)\n    dt = str(exif['Image DateTime'])\n    date = dt[:10].replace(':', '-')\n    return date\n", 'start': {'offset': 16, 'line': 2}},
  \ {'end': {'offset': 32, 'line': 6}, 'newText': 'date = func', 'start': {'offset': 9, 'line': 6}},
  \ {'end': {'offset': 42, 'line': 8}, 'newText': "ivlpdpao(f)\n", 'start': {'offset': 33, 'line': 6}}
  \]

  call ale#code_action#ApplyChanges(expand('%:p'), g:changes, 0)

Expect(The changes should be applied correctly):
  import sys
  import exifread


  def func_ivlpdpao(f):
      exif = exifread.process_file(f)
      dt = str(exif['Image DateTime'])
      date = dt[:10].replace(':', '-')
      return date


  def main():
      with open(sys.argv[1], 'rb') as f:
          date = func_ivlpdpao(f)