2013-12-20 23:19:16 +00:00

111 lines
3.0 KiB
Ruby

require 'spec_helper'
module Producer::Core
describe Task do
let(:name) { :some_task }
let(:action) { double 'action' }
let(:condition) { double 'condition' }
subject(:task) { Task.new(name, [action], condition) }
describe '.evaluate' do
let(:env) { double 'env' }
let(:args) { [:some, :arguments] }
let(:block) { proc { :some_task_code } }
it 'builds a new DSL sandbox with given code' do
dsl = double('dsl').as_null_object
expect(Task::DSL).to receive(:new).with(no_args) do |&b|
expect(b).to be block
dsl
end
Task.evaluate(name, env, *args, &block)
end
it 'evaluates the DSL sandbox code with given environment' do
dsl = double('dsl').as_null_object
allow(Task::DSL).to receive(:new) { dsl }
expect(dsl).to receive(:evaluate).with(env, *args)
Task.evaluate(name, env, *args, &block)
end
it 'builds the task with its name, actions and condition' do
dsl = double(
'dsl', actions: [:some_action], condition: :some_condition
).as_null_object
allow(Task::DSL).to receive(:new) { dsl }
expect(Task)
.to receive(:new).with(:some_task, [:some_action], :some_condition)
Task.evaluate(name, env, *args, &block)
end
it 'returns the task' do
task = double 'task'
allow(Task).to receive(:new) { task }
expect(Task.evaluate(name, env, *args, &block)).to be task
end
end
describe '#initialize' do
it 'assigns the name' do
expect(task.instance_eval { @name }).to eq name
end
it 'assigns the actions' do
expect(task.instance_eval { @actions }).to eq [action]
end
it 'assigns the condition' do
expect(task.instance_eval { @condition }).to eq condition
end
context 'when only the name is given as argument' do
subject(:task) { Task.new(name) }
it 'assigns no action' do
expect(task.actions).to be_empty
end
it 'assigns a true condition' do
expect(task.condition).to be true
end
end
end
describe '#name' do
it 'returns its name' do
expect(task.name).to eq name
end
end
describe '#actions' do
it 'returns the assigned actions' do
expect(task.actions).to eq [action]
end
end
describe '#condition' do
it 'returns the assigned condition' do
expect(task.condition).to be condition
end
end
describe '#condition_met?' do
context 'when condition is truthy' do
let(:condition) { Condition.new([], true) }
it 'returns true' do
expect(task.condition_met?).to be true
end
end
context 'when condition is falsy' do
let(:condition) { Condition.new([], false) }
it 'returns false' do
expect(task.condition_met?).to be false
end
end
end
end
end