Sha256: 99427c5111fb46d3c20e814e7563abe40da5261a91a137832bc29ec996357e9e
Contents?: true
Size: 1.8 KB
Versions: 8
Compression:
Stored size: 1.8 KB
Contents
# encoding: utf-8 require 'spec_helper' module Adhearsion class Router describe OpenendedRoute do let(:name) { 'catchall' } subject { Route.new name } before { subject.extend described_class } it { is_expected.to be_openended } describe "dispatching a call" do let(:call) { Call.new } let(:latch) { CountDownLatch.new 1 } before { allow(call.wrapped_object).to receive :write_and_await_response } context "via a call controller" do let(:controller) { CallController } subject(:route) { Route.new 'foobar', controller } it "should accept the call" do expect(call).to receive(:accept).once route.dispatch call, lambda { latch.countdown! } expect(latch.wait(2)).to be true end it "should instruct the call to use an instance of the controller" do expect(call).to receive(:execute_controller).once.with kind_of(controller), kind_of(Proc) route.dispatch call end it "should not hangup the call after all controllers have executed" do expect(call).to receive(:hangup).never route.dispatch call, lambda { latch.countdown! } expect(latch.wait(2)).to be true end end context "via a block" do let :route do Route.new 'foobar' do :foobar end end it "should instruct the call to use a CallController with the correct block" do expect(call).to receive(:execute_controller).once.with(kind_of(CallController), kind_of(Proc)) do |controller| expect(controller.block.call).to eq(:foobar) end route.dispatch call end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems