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

Side by Side Diff: android_webview/native/aw_contents_client_bridge_unittest.cc

Issue 1492703004: Pass method parameters as JavaParamRef in android_webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forgot to test compile unit tests before uploading, whoops Created 5 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "android_webview/native/aw_contents_client_bridge.h" 5 #include "android_webview/native/aw_contents_client_bridge.h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_array.h" 8 #include "base/android/jni_array.h"
9 #include "base/android/scoped_java_ref.h" 9 #include "base/android/scoped_java_ref.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 // Verify that ProvideClientCertificateResponse works properly when the client 123 // Verify that ProvideClientCertificateResponse works properly when the client
124 // responds with a null key. 124 // responds with a null key.
125 TEST_F(AwContentsClientBridgeTest, 125 TEST_F(AwContentsClientBridgeTest,
126 TestProvideClientCertificateResponseCallsCallbackOnNullKey) { 126 TestProvideClientCertificateResponseCallsCallbackOnNullKey) {
127 // Call SelectClientCertificate to create a callback id that mock java object 127 // Call SelectClientCertificate to create a callback id that mock java object
128 // can call on. 128 // can call on.
129 bridge_->SelectClientCertificate( 129 bridge_->SelectClientCertificate(
130 cert_request_info_.get(), 130 cert_request_info_.get(),
131 make_scoped_ptr(new TestClientCertificateDelegate(this))); 131 make_scoped_ptr(new TestClientCertificateDelegate(this)));
132 bridge_->ProvideClientCertificateResponse(env_, jbridge_.obj(), 132 bridge_->ProvideClientCertificateResponse(
133 env_, jbridge_,
133 Java_MockAwContentsClientBridge_getRequestId(env_, jbridge_.obj()), 134 Java_MockAwContentsClientBridge_getRequestId(env_, jbridge_.obj()),
134 Java_MockAwContentsClientBridge_createTestCertChain( 135 Java_MockAwContentsClientBridge_createTestCertChain(env_, jbridge_.obj()),
135 env_, jbridge_.obj()).obj(),
136 nullptr); 136 nullptr);
137 base::RunLoop().RunUntilIdle(); 137 base::RunLoop().RunUntilIdle();
138 EXPECT_EQ(nullptr, selected_cert_); 138 EXPECT_EQ(nullptr, selected_cert_);
139 EXPECT_EQ(1, cert_selected_callbacks_); 139 EXPECT_EQ(1, cert_selected_callbacks_);
140 } 140 }
141 141
142 // Verify that ProvideClientCertificateResponse calls the callback with 142 // Verify that ProvideClientCertificateResponse calls the callback with
143 // null parameters when private key is not provided. 143 // null parameters when private key is not provided.
144 TEST_F(AwContentsClientBridgeTest, 144 TEST_F(AwContentsClientBridgeTest,
145 TestProvideClientCertificateResponseCallsCallbackOnNullChain) { 145 TestProvideClientCertificateResponseCallsCallbackOnNullChain) {
146 // Call SelectClientCertificate to create a callback id that mock java object 146 // Call SelectClientCertificate to create a callback id that mock java object
147 // can call on. 147 // can call on.
148 bridge_->SelectClientCertificate( 148 bridge_->SelectClientCertificate(
149 cert_request_info_.get(), 149 cert_request_info_.get(),
150 make_scoped_ptr(new TestClientCertificateDelegate(this))); 150 make_scoped_ptr(new TestClientCertificateDelegate(this)));
151 int requestId = 151 int requestId =
152 Java_MockAwContentsClientBridge_getRequestId(env_, jbridge_.obj()); 152 Java_MockAwContentsClientBridge_getRequestId(env_, jbridge_.obj());
153 bridge_->ProvideClientCertificateResponse( 153 bridge_->ProvideClientCertificateResponse(env_, jbridge_, requestId, nullptr,
154 env_, jbridge_.obj(), requestId, nullptr, nullptr); 154 nullptr);
155 base::RunLoop().RunUntilIdle(); 155 base::RunLoop().RunUntilIdle();
156 EXPECT_EQ(nullptr, selected_cert_); 156 EXPECT_EQ(nullptr, selected_cert_);
157 EXPECT_EQ(1, cert_selected_callbacks_); 157 EXPECT_EQ(1, cert_selected_callbacks_);
158 } 158 }
159 159
160 } // android_webview 160 } // android_webview
OLDNEW
« no previous file with comments | « android_webview/native/aw_contents_client_bridge.cc ('k') | android_webview/native/aw_http_auth_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698