Thibault Jouan 2acb57254f Fix a few coding standards issues:
* Remove extra empty lines before private keyword usages.

  specs:

  * Fix one long line;
  * use proc keyword instead of Proc.new.
2013-08-01 00:01:20 +00:00

101 lines
2.7 KiB
Ruby

require 'spec_helper'
module Producer::Core
describe CLI do
include FixturesHelpers
let(:arguments) { ['host', fixture_path_for('recipes/empty.rb')] }
subject(:cli) { CLI.new(arguments) }
describe '#initialize' do
it 'assigns the arguments' do
expect(cli.arguments).to eq arguments
end
end
describe '#run!' do
it 'checks the arguments' do
expect(cli).to receive(:check_arguments!)
cli.run!
end
it 'evaluates the recipe' do
expect(cli).to receive(:evaluate_recipe_file)
cli.run!
end
end
describe '#check_arguments!' do
context 'when an argument is missing' do
let(:arguments) { %w{host} }
let(:stdout) { StringIO.new }
subject(:cli) { CLI.new(arguments, stdout) }
it 'exits with a return status of 64' do
expect { cli.check_arguments! }.to raise_error(SystemExit) { |e|
expect(e.status).to eq 64
}
end
it 'prints the usage' do
begin
cli.check_arguments!
rescue SystemExit
end
expect(stdout.string).to match /\AUsage: .+/
end
end
end
describe '#evaluate_recipe_file' do
it 'builds a recipe' do
expect(Recipe)
.to receive(:from_file).with(arguments[1]).and_call_original
cli.evaluate_recipe_file
end
it 'builds an environment with the current recipe' do
recipe = double('recipe').as_null_object
allow(Recipe).to receive(:from_file).and_return(recipe)
expect(Env).to receive(:new).with(recipe).and_call_original
cli.evaluate_recipe_file
end
it 'evaluates the recipe with the environment' do
recipe = double('recipe')
allow(Recipe).to receive(:from_file).and_return(recipe)
env = double('env')
allow(Env).to receive(:new).and_return(env)
expect(recipe).to receive(:evaluate).with(env)
cli.evaluate_recipe_file
end
context 'error during recipe evaluation' do
let(:arguments) { ['host', fixture_path_for('recipes/invalid.rb')] }
let(:stdout) { StringIO.new }
subject(:cli) { CLI.new(arguments, stdout) }
it 'exits with a return status of 70' do
expect { cli.evaluate_recipe_file }
.to raise_error(SystemExit) { |e|
expect(e.status).to eq 70
}
end
it 'prints the error' do
begin
cli.evaluate_recipe_file
rescue SystemExit
end
expect(stdout.string).to match(/
\A
#{arguments[1]}:4:
.+
invalid\srecipe\skeyword\s`invalid_keyword'
/x)
end
end
end
end
end