From 889c7de09d40ebdd3620cf9c0ad74d750b512221 Mon Sep 17 00:00:00 2001 From: nahi Date: Mon, 24 Dec 2007 08:14:57 +0000 Subject: Mon Dec 24 17:06:37 2007 NAKAMURA, Hiroshi * {lib,test}/{soap,wsdl,xsd}: removed soap4r along to the discussion at ruby-core and ruby-dev. see [ruby-core:12535], [ruby-dev:31969]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/soap/fault/test_customfault.rb | 58 ------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 test/soap/fault/test_customfault.rb (limited to 'test/soap/fault/test_customfault.rb') diff --git a/test/soap/fault/test_customfault.rb b/test/soap/fault/test_customfault.rb deleted file mode 100644 index 2f7bc2be6e..0000000000 --- a/test/soap/fault/test_customfault.rb +++ /dev/null @@ -1,58 +0,0 @@ -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 -- cgit v1.2.3