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
|
require('plenary.test_harness'):setup_busted()
local transform_mod = require('telescope.actions.mt').transform_mod
local eq = function(a, b)
assert.are.same(a, b)
end
describe('actions', function()
it('should allow creating custom actions', function()
local a = transform_mod {
x = function() return 5 end,
}
eq(5, a.x())
end)
it('allows adding actions', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
}
local x_plus_y = a.x + a.y
eq({"x", "y"}, {x_plus_y()})
end)
it('ignores nils from added actions', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
nil_maker = function() return nil end,
}
local x_plus_y = a.x + a.nil_maker + a.y
eq({"x", "y"}, {x_plus_y()})
end)
it('allows overriding an action', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
}
-- actions.file_goto_selection_edit:replace(...)
a.x:replace(function() return "foo" end)
eq("foo", a.x())
a._clear()
eq("x", a.x())
end)
it('enhance.pre', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
}
local called_pre = false
a.y:enhance {
pre = function()
called_pre = true
end,
}
eq("y", a.y())
eq(true, called_pre)
end)
it('enhance.post', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
}
local called_post = false
a.y:enhance {
post = function()
called_post = true
end,
}
eq("y", a.y())
eq(true, called_post)
end)
it('can call both', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
}
local called_count = 0
local count_inc = function()
called_count = called_count + 1
end
a.y:enhance {
pre = count_inc,
post = count_inc,
}
eq("y", a.y())
eq(2, called_count)
end)
it('can call both even when combined', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
}
local called_count = 0
local count_inc = function()
called_count = called_count + 1
end
a.y:enhance {
pre = count_inc,
post = count_inc,
}
a.x:enhance {
post = count_inc
}
local x_plus_y = a.x + a.y
x_plus_y()
eq(3, called_count)
end)
it('clears enhance', function()
local a = transform_mod {
x = function() return "x" end,
y = function() return "y" end,
}
local called_post = false
a.y:enhance {
post = function()
called_post = true
end,
}
a._clear()
eq("y", a.y())
eq(false, called_post)
end)
it('handles passing arguments', function()
local a = transform_mod {
x = function(bufnr) return string.format("bufnr: %s") end,
}
a.x:replace(function(bufnr) return string.format("modified: %s", bufnr) end)
eq("modified: 5", a.x(5))
end)
end)
|