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

Side by Side Diff: tests/standalone/io/secure_socket_bad_data_test.dart

Issue 25716002: Fix secure_socket_bad_data_test to allow early failure. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix test instead of status file. Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // VMOptions= 5 // VMOptions=
6 // VMOptions=--short_socket_read 6 // VMOptions=--short_socket_read
7 // VMOptions=--short_socket_write 7 // VMOptions=--short_socket_write
8 // VMOptions=--short_socket_read --short_socket_write 8 // VMOptions=--short_socket_read --short_socket_write
9 9
10 import "dart:async"; 10 import "dart:async";
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 Future<List> connectClient(int port, bool hostnameInConnect) => 135 Future<List> connectClient(int port, bool hostnameInConnect) =>
136 RawSocket.connect(HOST_NAME, port) 136 RawSocket.connect(HOST_NAME, port)
137 .then((socket) => 137 .then((socket) =>
138 (hostnameInConnect ? RawSecureSocket.secure(socket) 138 (hostnameInConnect ? RawSecureSocket.secure(socket)
139 : RawSecureSocket.secure(socket, host: HOST_NAME)) 139 : RawSecureSocket.secure(socket, host: HOST_NAME))
140 .then((secureSocket) => [socket, secureSocket])); 140 .then((secureSocket) => [socket, secureSocket]));
141 141
142 142
143 Future test(bool hostnameInConnect) { 143 Future test(bool hostnameInConnect) {
144 return RawServerSocket.bind(HOST_NAME, 0) 144 return RawServerSocket.bind(HOST_NAME, 0)
145 .then((server) { 145 .then((server) {
146 server.listen((client) { 146 server.listen((client) {
147 RawSecureSocket.secureServer(client, CERTIFICATE) 147 RawSecureSocket.secureServer(client, CERTIFICATE)
148 .then((secureClient) { 148 .then((secureClient) {
149 Expect.throws(() => client.add([0])); 149 Expect.throws(() => client.add([0]));
150 return runServer(secureClient); 150 return runServer(secureClient);
151 }) 151 },
152 .then((_) => server.close()); 152 onError: (e) {
153 Expect.isTrue(e is HandshakeException);
154 Expect.isTrue(e.toString().contains(
155 'received a record with an incorrect Message Authentication'));
156 })
157 .whenComplete(server.close);
158 });
159 return connectClient(server.port, hostnameInConnect).then(runClient);
153 }); 160 });
154
155 return connectClient(server.port, hostnameInConnect).then(runClient);
156 });
157 } 161 }
158 162
159 163
160 main() { 164 main() {
161 String certificateDatabase = join(dirname(Platform.script), 'pkcert'); 165 String certificateDatabase = join(dirname(Platform.script), 'pkcert');
162 SecureSocket.initialize(database: certificateDatabase, 166 SecureSocket.initialize(database: certificateDatabase,
163 password: 'dartdart', 167 password: 'dartdart',
164 useBuiltinRoots: false); 168 useBuiltinRoots: false);
165 asyncStart(); 169 asyncStart();
166 Future.wait([test(false), test(true)]) 170 Future.wait([test(false), test(true)])
167 .then((_) => asyncEnd()); 171 .then((_) => asyncEnd());
168 } 172 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698