mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
59 lines
1.2 KiB
Ruby
59 lines
1.2 KiB
Ruby
|
require 'test/unit'
|
||
|
require 'soap/rpc/driver'
|
||
|
require 'soap/rpc/standaloneServer'
|
||
|
|
||
|
|
||
|
module SOAP
|
||
|
module Fault
|
||
|
|
||
|
|
||
|
class TestCustomFault < Test::Unit::TestCase
|
||
|
Port = 17171
|
||
|
|
||
|
class CustomFaultServer < SOAP::RPC::StandaloneServer
|
||
|
def on_init
|
||
|
add_method(self, 'fault', 'msg')
|
||
|
end
|
||
|
|
||
|
def fault(msg)
|
||
|
SOAPFault.new(SOAPString.new("mycustom"),
|
||
|
SOAPString.new("error: #{msg}"),
|
||
|
SOAPString.new(self.class.name))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def setup
|
||
|
@server = CustomFaultServer.new('customfault', 'urn:customfault', '0.0.0.0', Port)
|
||
|
@server.level = Logger::Severity::ERROR
|
||
|
@t = Thread.new {
|
||
|
Thread.current.abort_on_exception = true
|
||
|
@server.start
|
||
|
}
|
||
|
@endpoint = "http://localhost:#{Port}/"
|
||
|
@client = SOAP::RPC::Driver.new(@endpoint, 'urn:customfault')
|
||
|
@client.wiredump_dev = STDERR if $DEBUG
|
||
|
@client.add_method("fault", "msg")
|
||
|
end
|
||
|
|
||
|
def teardown
|
||
|
@server.shutdown
|
||
|
@t.kill
|
||
|
@t.join
|
||
|
@client.reset_stream
|
||
|
end
|
||
|
|
||
|
def test_custom_fault
|
||
|
begin
|
||
|
@client.fault("message")
|
||
|
assert(false, 'exception not raised')
|
||
|
rescue SOAP::FaultError => e
|
||
|
assert(true, 'exception raised')
|
||
|
assert_equal('error: message', e.message)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
|
||
|
end
|
||
|
end
|