Sha256: e6285ffb41830a315629e56bf8384623ef85acc64a7df7498bac8ab5aa3b84d2
Contents?: true
Size: 1.48 KB
Versions: 4
Compression:
Stored size: 1.48 KB
Contents
require 'spec_helper' shared_examples "a Protobuf Connector" do subject{ described_class.new({}) } context "API" do # Check the API specify{ subject.respond_to?(:send_request, true).should be_true } specify{ subject.respond_to?(:post_init, true).should be_true } specify{ subject.respond_to?(:close_connection, true).should be_true } specify{ subject.respond_to?(:error?, true).should be_true } end end describe Protobuf::Rpc::Connectors::Socket do subject{ described_class.new({}) } it_behaves_like "a Protobuf Connector" specify{ described_class.include?(Protobuf::Rpc::Connectors::Common).should be_true } context "#read_response" do let(:data){ "New data" } it "fills the buffer with data from the socket" do socket = StringIO.new("#{data.bytesize}-#{data}") subject.instance_variable_set(:@socket, socket) subject.instance_variable_set(:@stats, OpenStruct.new) subject.should_receive(:parse_response).and_return(true) subject.__send__(:read_response) subject.instance_variable_get(:@response_data).should eq(data) end end context "#check_async" do it "raises an error when trying to execute asynchronously" do conn = described_class.new(:async => true) expect{ conn.__send__(:check_async) }.to raise_error end it "allows execution when synchronous" do conn = described_class.new(:async => false) expect{ conn.__send__(:check_async) }.to_not raise_error end end end
Version data entries
4 entries across 4 versions & 1 rubygems