Sha256: 795c98287eca3f447451d40f61d1d0b51439428098e611fdc0154bc667af2284

Contents?: true

Size: 1.08 KB

Versions: 30

Compression:

Stored size: 1.08 KB

Contents

require 'test/unit'
require 'soap/rpc/driver'
require 'server.rb'


module SOAP
module Calc


class TestCalc < Test::Unit::TestCase
  Port = 17171

  def setup
    @server = CalcServer.new(self.class.name, nil, '0.0.0.0', Port)
    @server.level = Logger::Severity::ERROR
    @t = Thread.new {
      @server.start
    }
    @endpoint = "http://localhost:#{Port}/"
    @calc = SOAP::RPC::Driver.new(@endpoint, 'http://tempuri.org/calcService')
    @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
    @server.shutdown if @server
    if @t
      @t.kill
      @t.join
    end
    @calc.reset_stream if @calc
  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


end
end

Version data entries

30 entries across 30 versions & 13 rubygems

Version Path
mumboe-soap4r-1.6.0.pre.beta test/soap/calc/test_calc.rb
DefV-soap4r-1.5.8.2 test/soap/calc/test_calc.rb
mumboe-soap4r-1.5.8.7 test/soap/calc/test_calc.rb
teo-soap4r-1.5.9b test/soap/calc/test_calc.rb
mumboe-soap4r-1.5.8.6 test/soap/calc/test_calc.rb
soap4r-spox-1.6.0 test/soap/calc/test_calc.rb
soap4r-r19-1.5.9 test/soap/calc/test_calc.rb
mumboe-soap4r-1.5.8.5 test/soap/calc/test_calc.rb
soap4r-ruby1.9-2.0.5 test/soap/calc/test_calc.rb
soap4r-sgonyea-1.6.0 test/soap/calc/test_calc.rb
soap4r-straightjacket-1.5.9 test/soap/calc/test_calc.rb
soap4r-straightjacket-1.5.8 test/soap/calc/test_calc.rb
soap4r-ruby1.9-2.0.3 test/soap/calc/test_calc.rb
soap4r-ruby1.9-2.0.2 test/soap/calc/test_calc.rb
soap4r-ruby1.9-2.0.1 test/soap/calc/test_calc.rb
mumboe-soap4r-1.5.8.4 test/soap/calc/test_calc.rb
soap4r-ruby1.9-2.0.0 test/soap/calc/test_calc.rb
hands-soap4r-1.5.8.4 test/soap/calc/test_calc.rb
soap4r-ruby1.9-1.0.0 test/soap/calc/test_calc.rb
snaury-soap4r-1.5.8.1 test/soap/calc/test_calc.rb