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
|
require "helper"
require "neovim/plugin"
module Neovim
RSpec.describe Plugin do
describe ".from_config_block" do
it "registers a command" do
cmd_block = -> {}
plugin = Plugin.from_config_block("source") do |plug|
plug.command(
"Foo",
nargs: 1,
range: true,
bang: true,
register: true,
&cmd_block
)
end
expect(plugin.handlers.size).to be(1)
handler = plugin.handlers.first
expect(handler.sync?).to be(false)
expect(handler.qualified?).to be(true)
expect(handler.block).to eq(cmd_block)
expect(handler.qualified_name).to eq("source:command:Foo")
expect(handler.to_spec).to eq(
type: :command,
name: "Foo",
sync: false,
opts: {
nargs: 1,
range: "",
bang: "",
register: ""
}
)
end
it "registers an autocmd" do
au_block = -> {}
plugin = Plugin.from_config_block("source") do |plug|
plug.autocmd("BufEnter", pattern: "*.rb", &au_block)
end
expect(plugin.handlers.size).to be(1)
handler = plugin.handlers.first
expect(handler.sync?).to be(false)
expect(handler.qualified?).to be(true)
expect(handler.block).to eq(au_block)
expect(handler.qualified_name).to eq("source:autocmd:BufEnter:*.rb")
expect(handler.to_spec).to eq(
type: :autocmd,
name: "BufEnter",
sync: false,
opts: {pattern: "*.rb"}
)
end
it "registers a function" do
fun_block = -> {}
plugin = Plugin.from_config_block("source") do |plug|
plug.function("Foo", range: true, nargs: 1, &fun_block)
end
expect(plugin.handlers.size).to be(1)
handler = plugin.handlers.first
expect(handler.sync?).to be(false)
expect(handler.qualified?).to be(true)
expect(handler.block).to eq(fun_block)
expect(handler.qualified_name).to eq("source:function:Foo")
expect(handler.to_spec).to eq(
type: :function,
name: "Foo",
sync: false,
opts: {range: "", nargs: 1}
)
end
it "registers setup callbacks" do
yielded = []
plugin = Plugin.from_config_block("source") do |plug|
plug.__send__(:setup) do |client|
yielded << client
end
plug.__send__(:setup) do |_|
yielded << :other
end
end
expect do
plugin.setup(:client)
end.to change { yielded }.from([]).to([:client, :other])
end
it "registers a top level RPC" do
cmd_block = -> {}
plugin = Plugin.from_config_block("source") do |plug|
plug.__send__(:rpc, "Foo", &cmd_block)
end
expect(plugin.handlers.size).to be(1)
handler = plugin.handlers.first
expect(handler.sync?).to be(true)
expect(handler.qualified?).to be(false)
expect(handler.block).to eq(cmd_block)
expect(handler.qualified_name).to eq("Foo")
end
end
describe "#specs" do
it "returns specs for plugin handlers" do
plugin = Plugin.from_config_block("source") do |plug|
plug.command("Foo", sync: true, nargs: 2)
end
expect(plugin.specs).to eq(
[
{
type: :command,
name: "Foo",
sync: true,
opts: {nargs: 2}
}
]
)
end
it "doesn't include specs for top-level RPCs" do
plugin = Plugin.from_config_block("source") do |plug|
plug.__send__(:rpc, "Foo")
end
expect(plugin.specs).to eq([])
end
end
end
end
|