150 lines
4.5 KiB
Ruby
150 lines
4.5 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Guard::Dsl do
|
|
subject { Guard::Dsl }
|
|
|
|
before(:each) do
|
|
::Guard.stub!(:add_guard)
|
|
end
|
|
|
|
it "displays an error message when no Guardfile is found" do
|
|
subject.stub(:guardfile_path).and_return("no_guardfile_here")
|
|
Guard::UI.should_receive(:error).with("No Guardfile found, please create one.")
|
|
lambda { subject.evaluate_guardfile }.should raise_error
|
|
end
|
|
|
|
it "displays an error message when the Guardfile is not valid" do
|
|
mock_guardfile_content("This Guardfile is invalid!")
|
|
|
|
Guard::UI.should_receive(:error).with(/Invalid Guardfile, original error is:\n/)
|
|
lambda { subject.evaluate_guardfile }.should raise_error
|
|
end
|
|
|
|
describe ".guardfile_path" do
|
|
let(:local_path) { File.join(Dir.pwd, 'Guardfile') }
|
|
let(:user_path) { File.join(ENV["HOME"], 'Guardfile') }
|
|
before do
|
|
File.stub(:exist? => false)
|
|
end
|
|
context "when there is a local Guardfile" do
|
|
it "returns the path to the local Guardfile" do
|
|
File.stub(:exist?).with(local_path).and_return(true)
|
|
subject.guardfile_path.should == local_path
|
|
end
|
|
end
|
|
context "when there is a Guardfile in the user's home directory" do
|
|
it "returns the path to the user Guardfile" do
|
|
File.stub(:exist?).with(user_path).and_return(true)
|
|
subject.guardfile_path.should == user_path
|
|
end
|
|
end
|
|
context "when there's both a local and user Guardfile" do
|
|
it "returns the path to the local Guardfile" do
|
|
File.stub(:exist?).with(local_path).and_return(true)
|
|
File.stub(:exist?).with(user_path).and_return(true)
|
|
subject.guardfile_path.should == local_path
|
|
end
|
|
end
|
|
end
|
|
|
|
describe ".guardfile_include?" do
|
|
it "detects a Guard specified by a string with simple quotes" do
|
|
mock_guardfile_content("guard 'test'")
|
|
subject.guardfile_include?('test').should be_true
|
|
end
|
|
|
|
it "detects a Guard specified by a string with double quotes" do
|
|
mock_guardfile_content('guard "test"')
|
|
subject.guardfile_include?('test').should be_true
|
|
end
|
|
|
|
it "detects a Guard specified by a symbol" do
|
|
mock_guardfile_content("guard :test")
|
|
subject.guardfile_include?('test').should be_true
|
|
end
|
|
|
|
it "detects a Guard wrapped in parentheses" do
|
|
mock_guardfile_content("guard(:test)")
|
|
subject.guardfile_include?('test').should be_true
|
|
end
|
|
end
|
|
|
|
describe "#group" do
|
|
before do
|
|
mock_guardfile_content("
|
|
group 'x' do
|
|
guard 'test' do
|
|
watch('c')
|
|
end
|
|
end
|
|
|
|
group 'y' do
|
|
guard 'another' do
|
|
watch('c')
|
|
end
|
|
end")
|
|
end
|
|
|
|
it "evaluates only the specified group" do
|
|
::Guard.should_receive(:add_guard).with('test', anything, {})
|
|
::Guard.should_not_receive(:add_guard).with('another', anything, {})
|
|
subject.evaluate_guardfile(:group => ['x'])
|
|
end
|
|
|
|
it "evaluates only the specified groups" do
|
|
::Guard.should_receive(:add_guard).with('test', anything, {})
|
|
::Guard.should_receive(:add_guard).with('another', anything, {})
|
|
subject.evaluate_guardfile(:group => ['x', 'y'])
|
|
end
|
|
end
|
|
|
|
describe "#guard" do
|
|
it "loads a Guard specified as a string from the DSL" do
|
|
mock_guardfile_content("guard 'test'")
|
|
|
|
::Guard.should_receive(:add_guard).with('test', [], {})
|
|
subject.evaluate_guardfile
|
|
end
|
|
|
|
it "loads a Guard specified as a symbol from the DSL" do
|
|
mock_guardfile_content("guard :test")
|
|
|
|
::Guard.should_receive(:add_guard).with(:test, [], {})
|
|
subject.evaluate_guardfile
|
|
end
|
|
|
|
it "receives the options when specified" do
|
|
mock_guardfile_content("guard 'test', :opt_a => 1, :opt_b => 'fancy'")
|
|
|
|
::Guard.should_receive(:add_guard).with('test', anything, { :opt_a => 1, :opt_b => 'fancy' })
|
|
subject.evaluate_guardfile
|
|
end
|
|
end
|
|
|
|
describe "#watch" do
|
|
it "should receive the watchers when specified" do
|
|
mock_guardfile_content("
|
|
guard 'test' do
|
|
watch('a') { 'b' }
|
|
watch('c')
|
|
end")
|
|
|
|
::Guard.should_receive(:add_guard).with('test', anything, {}) do |name, watchers, options|
|
|
watchers.size.should == 2
|
|
watchers[0].pattern.should == 'a'
|
|
watchers[0].action.call.should == proc { 'b' }.call
|
|
watchers[1].pattern.should == 'c'
|
|
watchers[1].action.should be_nil
|
|
end
|
|
subject.evaluate_guardfile
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def mock_guardfile_content(content)
|
|
File.stub!(:read).with(subject.guardfile_path) { content }
|
|
end
|
|
|
|
end
|