mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
af2dc00300
methods as delegates to WEBrick. * test/soap/calc/{test_calc.rb,test_calc2.rb}, test/soap/helloworld/test_helloworld.rb, test/wsdl/datetime/test_datetime.rb, test/wsdl/raa/test_raa.rb: follow the change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
63 lines
1.3 KiB
Ruby
63 lines
1.3 KiB
Ruby
require 'test/unit'
|
|
require 'soap/rpc/driver'
|
|
|
|
dir = File.dirname(__FILE__)
|
|
$:.push(dir)
|
|
require 'server2.rb'
|
|
$:.delete(dir)
|
|
|
|
|
|
module SOAP
|
|
module Calc
|
|
|
|
|
|
class TestCalc2 < Test::Unit::TestCase
|
|
Port = 17171
|
|
|
|
def setup
|
|
@server = CalcServer2.new('CalcServer', 'http://tempuri.org/calcService', '0.0.0.0', Port)
|
|
@server.level = Logger::Severity::ERROR
|
|
@t = Thread.new {
|
|
Thread.current.abort_on_exception = true
|
|
@server.start
|
|
}
|
|
while @server.status != :Running
|
|
sleep 0.1
|
|
unless @t.alive?
|
|
@t.join
|
|
raise
|
|
end
|
|
end
|
|
@endpoint = "http://localhost:#{Port}/"
|
|
@var = SOAP::RPC::Driver.new(@endpoint, 'http://tempuri.org/calcService')
|
|
@var.add_method('set', 'newValue')
|
|
@var.add_method('get')
|
|
@var.add_method_as('+', 'add', 'rhs')
|
|
@var.add_method_as('-', 'sub', 'rhs')
|
|
@var.add_method_as('*', 'multi', 'rhs')
|
|
@var.add_method_as('/', 'div', 'rhs')
|
|
end
|
|
|
|
def teardown
|
|
@server.shutdown
|
|
@t.kill
|
|
@t.join
|
|
@var.reset_stream
|
|
end
|
|
|
|
def test_calc2
|
|
assert_equal(1, @var.set(1))
|
|
assert_equal(3, @var + 2)
|
|
assert_equal(-1.2, @var - 2.2)
|
|
assert_equal(2.2, @var * 2.2)
|
|
assert_equal(0, @var / 2)
|
|
assert_equal(0.5, @var / 2.0)
|
|
assert_raises(ZeroDivisionError) do
|
|
@var / 0
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
end
|