-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
todo_spec.lua
401 lines (361 loc) · 11.8 KB
/
todo_spec.lua
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
local helpers = require('tests.plenary.helpers')
local Date = require('orgmode.objects.date')
local config = require('orgmode.config')
describe('Todo mappings', function()
after_each(function()
vim.cmd([[silent! %bw!]])
end)
it('should change todo state of a headline forward (org_todo)', function()
helpers.create_agenda_file({
'#TITLE: Test',
'',
'* TODO Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
})
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
vim.fn.cursor(3, 1)
-- Changing to DONE and adding closed date
vim.cmd([[norm cit]])
assert.are.same({
'* DONE Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02> CLOSED: [' .. Date.now():to_string() .. ']',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
-- Removing todo keyword and removing closed date
vim.cmd([[norm cit]])
assert.are.same({
'* Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
-- Setting TODO keyword, initial state
vim.cmd([[norm cit]])
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
end)
it('should change todo state of repeatable task and add last repeat property and state change (org_todo)', function()
helpers.create_agenda_file({
'#TITLE: Test',
'',
'* TODO Test orgmode',
' DEADLINE: <2021-09-07 Tue 12:00 +1w>',
'',
'* TODO Another task',
})
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-09-07 Tue 12:00 +1w>',
'',
'* TODO Another task',
}, vim.api.nvim_buf_get_lines(0, 2, 6, false))
vim.fn.cursor(3, 1)
vim.cmd([[norm cit]])
vim.wait(50)
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-09-14 Tue 12:00 +1w>',
' :PROPERTIES:',
' :LAST_REPEAT: [' .. Date.now():to_string() .. ']',
' :END:',
' - State "DONE" from "TODO" [' .. Date.now():to_string() .. ']',
'',
'* TODO Another task',
}, vim.api.nvim_buf_get_lines(0, 2, 10, false))
end)
it('should change todo state of repeatable task and not log last repeat date if disabled', function()
helpers.create_agenda_file({
'#TITLE: Test',
'',
'* TODO Test orgmode',
' DEADLINE: <2021-09-07 Tue 12:00 +1w>',
'',
'* TODO Another task',
}, {
org_log_repeat = false,
})
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-09-07 Tue 12:00 +1w>',
'',
'* TODO Another task',
}, vim.api.nvim_buf_get_lines(0, 2, 6, false))
vim.fn.cursor(3, 1)
vim.cmd([[norm cit]])
vim.wait(50)
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-09-14 Tue 12:00 +1w>',
'',
'* TODO Another task',
}, vim.api.nvim_buf_get_lines(0, 2, 10, false))
config.org_log_repeat = 'time'
end)
it('should add last repeat property and state change to drawer (org_log_into_drawer)', function()
config:extend({
org_log_into_drawer = 'LOGBOOK',
})
helpers.create_agenda_file({
'#TITLE: Test',
'',
'* TODO Test orgmode',
' DEADLINE: <2021-09-07 Tue 12:00 +1w>',
'',
'* TODO Another task',
})
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-09-07 Tue 12:00 +1w>',
'',
'* TODO Another task',
}, vim.api.nvim_buf_get_lines(0, 2, 6, false))
vim.fn.cursor(3, 1)
vim.cmd([[norm cit]])
vim.wait(50)
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-09-14 Tue 12:00 +1w>',
' :PROPERTIES:',
' :LAST_REPEAT: [' .. Date.now():to_string() .. ']',
' :END:',
' :LOGBOOK:',
' - State "DONE" from "TODO" [' .. Date.now():to_string() .. ']',
' :END:',
'',
'* TODO Another task',
}, vim.api.nvim_buf_get_lines(0, 2, 12, false))
vim.fn.cursor(3, 1)
vim.cmd([[norm cit]])
vim.wait(200)
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-09-21 Tue 12:00 +1w>',
' :PROPERTIES:',
' :LAST_REPEAT: [' .. Date.now():to_string() .. ']',
' :END:',
' :LOGBOOK:',
' - State "DONE" from "TODO" [' .. Date.now():to_string() .. ']',
' - State "DONE" from "TODO" [' .. Date.now():to_string() .. ']',
' :END:',
'',
'* TODO Another task',
}, vim.api.nvim_buf_get_lines(0, 2, 13, false))
end)
it('should change todo state of a headline backward (org_todo_prev)', function()
helpers.create_agenda_file({
'#TITLE: Test',
'',
'* TODO Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
})
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
vim.fn.cursor(3, 1)
-- Removing todo keyword
vim.cmd([[norm ciT]])
assert.are.same({
'* Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
-- Changing to DONE and adding closed date
vim.cmd([[norm ciT]])
assert.are.same({
'* DONE Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02> CLOSED: [' .. Date.now():to_string() .. ']',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
-- Setting TODO keyword, initial state
vim.cmd([[norm ciT]])
assert.are.same({
'* TODO Test orgmode',
' DEADLINE: <2021-07-21 Wed 22:02>',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
end)
it('Only modifies the actually todo keyword even when a match exists in the text', function()
helpers.create_agenda_file({
'* TODO test TODO',
})
vim.fn.cursor(1, 1)
vim.cmd('norm ciT')
assert.are.same('* test TODO', vim.fn.getline(1))
end)
it('Should properly add closed date when plan date is not of specific type', function()
helpers.create_agenda_file({
'#TITLE: Test',
'',
'* TODO Test orgmode',
' <2021-07-21 Wed 22:02>',
})
vim.fn.cursor({ 3, 1 })
vim.cmd([[norm cit]])
assert.are.same({
'* DONE Test orgmode',
' CLOSED: [' .. Date.now():to_string() .. ']',
' <2021-07-21 Wed 22:02>',
}, vim.api.nvim_buf_get_lines(0, 2, 5, false))
end)
it('Should remove todo keyword when space is pressed in fast access', function()
config:extend({
org_todo_keywords = { 'TODO(t)', 'PHONECALL(p)', 'WAITING(w)', '|', 'DONE(d)' },
org_log_into_drawer = 'LOGBOOK',
})
helpers.create_agenda_file({
'* PHONECALL Call dad',
' SCHEDULED: <2021-09-07 Tue 12:00 +1d>',
})
assert.are.same({
'* PHONECALL Call dad',
' SCHEDULED: <2021-09-07 Tue 12:00 +1d>',
}, vim.api.nvim_buf_get_lines(0, 0, -1, false))
vim.fn.cursor(1, 3)
vim.cmd([[exe "norm cit\<Space>"]])
vim.wait(50)
assert.are.same({
'* Call dad',
' SCHEDULED: <2021-09-07 Tue 12:00 +1d>',
}, vim.api.nvim_buf_get_lines(0, 0, -1, false))
end)
it('Should reset state to the one defined in the REPEAT_TO_STATE property', function()
config:extend({
org_todo_keywords = { 'TODO(t)', 'PHONECALL(p)', 'WAITING(w)', '|', 'DONE(d)' },
org_log_into_drawer = 'LOGBOOK',
})
helpers.create_agenda_file({
'#+title: REPEAT_TO_STATE_PROPERTY',
'',
'* PHONECALL Call dad',
' SCHEDULED: <2021-09-07 Tue 12:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :END:',
})
assert.are.same({
'* PHONECALL Call dad',
' SCHEDULED: <2021-09-07 Tue 12:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :END:',
}, vim.api.nvim_buf_get_lines(0, 2, 7, false))
vim.fn.cursor(3, 3)
vim.cmd([[norm citd]])
vim.wait(50)
assert.are.same({
'* PHONECALL Call dad',
' SCHEDULED: <2021-09-08 Wed 12:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :LAST_REPEAT: [' .. Date.now():to_string() .. ']',
' :END:',
' :LOGBOOK:',
' - State "DONE" from "PHONECALL" [' .. Date.now():to_string() .. ']',
' :END:',
}, vim.api.nvim_buf_get_lines(0, 2, 11, false))
end)
it('Should reset state to the one defined in the org_todo_repeat_to_state config value', function()
config:extend({
org_todo_keywords = { 'TODO(t)', 'MEET(m)', '|', 'DONE(d)' },
org_log_into_drawer = 'LOGBOOK',
org_todo_repeat_to_state = 'MEET',
})
helpers.create_agenda_file({
'#+title: REPEAT_TO_STATE_CONFIG',
'',
'* MEET Daily stand-up with the team',
' SCHEDULED: <2021-09-07 Tue 09:00 +1d>',
})
assert.are.same({
'* MEET Daily stand-up with the team',
' SCHEDULED: <2021-09-07 Tue 09:00 +1d>',
}, vim.api.nvim_buf_get_lines(0, 2, 4, false))
vim.fn.cursor(3, 3)
vim.cmd([[norm citd]])
vim.wait(50)
assert.are.same({
'* MEET Daily stand-up with the team',
' SCHEDULED: <2021-09-08 Wed 09:00 +1d>',
' :PROPERTIES:',
' :LAST_REPEAT: [' .. Date.now():to_string() .. ']',
' :END:',
' :LOGBOOK:',
' - State "DONE" from "MEET" [' .. Date.now():to_string() .. ']',
' :END:',
}, vim.api.nvim_buf_get_lines(0, 2, 10, false))
end)
it('Should prefer reading the property from the DRAWER than the one in the config', function()
config:extend({
org_todo_keywords = { 'TODO(t)', 'MEET(m)', 'PHONECALL(p)', '|', 'DONE(d)' },
org_log_into_drawer = 'LOGBOOK',
org_todo_repeat_to_state = 'MEET',
})
helpers.create_agenda_file({
'#+title: REPEAT_TO_STATE_CONFIG',
'',
'* MEET Daily stand-up with the team',
' SCHEDULED: <2021-09-07 Tue 09:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :END:',
})
assert.are.same({
'* MEET Daily stand-up with the team',
' SCHEDULED: <2021-09-07 Tue 09:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :END:',
}, vim.api.nvim_buf_get_lines(0, 2, 7, false))
vim.fn.cursor(3, 3)
vim.cmd([[norm citd]])
vim.wait(50)
assert.are.same({
'* PHONECALL Daily stand-up with the team',
' SCHEDULED: <2021-09-08 Wed 09:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :LAST_REPEAT: [' .. Date.now():to_string() .. ']',
' :END:',
' :LOGBOOK:',
' - State "DONE" from "MEET" [' .. Date.now():to_string() .. ']',
' :END:',
}, vim.api.nvim_buf_get_lines(0, 2, 11, false))
end)
it('If the keyword does not exist in the list of known keywords, default to the first one', function()
config:extend({
org_todo_keywords = { 'TODO(t)', 'MEET(m)', '|', 'DONE(d)' },
org_log_into_drawer = 'LOGBOOK',
org_todo_repeat_to_state = 'MEET',
})
helpers.create_agenda_file({
'#+title: REPEAT_TO_STATE_CONFIG',
'',
'* MEET Daily stand-up with the team',
' SCHEDULED: <2021-09-07 Tue 09:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :END:',
})
assert.are.same({
'* MEET Daily stand-up with the team',
' SCHEDULED: <2021-09-07 Tue 09:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :END:',
}, vim.api.nvim_buf_get_lines(0, 2, 7, false))
vim.fn.cursor(3, 3)
vim.cmd([[norm citd]])
vim.wait(50)
assert.are.same({
'* TODO Daily stand-up with the team',
' SCHEDULED: <2021-09-08 Wed 09:00 +1d>',
' :PROPERTIES:',
' :REPEAT_TO_STATE: PHONECALL',
' :LAST_REPEAT: [' .. Date.now():to_string() .. ']',
' :END:',
' :LOGBOOK:',
' - State "DONE" from "MEET" [' .. Date.now():to_string() .. ']',
' :END:',
}, vim.api.nvim_buf_get_lines(0, 2, 11, false))
end)
end)