Index: third_party/grpc/src/ruby/spec/call_credentials_spec.rb |
diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py b/third_party/grpc/src/ruby/spec/call_credentials_spec.rb |
similarity index 63% |
copy from third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py |
copy to third_party/grpc/src/ruby/spec/call_credentials_spec.rb |
index 4206831cb5135d5e03928bf9d995b2bf9e156018..32a0ad44b79d604b6f32d2d50f103e752769c6d8 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/websocket/echo-with-no-extension_wsh.py |
+++ b/third_party/grpc/src/ruby/spec/call_credentials_spec.rb |
@@ -1,4 +1,4 @@ |
-# Copyright 2012, Google Inc. |
+# Copyright 2015, Google Inc. |
# All rights reserved. |
# |
# Redistribution and use in source and binary forms, with or without |
@@ -27,22 +27,31 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
+require 'grpc' |
-_GOODBYE_MESSAGE = u'Goodbye' |
+describe GRPC::Core::CallCredentials do |
+ CallCredentials = GRPC::Core::CallCredentials |
+ let(:auth_proc) { proc { { 'plugin_key' => 'plugin_value' } } } |
-def web_socket_do_extra_handshake(request): |
- request.ws_extension_processors = [] |
+ describe '#new' do |
+ it 'can successfully create a CallCredentials from a proc' do |
+ expect { CallCredentials.new(auth_proc) }.not_to raise_error |
+ end |
+ end |
+ describe '#compose' do |
+ it 'can compose with another CallCredentials' do |
+ creds1 = CallCredentials.new(auth_proc) |
+ creds2 = CallCredentials.new(auth_proc) |
+ expect { creds1.compose creds2 }.not_to raise_error |
+ end |
-def web_socket_transfer_data(request): |
- while True: |
- line = request.ws_stream.receive_message() |
- if line is None: |
- return |
- if isinstance(line, unicode): |
- request.ws_stream.send_message(line, binary=False) |
- if line == _GOODBYE_MESSAGE: |
- return |
- else: |
- request.ws_stream.send_message(line, binary=True) |
+ it 'can compose with multiple CallCredentials' do |
+ creds1 = CallCredentials.new(auth_proc) |
+ creds2 = CallCredentials.new(auth_proc) |
+ creds3 = CallCredentials.new(auth_proc) |
+ expect { creds1.compose(creds2, creds3) }.not_to raise_error |
+ end |
+ end |
+end |