2003-09-24 11:18:44 -04:00
|
|
|
require 'test/unit'
|
|
|
|
require 'soap/rpc/driver'
|
|
|
|
require 'server.rb'
|
|
|
|
|
2003-09-26 14:34:41 -04:00
|
|
|
|
|
|
|
module SOAP
|
|
|
|
module Calc
|
|
|
|
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
class TestCalc < Test::Unit::TestCase
|
2003-10-18 11:21:18 -04:00
|
|
|
Port = 17171
|
|
|
|
|
2003-09-24 11:18:44 -04:00
|
|
|
def setup
|
2003-10-18 11:21:18 -04:00
|
|
|
@server = CalcServer.new(self.class.name, nil, '0.0.0.0', Port)
|
2003-10-22 11:43:10 -04:00
|
|
|
@server.level = Logger::Severity::ERROR
|
2003-09-24 11:18:44 -04:00
|
|
|
@t = Thread.new {
|
|
|
|
@server.start
|
|
|
|
}
|
2003-10-22 11:43:10 -04:00
|
|
|
@endpoint = "http://localhost:#{Port}/"
|
|
|
|
@calc = SOAP::RPC::Driver.new(@endpoint, 'http://tempuri.org/calcService')
|
2003-09-24 11:18:44 -04:00
|
|
|
@calc.add_method('add', 'lhs', 'rhs')
|
|
|
|
@calc.add_method('sub', 'lhs', 'rhs')
|
|
|
|
@calc.add_method('multi', 'lhs', 'rhs')
|
|
|
|
@calc.add_method('div', 'lhs', 'rhs')
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2003-12-08 10:09:49 -05:00
|
|
|
@server.shutdown
|
2003-09-24 11:18:44 -04:00
|
|
|
@t.kill
|
2003-10-20 11:37:11 -04:00
|
|
|
@t.join
|
2003-10-22 11:43:10 -04:00
|
|
|
@calc.reset_stream
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_calc
|
|
|
|
assert_equal(3, @calc.add(1, 2))
|
|
|
|
assert_equal(-1.1, @calc.sub(1.1, 2.2))
|
|
|
|
assert_equal(2.42, @calc.multi(1.1, 2.2))
|
|
|
|
assert_equal(2, @calc.div(5, 2))
|
|
|
|
assert_equal(2.5, @calc.div(5.0, 2))
|
|
|
|
assert_equal(1.0/0.0, @calc.div(1.1, 0))
|
|
|
|
assert_raises(ZeroDivisionError) do
|
|
|
|
@calc.div(1, 0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2003-09-26 14:34:41 -04:00
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|