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

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

Issue 12295014: Remove deprecated Strings class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // The --short_socket_write option does not work with external server 7 // The --short_socket_write option does not work with external server
8 // www.google.dk. Add this to the test when we have secure server sockets. 8 // www.google.dk. Add this to the test when we have secure server sockets.
9 // See TODO below. 9 // See TODO below.
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 useReadList = () { 47 useReadList = () {
48 var buffer = new List.fixedLength(2000); 48 var buffer = new List.fixedLength(2000);
49 int len = secure.readList(buffer, 0, 2000); 49 int len = secure.readList(buffer, 0, 2000);
50 var received = new String.fromCharCodes(buffer.getRange(0, len)); 50 var received = new String.fromCharCodes(buffer.getRange(0, len));
51 chunks.add(received); 51 chunks.add(received);
52 secure.onData = useRead; 52 secure.onData = useRead;
53 }; 53 };
54 secure.onData = useRead; 54 secure.onData = useRead;
55 secure.onClosed = () { 55 secure.onClosed = () {
56 String fullPage = Strings.concatAll(chunks); 56 String fullPage = chunks.join();
57 Expect.isTrue(fullPage.contains('</body></html>')); 57 Expect.isTrue(fullPage.contains('</body></html>'));
58 keepAlive.close(); 58 keepAlive.close();
59 }; 59 };
60 } 60 }
OLDNEW
« no previous file with comments | « tests/standalone/io/secure_socket_bad_certificate_test.dart ('k') | tests/standalone/io/secure_stream_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698