forked from nvim-java/nvim-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile_config_spec.lua
More file actions
422 lines (367 loc) · 10.5 KB
/
profile_config_spec.lua
File metadata and controls
422 lines (367 loc) · 10.5 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
local mock = require('luassert.mock')
local Profile = require('java.api.profile_config').Profile
local spy = require('luassert.spy')
describe('java.api.profile_config', function()
local project_path = 'project_path'
local mock_fn = {}
local mock_io = {}
local file_mock = {
read = function(_, readmode)
assert(readmode == '*a')
return '{ "test": "test" }'
end,
close = function() end,
write = function() end,
}
local json_encode = vim.fn.json_encode
local json_decode = vim.fn.json_decode
before_each(function()
package.loaded['java.api.profile_config'] = nil
mock_io = mock(io, true)
mock_fn = mock(vim.fn, true)
mock_fn.json_decode = function(data)
return json_decode(data)
end
mock_fn.json_encode = function(data)
return json_encode(data)
end
mock_fn.getcwd = function()
return project_path
end
mock_fn.stdpath = function()
return 'config_path'
end
mock_fn.expand = function()
return project_path
end
end)
after_each(function()
mock.revert(mock_fn)
mock.revert(mock_io)
end)
describe('read_config', function()
it('when no config file', function()
mock_io.open = function()
return nil
end
local profile_config = require('java.api.profile_config')
profile_config.setup()
assert.same(profile_config.get_all_profiles('module1 -> main_class'), {})
end)
it('when config cannot be decoded', function()
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{'
end
mock_io.open = function()
return file_mock
end
local profile_config = require('java.api.profile_config')
profile_config.setup(project_path)
assert.same(profile_config.get_all_profiles('module1 -> main_class'), {})
end)
it('successfully', function()
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": \
{ \
"module1 -> main_class": {\
"profile_name1":{ \
"vm_args": "vm_args",\
"prog_args": "prog_args",\
"name": "profile_name1",\
"is_active": true }\
} \
}\
}'
end
mock_io.open = function(config_path, mode)
assert(config_path == 'config_path/nvim-java-profiles.json')
assert(mode == 'r')
return file_mock
end
local profile_config = require('java.api.profile_config')
profile_config.setup(project_path)
assert.same(profile_config.get_all_profiles('module1 -> main_class'), {
profile_name1 = Profile('vm_args', 'prog_args', 'profile_name1', true),
})
end)
end)
describe('add_or_update_profile', function()
it('when updating profile', function()
local input_profile =
Profile('vm_args_updated', 'prog_args_updated', 'name', true)
mock_io.open = function()
return file_mock
end
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": {\
"module1 -> main_class": {\
"profile_name1":{\
"vm_args": "vm_args",\
"prog_args": "prog_args",\
"name": "name",\
"is_active": true }\
}\
}\
}'
end
local spy_close = spy.on(file_mock, 'close')
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
profile_config.add_or_update_profile(
input_profile,
'name',
'module1 -> main_class'
)
--- verify
assert.same(
{ name = input_profile },
profile_config.get_all_profiles('module1 -> main_class')
)
assert.spy(spy_close).was_called(3) -- init, full_config, save
end)
end)
it('when add new profile (set activate automatically)', function()
local input_profile = Profile('vm_args2', 'prog_args2', 'name2')
mock_io.open = function()
return file_mock
end
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": { \
"module1 -> main_class": [\
{ \
"vm_args": "vm_args1",\
"prog_args": "prog_args1",\
"name": "name1",\
"is_active": true }\
]\
}\
}'
end
mock_fn.json_encode = function(data)
local expected1_id = 1
local expected2_id = 2
if data.project_path['module1 -> main_class'][1].name == 'name2' then
expected1_id = 2
expected2_id = 1
end
assert.same(data.project_path['module1 -> main_class'][expected1_id], {
vm_args = 'vm_args1',
prog_args = 'prog_args1',
name = 'name1',
is_active = false,
})
assert.same(data.project_path['module1 -> main_class'][expected2_id], {
vm_args = 'vm_args2',
prog_args = 'prog_args2',
name = 'name2',
is_active = true,
})
return json_encode(data)
end
local spy_close = spy.on(file_mock, 'close')
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
profile_config.add_or_update_profile(
input_profile,
nil,
'module1 -> main_class'
)
local expected_app_profiles_output = {
name1 = Profile('vm_args1', 'prog_args1', 'name1', false),
name2 = Profile('vm_args2', 'prog_args2', 'name2', true),
}
assert.same(
profile_config.get_all_profiles('module1 -> main_class'),
expected_app_profiles_output
)
assert.spy(spy_close).was_called(3) -- init, full_config, save
end)
it('when profile already exists', function()
-- setup
local input_profile = Profile('vm_args1', 'prog_args1', 'name1')
-- mocks/verify mocks calls with expected values
mock_io.open = function()
return file_mock
end
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": { \
"module1 -> main_class": {\
"profile_name1":{\
"vm_args": "vm_args1",\
"prog_args": "prog_args1",\
"name": "name1",\
"is_active": true }\
}\
}\
}'
end
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
assert.has.error(function()
profile_config.add_or_update_profile(
input_profile,
nil,
'module1 -> main_class'
)
end, "Profile with name 'name1' already exists")
end)
it('when profile name is required', function()
-- setup
local input_profile = Profile('vm_args', 'prog_args', nil)
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
assert.has.error(function()
profile_config.add_or_update_profile(
input_profile,
nil,
'module1 -> main_class'
)
end, 'Profile name is required')
end)
it('set_active_profile', function()
-- mocks/verify mocks calls with expected values
mock_io.open = function()
return file_mock
end
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": \
{ \
"module1 -> main_class": [{ \
"vm_args": "vm_args",\
"prog_args": "prog_args",\
"name": "name1",\
"is_active": true \
},\
{ \
"vm_args": "vm_args",\
"prog_args": "prog_args",\
"name": "name2",\
"is_active": false \
}] \
}\
}'
end
local spy_close = spy.on(file_mock, 'close')
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
profile_config.set_active_profile('name2', 'module1 -> main_class')
--- verify
assert.same(
profile_config.get_active_profile('module1 -> main_class'),
Profile('vm_args', 'prog_args', 'name2', true)
)
assert.spy(spy_close).was_called(3) -- init, full_config, save
end)
it('get_profile_by_name', function()
-- setup
-- mocks/verify mocks calls with expected values
mock_io.open = function()
return file_mock
end
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": \
{ \
"module1 -> main_class": [{ \
"vm_args": "vm_args1",\
"prog_args": "prog_args1",\
"name": "name1",\
"is_active": true \
},\
{ \
"vm_args": "vm_args2",\
"prog_args": "prog_args2",\
"name": "name2",\
"is_active": false \
}] \
}\
}'
end
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
local profile = profile_config.get_profile('name1', 'module1 -> main_class')
--- verify
assert.same(profile, Profile('vm_args1', 'prog_args1', 'name1', true))
end)
describe('get_active_profile', function()
-- mocks/verify mocks calls with expected values
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": \
{ \
"module1 -> main_class": [{ \
"vm_args": "vm_args1",\
"prog_args": "prog_args1",\
"name": "name1",\
"is_active": true \
},\
{ \
"vm_args": "vm_args2",\
"prog_args": "prog_args2",\
"name": "name2",\
"is_active": false \
}] \
}\
}'
end
it('succesfully', function()
-- setup
mock_io.open = function()
return file_mock
end
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
local profile = profile_config.get_active_profile('module1 -> main_class')
--- verify
assert.same(profile, Profile('vm_args1', 'prog_args1', 'name1', true))
end)
it('when number_of_profiles == 0', function()
-- setup
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": { "module1 -> main_class": [] } }'
end
mock_io.open = function()
return file_mock
end
-- call the function
local profile_config = require('java.api.profile_config')
profile_config.setup()
local profile = profile_config.get_active_profile('module1 -> main_class')
-- verify
assert(profile == nil)
end)
it('when number_of_profiles > 0', function()
mock_io.open = function()
return file_mock
end
file_mock.read = function(_, readmode)
assert(readmode == '*a')
return '{ "project_path": { "module1 -> main_class": [{ \
"vm_args": "vm_args1",\
"prog_args": "prog_args1",\
"name": "name1",\
"is_active": false \
}] } }'
end
local profile_config = require('java.api.profile_config')
profile_config.setup()
assert.has.error(function()
profile_config.get_active_profile('module1 -> main_class')
end, 'No active profile')
end)
end)
end)