aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/test/abstract_dispatcher.rb
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-07-13 06:05:13 +0000
committerLeon Breedt <bitserf@gmail.com>2005-07-13 06:05:13 +0000
commitdfc422b784d3f62daa5a876d65b0ac983c33408a (patch)
treeb435cb969ed40ace9355aa6e3791b766a5bde566 /actionwebservice/test/abstract_dispatcher.rb
parentf29ce1f35670866cb86faedeabb28a33215a143f (diff)
downloadrails-dfc422b784d3f62daa5a876d65b0ac983c33408a.tar.gz
rails-dfc422b784d3f62daa5a876d65b0ac983c33408a.tar.bz2
rails-dfc422b784d3f62daa5a876d65b0ac983c33408a.zip
always send back SOAP responses as UTF-8, we can't guarantee that SOAP4R
supports any encoding sent by caller. add documentation describing how to ensure :string types don't get converted into :base64 by SOAP4R when containing non-ASCII chars and $KCODE is not set to a value. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1822 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/test/abstract_dispatcher.rb')
-rw-r--r--actionwebservice/test/abstract_dispatcher.rb15
1 files changed, 7 insertions, 8 deletions
diff --git a/actionwebservice/test/abstract_dispatcher.rb b/actionwebservice/test/abstract_dispatcher.rb
index e01d902ae1..4f8cd1fb4c 100644
--- a/actionwebservice/test/abstract_dispatcher.rb
+++ b/actionwebservice/test/abstract_dispatcher.rb
@@ -4,6 +4,7 @@ require 'stringio'
class ActionController::Base; def rescue_action(e) raise e end; end
module DispatcherTest
+ Utf8String = "One World Caf\303\251"
WsdlNamespace = 'http://rubyonrails.com/some/namespace'
class Node < ActiveRecord::Base
@@ -58,6 +59,7 @@ module DispatcherTest
api_method :hash_struct_return, :returns => [[Person]]
api_method :thrower
api_method :void
+ api_method :test_utf8, :returns => [:string]
api_method :hex, :expects => [:base64], :returns => [:string]
api_method :unhex, :expects => [:string], :returns => [:base64]
end
@@ -223,6 +225,10 @@ module DispatcherTest
@void_called = @method_params
end
+ def test_utf8
+ Utf8String
+ end
+
def hex(s)
return s.unpack("H*")[0]
end
@@ -398,12 +404,6 @@ module DispatcherCommonTests
raise NotImplementedError
end
- def update_request(ap_request)
- end
-
- def check_response(ap_response)
- end
-
def protocol
@protocol
end
@@ -453,11 +453,10 @@ module DispatcherCommonTests
# puts body
ap_request = protocol.encode_action_pack_request(service_name, public_method_name, body, :request_class => ActionController::TestRequest)
ap_request.env.update(request_env)
- update_request(ap_request)
ap_response = ActionController::TestResponse.new
container.process(ap_request, ap_response)
# puts ap_response.body
- check_response(ap_response)
+ @response_body = ap_response.body
public_method_name, return_value = protocol.decode_response(ap_response.body)
unless is_exception?(return_value) || virtual
return_value = method.cast_returns(return_value)