Sha256: b01a688ea510b968c4e148a29c94d1d83351055cbc6bd1f99d85287cd4c68a60

Contents?: true

Size: 1.22 KB

Versions: 30

Compression:

Stored size: 1.22 KB

Contents

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


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
    }
    @endpoint = "http://localhost:#{Port}/"
    @var = SOAP::RPC::Driver.new(@endpoint, 'http://tempuri.org/calcService')
    @var.wiredump_dev = STDERR if $DEBUG
    @var.add_method('set_value', 'newValue')
    @var.add_method('get_value')
    @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 if @server
    if @t
      @t.kill
      @t.join
    end
    @var.reset_stream if @var
  end

  def test_calc2
    assert_equal(1, @var.set_value(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

Version data entries

30 entries across 30 versions & 13 rubygems

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