summaryrefslogtreecommitdiff
path: root/test/command_callback/test_cargo_command_callbacks.vader
blob: 6bdc10b64c1ba9ece111f3e3ecda02904e6778aa (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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
Before:
  Save g:ale_rust_cargo_use_check
  Save g:ale_rust_cargo_check_all_targets
  Save g:ale_rust_cargo_check_tests
  Save g:ale_rust_cargo_check_examples
  Save g:ale_rust_cargo_default_feature_behavior
  Save g:ale_rust_cargo_include_features
  Save g:ale_rust_cargo_avoid_whole_workspace

  unlet! g:ale_rust_cargo_use_check
  unlet! g:ale_rust_cargo_check_all_targets
  unlet! g:ale_rust_cargo_check_tests
  unlet! g:ale_rust_cargo_check_examples
  unlet! g:ale_rust_cargo_default_feature_behavior
  unlet! g:ale_rust_cargo_include_features
  unlet! g:ale_rust_cargo_avoid_whole_workspace

  runtime ale_linters/rust/cargo.vim
  call ale#test#SetDirectory('/testplugin/test/command_callback')

  let g:suffix = ' --frozen --message-format=json -q'

After:
  Restore

  unlet! g:suffix

  call ale#test#RestoreDirectory()
  call ale#linter#Reset()
  call ale#semver#ResetVersionCache()

Execute(An empty string should be returned for the cargo executable when there's no Cargo.toml file):
  AssertEqual
  \ '',
  \ ale_linters#rust#cargo#GetCargoExecutable(bufnr(''))

Execute(The executable should be returned when there is a Cargo.toml file):
  call ale#test#SetFilename('cargo_paths/test.rs')

  AssertEqual
  \ 'cargo',
  \ ale_linters#rust#cargo#GetCargoExecutable(bufnr(''))

Execute(The VersionCheck function should return the --version command):
  AssertEqual
  \ 'cargo --version',
  \ ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(The default command should be correct):
  AssertEqual
  \ 'cargo build' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

Execute(`cargo check` should be used when the version is new enough):
  AssertEqual
  \ 'cargo check' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.17.0 (3423351a5 2017-10-06)',
  \ ])

  " We should cache the version check
  AssertEqual
  \ 'cargo check' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

  AssertEqual '', ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(`cargo build` should be used when cargo is too old):
  AssertEqual
  \ 'cargo build' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.16.0 (3423351a5 2017-10-06)',
  \ ])

  " We should cache the version check
  AssertEqual
  \ 'cargo build' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

  AssertEqual '', ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(`cargo build` should be used when g:ale_rust_cargo_use_check is set to 0):
  let g:ale_rust_cargo_use_check = 0

  AssertEqual
  \ 'cargo build' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.24.0 (3423351a5 2017-10-06)',
  \ ])

  " We should cache the version check
  AssertEqual
  \ 'cargo build' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

  AssertEqual '', ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(`cargo check` should be used when the version is new enough):
  AssertEqual
  \ 'cargo check' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

  " We should cache the version check
  AssertEqual
  \ 'cargo check' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

  AssertEqual '', ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(--all-targets should be used when g:ale_rust_cargo_check_all_targets is set to 1):
  let g:ale_rust_cargo_check_all_targets = 1

  AssertEqual
  \ 'cargo check --all-targets' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

  " We should cache the version check
  AssertEqual
  \ 'cargo check --all-targets' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

  AssertEqual '', ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(--tests should be used when g:ale_rust_cargo_check_tests is set to 1):
  let g:ale_rust_cargo_check_tests = 1

  AssertEqual
  \ 'cargo check --tests' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

  " We should cache the version check
  AssertEqual
  \ 'cargo check --tests' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

  AssertEqual '', ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(--examples should be used when g:ale_rust_cargo_check_examples is set to 1):
  let g:ale_rust_cargo_check_examples = 1

  AssertEqual
  \ 'cargo check --examples' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

  " We should cache the version check
  AssertEqual
  \ 'cargo check --examples' . g:suffix,
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

  AssertEqual '', ale_linters#rust#cargo#VersionCheck(bufnr(''))

Execute(--no-default-features should be used when g:ale_rust_cargo_default_feature_behavior is none):
  let g:ale_rust_cargo_default_feature_behavior = 'none'

  AssertEqual
  \ 'cargo check' . g:suffix . ' --no-default-features',
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

Execute(g:ale_rust_cargo_include_features added when g:ale_rust_cargo_default_feature_behavior is none):
  let g:ale_rust_cargo_default_feature_behavior = 'none'
  let g:ale_rust_cargo_include_features = 'foo bar'

  AssertEqual
  \ 'cargo check' . g:suffix . ' --no-default-features --features ' .
  \ (fnamemodify(&shell, ':t') is? 'cmd.exe' ? '"foo bar"' : "'foo bar'"),
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

Execute(g:ale_rust_cargo_include_features added and escaped):
  let g:ale_rust_cargo_default_feature_behavior = 'default'
  let g:ale_rust_cargo_include_features = "foo bar baz"

  AssertEqual
  \ 'cargo check' . g:suffix . ' --features ' .
  \ (fnamemodify(&shell, ':t') is? 'cmd.exe' ? '"foo bar baz"' : "'foo bar baz'"),
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

Execute(--all-features should be used when g:ale_rust_cargo_default_feature_behavior is all):
  let g:ale_rust_cargo_default_feature_behavior = 'all'

  " When all features are enabled we should ignore extra features to add
  " since it won't do anything
  let g:ale_rust_cargo_include_features = 'foo bar'

  AssertEqual
  \ 'cargo check' . g:suffix . ' --all-features',
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [
  \   'cargo 0.22.0 (3423351a5 2017-10-06)',
  \ ])

Execute(When a crate belongs to a workspace we chdir into the crate.):
  call ale#test#SetFilename('cargo_workspace_paths/subpath/test.rs')

  if ale#Has('win32')
    let test_cdprefix = "C:\\testplugin\\test\\command_callback\\cargo_workspace_paths\\subpath"
  else
    let test_cdprefix = "'/testplugin/test/command_callback/cargo_workspace_paths/subpath'"
  endif
                    
  AssertEqual
  \ "cd ".test_cdprefix." && cargo build --frozen --message-format=json -q",
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])

Execute(When a crate belongs to a workspace we chdir into the crate, unless we disabled it):
  let g:ale_rust_cargo_avoid_whole_workspace = 0
  call ale#test#SetFilename('cargo_workspace_paths/subpath/test.rs')

  AssertEqual
  \ "cargo build --frozen --message-format=json -q",
  \ ale_linters#rust#cargo#GetCommand(bufnr(''), [])