Sha256: e1458d538fdad2a3e185e8e8fe13f88264c40459eb4d0ffce3d71c91f31d6271

Contents?: true

Size: 1.67 KB

Versions: 15

Compression:

Stored size: 1.67 KB

Contents

# encoding: ASCII-8BIT
require 'helper'
require 'soap/rpc/driver'
require 'logger'
require 'webrick'
require 'rbconfig'


module SOAP
module Calc


class TestCalcCGI < Test::Unit::TestCase
  # This test shuld be run after installing ruby.
  RUBYBIN = File.join(
    Config::CONFIG["bindir"],
    Config::CONFIG["ruby_install_name"] + Config::CONFIG["EXEEXT"]
  )
  RUBYBIN << " -d" if $DEBUG

  Port = 17171

  def setup
    logger = Logger.new(STDERR)
    logger.level = Logger::Severity::ERROR
    @server = WEBrick::HTTPServer.new(
      :BindAddress => "0.0.0.0",
      :Logger => logger,
      :Port => Port,
      :AccessLog => [],
      :DocumentRoot => File.dirname(File.expand_path(__FILE__)),
      :CGIPathEnv => ENV['PATH'],
      :CGIInterpreter => RUBYBIN
    )
    @t = Thread.new {
      Thread.current.abort_on_exception = true
      @server.start
    }
    @endpoint = "http://localhost:#{Port}/server.cgi"
    @calc = SOAP::RPC::Driver.new(@endpoint, 'http://tempuri.org/calcService')
    @calc.wiredump_dev = STDERR if $DEBUG
    @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_cgi
    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

15 entries across 15 versions & 9 rubygems

Version Path
malagant-soap4r-1.5.8.20141127181857 test/soap/calc/test_calc_cgi.rb
rtiss_soap4r-1.6.1 test/soap/calc/test_calc_cgi.rb
rtiss_soap4r-1.6.0 test/soap/calc/test_calc_cgi.rb
eSpace_soap4r-1.5.8 test/soap/calc/test_calc_cgi.rb
soap4r-ruby19-1.5.9 test/soap/calc/test_calc_cgi.rb
tomdz-soap4r-1.5.8.20120202093209 test/soap/calc/test_calc_cgi.rb
soap5r-2.0.3 test/soap/calc/test_calc_cgi.rb
soap5r-2.0.2 test/soap/calc/test_calc_cgi.rb
soap5r-2.0.1 test/soap/calc/test_calc_cgi.rb
soap5r-2.0.0 test/soap/calc/test_calc_cgi.rb
soap5r-2.0.0.20120130130121 test/soap/calc/test_calc_cgi.rb
soap4r-sgonyea-1.5.9 test/soap/calc/test_calc_cgi.rb
sunteya-soap4r-1.5.8.0 test/soap/calc/test_calc_cgi.rb
tomdz-soap4r-1.5.8.20111103171510 test/soap/calc/test_calc_cgi.rb
rubyjedi-soap4r-1.5.8.20100619003610 test/soap/calc/test_calc_cgi.rb