free_mutant/spec/unit/mutant/actor/receiver_spec.rb

57 lines
2 KiB
Ruby
Raw Normal View History

2014-10-23 07:37:53 -04:00
RSpec.describe Mutant::Actor::Receiver do
let(:messages) { double('Messages') }
let(:mutex) { double('Mutex') }
let(:condition_variable) { double('Condition Variable') }
let(:message) { double('Message') }
2014-10-23 07:37:53 -04:00
let(:object) { described_class.new(condition_variable, mutex, messages) }
2014-10-23 07:37:53 -04:00
describe '#call' do
subject { object.call }
context 'when messages contains a message' do
2014-10-23 07:37:53 -04:00
before do
expect(mutex).to receive(:synchronize).and_yield.ordered
expect(messages).to receive(:empty?).and_return(false).ordered
expect(messages).to receive(:shift).and_return(message).ordered
2014-10-23 07:37:53 -04:00
end
it { should be(message) }
end
context 'when messages initially contains no message' do
2014-10-23 07:37:53 -04:00
before do
# 1rst failing try
expect(mutex).to receive(:synchronize).and_yield.ordered
expect(messages).to receive(:empty?).and_return(true).ordered
expect(condition_variable).to receive(:wait).with(mutex).ordered
2014-10-23 07:37:53 -04:00
# 2nd successful try
expect(mutex).to receive(:synchronize).and_yield.ordered
expect(messages).to receive(:empty?).and_return(false).ordered
expect(messages).to receive(:shift).and_return(message).ordered
2014-10-23 07:37:53 -04:00
end
it 'waits for message' do
should be(message)
end
end
context 'when messages contains no message but thread gets waken without message arrived' do
2014-10-23 07:37:53 -04:00
before do
# 1rst failing try
expect(mutex).to receive(:synchronize).and_yield.ordered
expect(messages).to receive(:empty?).and_return(true).ordered
expect(condition_variable).to receive(:wait).with(mutex).ordered
2014-10-23 07:37:53 -04:00
# 2nd failing try
expect(mutex).to receive(:synchronize).and_yield.ordered
expect(messages).to receive(:empty?).and_return(true).ordered
expect(condition_variable).to receive(:wait).with(mutex).ordered
2014-10-23 07:37:53 -04:00
end
it 'fails with error' do
2014-10-23 07:37:53 -04:00
expect { subject }.to raise_error(Mutant::Actor::ProtocolError)
end
end
end
end