mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00
* lib/soap/* (29 files): SOAP4R added.
* lib/wsdl/* (42 files): WSDL4R added. * lib/xsd/* (12 files): XSD4R added. * test/soap/* (16 files): added. * test/wsdl/* (2 files): added. * test/xsd/* (3 files): added. * sample/soap/* (27 files): added. * sample/wsdl/* (13 files): added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8c2fb77787
commit
db9445103c
145 changed files with 20938 additions and 0 deletions
31
test/soap/helloworld/test_helloworld.rb
Normal file
31
test/soap/helloworld/test_helloworld.rb
Normal file
|
@ -0,0 +1,31 @@
|
|||
require 'test/unit'
|
||||
require 'soap/rpc/driver'
|
||||
|
||||
dir = File.dirname(__FILE__)
|
||||
$:.push(dir)
|
||||
require 'hw_s.rb'
|
||||
$:.delete(dir)
|
||||
|
||||
class TestHelloWorld < Test::Unit::TestCase
|
||||
def setup
|
||||
@server = HelloWorldServer.new('hws', 'urn:hws', '0.0.0.0', 2000)
|
||||
@t = Thread.new {
|
||||
@server.start
|
||||
}
|
||||
while @server.server.status != :Running
|
||||
sleep 0.1
|
||||
end
|
||||
@client = SOAP::RPC::Driver.new('http://localhost:2000/', 'urn:hws')
|
||||
@client.add_method("hello_world", "from")
|
||||
end
|
||||
|
||||
def teardown
|
||||
@server.server.shutdown
|
||||
@t.kill
|
||||
end
|
||||
|
||||
def test_hello_world
|
||||
assert_equal("Hello World, from NaHi", @client.hello_world("NaHi"))
|
||||
assert_equal("Hello World, from <&>", @client.hello_world("<&>"))
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue