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
|
# frozen_string_literal: true
require "guard/internals/session"
RSpec.describe Guard::Internals::Session do
let(:options) { {} }
subject { described_class.new(options) }
let(:plugins) { instance_double("Guard::Internals::Plugins") }
let(:groups) { instance_double("Guard::Internals::Plugins") }
before do
allow(Guard::Internals::Plugins).to receive(:new).and_return(plugins)
allow(Guard::Internals::Groups).to receive(:new).and_return(groups)
end
describe "#initialize" do
describe "#listener_args" do
subject { described_class.new(options).listener_args }
context "with a single watchdir" do
let(:options) { { watchdir: ["/usr"] } }
let(:dir) { Gem.win_platform? ? "C:/usr" : "/usr" }
it { is_expected.to eq [:to, dir, {}] }
end
context "with multiple watchdirs" do
let(:options) { { watchdir: ["/usr", "/bin"] } }
let(:dir1) { Gem.win_platform? ? "C:/usr" : "/usr" }
let(:dir2) { Gem.win_platform? ? "C:/bin" : "/bin" }
it { is_expected.to eq [:to, dir1, dir2, {}] }
end
context "with force_polling option" do
let(:options) { { force_polling: true } }
it { is_expected.to eq [:to, Dir.pwd, force_polling: true] }
end
context "with latency option" do
let(:options) { { latency: 1.5 } }
it { is_expected.to eq [:to, Dir.pwd, latency: 1.5] }
end
end
context "with the plugin option" do
let(:options) do
{
plugin: %w[cucumber jasmine],
guardfile_contents: "guard :jasmine do; end; "\
"guard :cucumber do; end; guard :coffeescript do; end"
}
end
let(:jasmine) { instance_double("Guard::Plugin") }
let(:cucumber) { instance_double("Guard::Plugin") }
let(:coffeescript) { instance_double("Guard::Plugin") }
before do
stub_const "Guard::Jasmine", jasmine
stub_const "Guard::Cucumber", cucumber
stub_const "Guard::CoffeeScript", coffeescript
end
it "initializes the plugin scope" do
allow(plugins).to receive(:add).with("cucumber", {})
.and_return(cucumber)
allow(plugins).to receive(:add).with("jasmine", {})
.and_return(jasmine)
expect(subject.cmdline_plugins).to match_array(%w[cucumber jasmine])
end
end
context "with the group option" do
let(:options) do
{
group: %w[backend frontend],
guardfile_contents: "group :backend do; end; "\
"group :frontend do; end; group :excluded do; end"
}
end
before do
g3 = instance_double("Guard::Group", name: :backend, options: {})
g4 = instance_double("Guard::Group", name: :frontend, options: {})
allow(Guard::Group).to receive(:new).with("backend", {}).and_return(g3)
allow(Guard::Group).to receive(:new).with("frontend", {}).and_return(g4)
end
it "initializes the group scope" do
expect(subject.cmdline_groups).to match_array(%w[backend frontend])
end
end
end
describe "#clearing" do
context "when not set" do
context "when clearing is not set from commandline" do
it { is_expected.to_not be_clearing }
end
context "when clearing is set from commandline" do
let(:options) { { clear: false } }
it { is_expected.to_not be_clearing }
end
end
context "when set from guardfile" do
context "when set to :on" do
before { subject.clearing(true) }
it { is_expected.to be_clearing }
end
context "when set to :off" do
before { subject.clearing(false) }
it { is_expected.to_not be_clearing }
end
end
end
describe "#guardfile_ignore=" do
context "when set from guardfile" do
before { subject.guardfile_ignore = [/foo/] }
specify { expect(subject.guardfile_ignore).to eq([/foo/]) }
end
context "when set multiple times from guardfile" do
before do
subject.guardfile_ignore = [/foo/]
subject.guardfile_ignore = [/bar/]
end
specify { expect(subject.guardfile_ignore).to eq([/foo/, /bar/]) }
end
context "when unset" do
specify { expect(subject.guardfile_ignore).to eq([]) }
end
end
describe "#guardfile_ignore_bang=" do
context "when set from guardfile" do
before { subject.guardfile_ignore_bang = [/foo/] }
specify { expect(subject.guardfile_ignore_bang).to eq([/foo/]) }
end
context "when unset" do
specify { expect(subject.guardfile_ignore_bang).to eq([]) }
end
end
describe "#guardfile_scope" do
before do
subject.guardfile_scope(scope)
end
context "with a groups scope" do
let(:scope) { { groups: [:foo] } }
it "sets the groups" do
expect(subject.guardfile_group_scope).to eq([:foo])
end
end
context "with a group scope" do
let(:scope) { { group: [:foo] } }
it "sets the groups" do
expect(subject.guardfile_group_scope).to eq([:foo])
end
end
context "with a plugin scope" do
let(:scope) { { plugin: [:foo] } }
it "sets the plugins" do
expect(subject.guardfile_plugin_scope).to eq([:foo])
end
end
context "with a plugins scope" do
let(:scope) { { plugins: [:foo] } }
it "sets the plugins" do
expect(subject.guardfile_plugin_scope).to eq([:foo])
end
end
end
describe ".convert_scope" do
let(:foo) { instance_double("Guard::Plugin", name: "foo") }
let(:bar) { instance_double("Guard::Plugin", name: "bar") }
let(:backend) { instance_double("Guard::Group", name: "backend") }
let(:frontend) { instance_double("Guard::Group", name: "frontend") }
before do
stub_const "Guard::Foo", class_double("Guard::Plugin")
stub_const "Guard::Bar", class_double("Guard::Plugin")
allow(plugins).to receive(:all).with("backend").and_return([])
allow(plugins).to receive(:all).with("frontend").and_return([])
allow(plugins).to receive(:all).with("foo").and_return([foo])
allow(plugins).to receive(:all).with("bar").and_return([bar])
allow(plugins).to receive(:all).with("unknown").and_return([])
allow(plugins).to receive(:all).with("scope").and_return([])
allow(groups).to receive(:all).with("backend").and_return([backend])
allow(groups).to receive(:all).with("frontend").and_return([frontend])
allow(groups).to receive(:all).with("unknown").and_return([])
allow(groups).to receive(:all).with("scope").and_return([])
end
it "returns a group scope" do
scopes, = subject.convert_scope %w[backend]
expect(scopes).to eq(groups: [backend], plugins: [])
scopes, = subject.convert_scope %w[frontend]
expect(scopes).to eq(groups: [frontend], plugins: [])
end
it "returns a plugin scope" do
scopes, = subject.convert_scope %w[foo]
expect(scopes).to eq(plugins: [foo], groups: [])
scopes, = subject.convert_scope %w[bar]
expect(scopes).to eq(plugins: [bar], groups: [])
end
it "returns multiple group scopes" do
scopes, = subject.convert_scope %w[backend frontend]
expected = { groups: [backend, frontend], plugins: [] }
expect(scopes).to eq(expected)
end
it "returns multiple plugin scopes" do
scopes, = subject.convert_scope %w[foo bar]
expect(scopes).to eq(plugins: [foo, bar], groups: [])
end
it "returns a plugin and group scope" do
scopes, = subject.convert_scope %w[foo backend]
expect(scopes).to eq(plugins: [foo], groups: [backend])
end
it "returns the unkown scopes" do
_, unknown = subject.convert_scope %w[unknown scope]
expect(unknown).to eq %w[unknown scope]
end
end
describe "#guardfile_notification=" do
context "when set from guardfile" do
before do
subject.guardfile_notification = { foo: { bar: :baz } }
end
specify do
expect(subject.notify_options).to eq(
notify: true,
notifiers: {
foo: { bar: :baz }
}
)
end
end
context "when set multiple times from guardfile" do
before do
subject.guardfile_notification = { foo: { param: 1 } }
subject.guardfile_notification = { bar: { param: 2 } }
end
it "merges results" do
expect(subject.notify_options).to eq(
notify: true,
notifiers: {
foo: { param: 1 },
bar: { param: 2 }
}
)
end
end
context "when unset" do
specify do
expect(subject.notify_options).to eq(notify: true, notifiers: {})
end
end
end
end
|