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
|
local t = require('test.testutil')
local n = require('test.functional.testnvim')()
local clear = n.clear
local command = n.command
local eq = t.eq
local fn = n.fn
describe('cfilter.lua', function()
before_each(function()
clear()
command('packadd cfilter')
end)
for _, list in ipairs({
{
name = 'Cfilter',
get = fn.getqflist,
set = fn.setqflist,
},
{
name = 'Lfilter',
get = function()
return fn.getloclist(0)
end,
set = function(items)
return fn.setloclist(0, items)
end,
},
}) do
local filter = function(s, bang)
if not bang then
bang = ''
else
bang = '!'
end
command(string.format('%s%s %s', list.name, bang, s))
end
describe((':%s'):format(list.name), function()
it('does not error on empty list', function()
filter('nothing')
eq({}, fn.getqflist())
end)
it('requires an argument', function()
local ok = pcall(filter, '')
eq(false, ok)
end)
local test = function(name, s, res, map, bang)
it(('%s (%s)'):format(name, s), function()
list.set({
{ filename = 'foo', lnum = 1, text = 'bar' },
{ filename = 'foo', lnum = 2, text = 'baz' },
{ filename = 'foo', lnum = 3, text = 'zed' },
})
filter(s, bang)
local got = list.get()
if map then
got = map(got)
end
eq(res, got)
end)
end
local toname = function(qflist)
return fn.map(qflist, 'v:val.text')
end
test('filters with no matches', 'does not match', {})
test('filters with matches', 'ba', { 'bar', 'baz' }, toname)
test('filters with matches', 'z', { 'baz', 'zed' }, toname)
test('filters with matches', '^z', { 'zed' }, toname)
test('filters with not matches', '^z', { 'bar', 'baz' }, toname, true)
it('also supports using the / register', function()
list.set({
{ filename = 'foo', lnum = 1, text = 'bar' },
{ filename = 'foo', lnum = 2, text = 'baz' },
{ filename = 'foo', lnum = 3, text = 'zed' },
})
fn.setreg('/', 'ba')
filter('/')
eq({ 'bar', 'baz' }, toname(list.get()))
end)
it('also supports using the / register with bang', function()
list.set({
{ filename = 'foo', lnum = 1, text = 'bar' },
{ filename = 'foo', lnum = 2, text = 'baz' },
{ filename = 'foo', lnum = 3, text = 'zed' },
})
fn.setreg('/', 'ba')
filter('/', true)
eq({ 'zed' }, toname(list.get()))
end)
end)
end
end)
|