mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
a87810ff4b
Client: rb Patch: Nathan Beyer Upgrading to rspec2. git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1391280 13f79535-47bb-0310-9956-ffa450edef68
142 lines
5.9 KiB
Ruby
142 lines
5.9 KiB
Ruby
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'Exception' do
|
|
|
|
describe Thrift::Exception do
|
|
it "should have an accessible message" do
|
|
e = Thrift::Exception.new("test message")
|
|
e.message.should == "test message"
|
|
end
|
|
end
|
|
|
|
describe Thrift::ApplicationException do
|
|
it "should inherit from Thrift::Exception" do
|
|
Thrift::ApplicationException.superclass.should == Thrift::Exception
|
|
end
|
|
|
|
it "should have an accessible type and message" do
|
|
e = Thrift::ApplicationException.new
|
|
e.type.should == Thrift::ApplicationException::UNKNOWN
|
|
e.message.should be_nil
|
|
e = Thrift::ApplicationException.new(Thrift::ApplicationException::UNKNOWN_METHOD, "test message")
|
|
e.type.should == Thrift::ApplicationException::UNKNOWN_METHOD
|
|
e.message.should == "test message"
|
|
end
|
|
|
|
it "should read a struct off of a protocol" do
|
|
prot = mock("MockProtocol")
|
|
prot.should_receive(:read_struct_begin).ordered
|
|
prot.should_receive(:read_field_begin).exactly(3).times.and_return(
|
|
["message", Thrift::Types::STRING, 1],
|
|
["type", Thrift::Types::I32, 2],
|
|
[nil, Thrift::Types::STOP, 0]
|
|
)
|
|
prot.should_receive(:read_string).ordered.and_return "test message"
|
|
prot.should_receive(:read_i32).ordered.and_return Thrift::ApplicationException::BAD_SEQUENCE_ID
|
|
prot.should_receive(:read_field_end).exactly(2).times
|
|
prot.should_receive(:read_struct_end).ordered
|
|
|
|
e = Thrift::ApplicationException.new
|
|
e.read(prot)
|
|
e.message.should == "test message"
|
|
e.type.should == Thrift::ApplicationException::BAD_SEQUENCE_ID
|
|
end
|
|
|
|
it "should skip bad fields when reading a struct" do
|
|
prot = mock("MockProtocol")
|
|
prot.should_receive(:read_struct_begin).ordered
|
|
prot.should_receive(:read_field_begin).exactly(5).times.and_return(
|
|
["type", Thrift::Types::I32, 2],
|
|
["type", Thrift::Types::STRING, 2],
|
|
["message", Thrift::Types::MAP, 1],
|
|
["message", Thrift::Types::STRING, 3],
|
|
[nil, Thrift::Types::STOP, 0]
|
|
)
|
|
prot.should_receive(:read_i32).and_return Thrift::ApplicationException::INVALID_MESSAGE_TYPE
|
|
prot.should_receive(:skip).with(Thrift::Types::STRING).twice
|
|
prot.should_receive(:skip).with(Thrift::Types::MAP)
|
|
prot.should_receive(:read_field_end).exactly(4).times
|
|
prot.should_receive(:read_struct_end).ordered
|
|
|
|
e = Thrift::ApplicationException.new
|
|
e.read(prot)
|
|
e.message.should be_nil
|
|
e.type.should == Thrift::ApplicationException::INVALID_MESSAGE_TYPE
|
|
end
|
|
|
|
it "should write a Thrift::ApplicationException struct to the oprot" do
|
|
prot = mock("MockProtocol")
|
|
prot.should_receive(:write_struct_begin).with("Thrift::ApplicationException").ordered
|
|
prot.should_receive(:write_field_begin).with("message", Thrift::Types::STRING, 1).ordered
|
|
prot.should_receive(:write_string).with("test message").ordered
|
|
prot.should_receive(:write_field_begin).with("type", Thrift::Types::I32, 2).ordered
|
|
prot.should_receive(:write_i32).with(Thrift::ApplicationException::UNKNOWN_METHOD).ordered
|
|
prot.should_receive(:write_field_end).twice
|
|
prot.should_receive(:write_field_stop).ordered
|
|
prot.should_receive(:write_struct_end).ordered
|
|
|
|
e = Thrift::ApplicationException.new(Thrift::ApplicationException::UNKNOWN_METHOD, "test message")
|
|
e.write(prot)
|
|
end
|
|
|
|
it "should skip nil fields when writing to the oprot" do
|
|
prot = mock("MockProtocol")
|
|
prot.should_receive(:write_struct_begin).with("Thrift::ApplicationException").ordered
|
|
prot.should_receive(:write_field_begin).with("message", Thrift::Types::STRING, 1).ordered
|
|
prot.should_receive(:write_string).with("test message").ordered
|
|
prot.should_receive(:write_field_end).ordered
|
|
prot.should_receive(:write_field_stop).ordered
|
|
prot.should_receive(:write_struct_end).ordered
|
|
|
|
e = Thrift::ApplicationException.new(nil, "test message")
|
|
e.write(prot)
|
|
|
|
prot = mock("MockProtocol")
|
|
prot.should_receive(:write_struct_begin).with("Thrift::ApplicationException").ordered
|
|
prot.should_receive(:write_field_begin).with("type", Thrift::Types::I32, 2).ordered
|
|
prot.should_receive(:write_i32).with(Thrift::ApplicationException::BAD_SEQUENCE_ID).ordered
|
|
prot.should_receive(:write_field_end).ordered
|
|
prot.should_receive(:write_field_stop).ordered
|
|
prot.should_receive(:write_struct_end).ordered
|
|
|
|
e = Thrift::ApplicationException.new(Thrift::ApplicationException::BAD_SEQUENCE_ID)
|
|
e.write(prot)
|
|
|
|
prot = mock("MockProtocol")
|
|
prot.should_receive(:write_struct_begin).with("Thrift::ApplicationException").ordered
|
|
prot.should_receive(:write_field_stop).ordered
|
|
prot.should_receive(:write_struct_end).ordered
|
|
|
|
e = Thrift::ApplicationException.new(nil)
|
|
e.write(prot)
|
|
end
|
|
end
|
|
|
|
describe Thrift::ProtocolException do
|
|
it "should have an accessible type" do
|
|
prot = Thrift::ProtocolException.new(Thrift::ProtocolException::SIZE_LIMIT, "message")
|
|
prot.type.should == Thrift::ProtocolException::SIZE_LIMIT
|
|
prot.message.should == "message"
|
|
end
|
|
end
|
|
end
|