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

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

Issue 12473003: Remove deprecated StringBuffer.add, addAll and addCharCode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 // Testing file input stream, VM-only, standalone test. 4 // Testing file input stream, VM-only, standalone test.
5 5
6 import "dart:io"; 6 import "dart:io";
7 import "dart:isolate"; 7 import "dart:isolate";
8 8
9 // Helper method to be able to run the test from the runtime 9 // Helper method to be able to run the test from the runtime
10 // directory, or the top directory. 10 // directory, or the top directory.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 }); 46 });
47 } 47 }
48 48
49 49
50 // Create a file that is big enough that a file stream will 50 // Create a file that is big enough that a file stream will
51 // read it in multiple chunks. 51 // read it in multiple chunks.
52 int writeLongFileSync(File file) { 52 int writeLongFileSync(File file) {
53 file.createSync(); 53 file.createSync();
54 StringBuffer buffer = new StringBuffer(); 54 StringBuffer buffer = new StringBuffer();
55 for (var i = 0; i < 10000; i++) { 55 for (var i = 0; i < 10000; i++) {
56 buffer.add("Hello, world"); 56 buffer.write("Hello, world");
57 } 57 }
58 file.writeAsStringSync(buffer.toString()); 58 file.writeAsStringSync(buffer.toString());
59 var length = file.lengthSync(); 59 var length = file.lengthSync();
60 Expect.equals(buffer.length, length); 60 Expect.equals(buffer.length, length);
61 return length; 61 return length;
62 } 62 }
63 63
64 64
65 void testInputStreamTruncate() { 65 void testInputStreamTruncate() {
66 var keepAlive = new ReceivePort(); 66 var keepAlive = new ReceivePort();
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 testOpenStreamAsync(); 196 testOpenStreamAsync();
197 testInputStreamTruncate(); 197 testInputStreamTruncate();
198 testInputStreamDelete(); 198 testInputStreamDelete();
199 testInputStreamAppend(); 199 testInputStreamAppend();
200 // Check the length of these files as both are text files where one 200 // Check the length of these files as both are text files where one
201 // is without a terminating line separator which can easily be added 201 // is without a terminating line separator which can easily be added
202 // back if accidentally opened in a text editor. 202 // back if accidentally opened in a text editor.
203 testStringLineTransformerEnding("readline_test1.dat", 111); 203 testStringLineTransformerEnding("readline_test1.dat", 111);
204 testStringLineTransformerEnding("readline_test2.dat", 114); 204 testStringLineTransformerEnding("readline_test2.dat", 114);
205 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698