Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Unified Diff: third_party/grpc/src/ruby/spec/call_credentials_spec.rb

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/grpc/src/ruby/pb/test/server.rb ('k') | third_party/grpc/src/ruby/spec/call_spec.rb » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/grpc/src/ruby/pb/test/server.rb ('k') | third_party/grpc/src/ruby/spec/call_spec.rb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698