17a654b171
This enables defining inline guard handlers to override ones present in gems, e.g. you could define an inline Guard::RSpec handler and have guard use that instead of first trying to load 'guard/rspec' from the 'guard-rspec' gem. Also gets rid of the ill-named method `try_to_load_gem`. Handlers are simply found in the $LOAD_PATH and don't have to necessarily come from gems.
167 lines
4.7 KiB
Ruby
167 lines
4.7 KiB
Ruby
require 'spec_helper'
|
|
require 'guard/guard'
|
|
|
|
describe Guard do
|
|
|
|
describe ".setup" do
|
|
subject { ::Guard.setup }
|
|
|
|
it "returns itself for chaining" do
|
|
subject.should be ::Guard
|
|
end
|
|
|
|
it "initializes the Guards" do
|
|
::Guard.guards.should be_kind_of(Array)
|
|
end
|
|
|
|
it "initializes the options" do
|
|
opts = { :my_opts => true }
|
|
::Guard.setup(opts).options.should include(:my_opts)
|
|
end
|
|
|
|
it "initializes the listener" do
|
|
::Guard.listener.should be_kind_of(Guard::Listener)
|
|
end
|
|
|
|
it "turns on the notifier by default" do
|
|
ENV["GUARD_NOTIFY"] = nil
|
|
::Guard::Notifier.should_receive(:turn_on)
|
|
::Guard.setup(:notify => true)
|
|
end
|
|
|
|
it "turns off the notifier if the notify option is false" do
|
|
::Guard::Notifier.should_receive(:turn_off)
|
|
::Guard.setup(:notify => false)
|
|
end
|
|
|
|
it "turns off the notifier if environment variable GUARD_NOTIFY is false" do
|
|
ENV["GUARD_NOTIFY"] = 'false'
|
|
::Guard::Notifier.should_receive(:turn_off)
|
|
::Guard.setup(:notify => true)
|
|
end
|
|
end
|
|
|
|
describe ".get_guard_class" do
|
|
after do
|
|
[:Classname, :DashedClassName, :Inline].each do |const|
|
|
Guard.send(:remove_const, const) rescue nil
|
|
end
|
|
end
|
|
|
|
it "reports an error if the class is not found" do
|
|
::Guard::UI.should_receive(:error)
|
|
Guard.get_guard_class('notAGuardClass')
|
|
end
|
|
|
|
context 'with a nested Guard class' do
|
|
it "resolves the Guard class from string" do
|
|
Guard.should_receive(:require) { |classname|
|
|
classname.should == 'guard/classname'
|
|
class Guard::Classname
|
|
end
|
|
}
|
|
Guard.get_guard_class('classname').should == Guard::Classname
|
|
end
|
|
|
|
it "resolves the Guard class from symbol" do
|
|
Guard.should_receive(:require) { |classname|
|
|
classname.should == 'guard/classname'
|
|
class Guard::Classname
|
|
end
|
|
}
|
|
Guard.get_guard_class(:classname).should == Guard::Classname
|
|
end
|
|
end
|
|
|
|
context 'with a name with dashes' do
|
|
it "returns the Guard class" do
|
|
Guard.should_receive(:require) { |classname|
|
|
classname.should == 'guard/dashed-class-name'
|
|
class Guard::DashedClassName
|
|
end
|
|
}
|
|
Guard.get_guard_class('dashed-class-name').should == Guard::DashedClassName
|
|
end
|
|
end
|
|
|
|
context 'with an inline Guard class' do
|
|
it 'returns the Guard class' do
|
|
module Guard
|
|
class Inline < Guard
|
|
end
|
|
end
|
|
|
|
Guard.should_not_receive(:require)
|
|
Guard.get_guard_class('inline').should == Guard::Inline
|
|
end
|
|
end
|
|
end
|
|
|
|
describe ".locate_guard" do
|
|
it "returns the path of a Guard gem" do
|
|
if Gem::Version.create(Gem::VERSION) >= Gem::Version.create('1.8.0')
|
|
gem_location = Gem::Specification.find_by_name("guard-rspec").full_gem_path
|
|
else
|
|
gem_location = Gem.source_index.find_name("guard-rspec").last.full_gem_path
|
|
end
|
|
|
|
Guard.locate_guard('rspec').should == gem_location
|
|
end
|
|
end
|
|
|
|
describe ".supervised_task" do
|
|
subject { ::Guard.setup }
|
|
|
|
before(:each) do
|
|
@g = mock(Guard::Guard).as_null_object
|
|
subject.guards.push(@g)
|
|
end
|
|
|
|
context "with a task that succeed" do
|
|
context 'without any arguments' do
|
|
before(:each) do
|
|
@g.stub!(:regular) { true }
|
|
end
|
|
|
|
it "doesn't fire the Guard" do
|
|
lambda { subject.supervised_task(@g, :regular) }.should_not change(subject.guards, :size)
|
|
end
|
|
|
|
it "returns the result of the task" do
|
|
::Guard.supervised_task(@g, :regular).should be_true
|
|
end
|
|
end
|
|
|
|
context 'with arguments' do
|
|
before(:each) do
|
|
@g.stub!(:regular_with_arg).with("given_path") { "I'm a success" }
|
|
end
|
|
|
|
it "doesn't fire the Guard" do
|
|
lambda { subject.supervised_task(@g, :regular_with_arg, "given_path") }.should_not change(subject.guards, :size)
|
|
end
|
|
|
|
it "returns the result of the task" do
|
|
::Guard.supervised_task(@g, :regular_with_arg, "given_path").should == "I'm a success"
|
|
end
|
|
end
|
|
end
|
|
|
|
context "with a task that raises an exception" do
|
|
before(:each) { @g.stub!(:failing) { raise "I break your system" } }
|
|
|
|
it "fires the Guard" do
|
|
lambda { subject.supervised_task(@g, :failing) }.should change(subject.guards, :size).by(-1)
|
|
subject.guards.should_not include(@g)
|
|
end
|
|
|
|
it "returns the exception" do
|
|
failing_result = ::Guard.supervised_task(@g, :failing)
|
|
failing_result.should be_kind_of(Exception)
|
|
failing_result.message.should == 'I break your system'
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|