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

Unified Diff: tests/standalone/src/StringStreamTest.dart

Issue 9572005: Move all tests using dart:io to a separate directory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/src/StreamPipeTest.dart ('k') | tests/standalone/src/TestExtensionTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/StringStreamTest.dart
diff --git a/tests/standalone/src/StringStreamTest.dart b/tests/standalone/src/StringStreamTest.dart
deleted file mode 100644
index 7953723cde26790f4c19366d048d7d72370e8582..0000000000000000000000000000000000000000
--- a/tests/standalone/src/StringStreamTest.dart
+++ /dev/null
@@ -1,164 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-#import("dart:io");
-
-void testUtf8() {
- List<int> data = [0x01,
- 0x7f,
- 0xc2, 0x80,
- 0xdf, 0xbf,
- 0xe0, 0xa0, 0x80,
- 0xef, 0xbf, 0xbf];
- InputStream s = new ListInputStream();
- s.write(data);
- s.markEndOfStream();
- StringInputStream stream = new StringInputStream(s);
- void stringData() {
- String s = stream.read();
- Expect.equals(6, s.length);
- Expect.equals(new String.fromCharCodes([0x01]), s[0]);
- Expect.equals(new String.fromCharCodes([0x7f]), s[1]);
- Expect.equals(new String.fromCharCodes([0x80]), s[2]);
- Expect.equals(new String.fromCharCodes([0x7ff]), s[3]);
- Expect.equals(new String.fromCharCodes([0x800]), s[4]);
- Expect.equals(new String.fromCharCodes([0xffff]), s[5]);
- }
- stream.onData = stringData;
-}
-
-void testLatin1() {
- List<int> data = [0x01,
- 0x7f,
- 0x44, 0x61, 0x72, 0x74,
- 0x80,
- 0xff];
- InputStream s = new ListInputStream();
- s.write(data);
- s.markEndOfStream();
- StringInputStream stream = new StringInputStream(s, "ISO-8859-1");
- void stringData() {
- String s = stream.read();
- Expect.equals(8, s.length);
- Expect.equals(new String.fromCharCodes([0x01]), s[0]);
- Expect.equals(new String.fromCharCodes([0x7f]), s[1]);
- Expect.equals("Dart", s.substring(2, 6));
- Expect.equals(new String.fromCharCodes([0x80]), s[6]);
- Expect.equals(new String.fromCharCodes([0xff]), s[7]);
- }
- stream.onData = stringData;
-}
-
-void testAscii() {
- List<int> data = [0x01,
- 0x44, 0x61, 0x72, 0x74,
- 0x7f];
- InputStream s = new ListInputStream();
- s.write(data);
- s.markEndOfStream();
- StringInputStream stream = new StringInputStream(s, "ASCII");
- void stringData() {
- String s = stream.read();
- Expect.equals(6, s.length);
- Expect.equals(new String.fromCharCodes([0x01]), s[0]);
- Expect.equals("Dart", s.substring(1, 5));
- Expect.equals(new String.fromCharCodes([0x7f]), s[5]);
- }
- stream.onData = stringData;
-}
-
-void testReadLine1() {
- InputStream s = new ListInputStream();
- StringInputStream stream = new StringInputStream(s);
- var stage = 0;
-
- void stringData() {
- var line;
- if (stage == 0) {
- line = stream.readLine();
- Expect.equals(null, line);
- stage++;
- s.markEndOfStream();
- } else if (stage == 1) {
- line = stream.readLine();
- Expect.equals("Line", line);
- line = stream.readLine();
- Expect.equals(null, line);
- stage++;
- }
- }
-
- void streamClosed() {
- Expect.equals(true, stream.closed);
- Expect.equals(2, stage);
- }
-
- stream.onData = stringData;
- stream.onClosed = streamClosed;
- s.write("Line".charCodes());
-}
-
-void testReadLine2() {
- InputStream s = new ListInputStream();
- StringInputStream stream = new StringInputStream(s);
- var stage = 0;
-
- void stringData() {
- var line;
- if (stage == 0) {
- line = stream.readLine();
- Expect.equals("Line1", line);
- line = stream.readLine();
- Expect.equals("Line2", line);
- line = stream.readLine();
- Expect.equals("Line3", line);
- line = stream.readLine();
- Expect.equals(null, line);
- stage++;
- s.write("ne4\n".charCodes());
- } else if (stage == 1) {
- line = stream.readLine();
- Expect.equals("Line4", line);
- line = stream.readLine();
- Expect.equals(null, line);
- stage++;
- s.write("\n\n\r\n\r\n\r\r".charCodes());
- } else if (stage == 2) {
- // Expect 5 empty lines. As long as the stream is not closed the
- // final \r cannot be interpreted as a end of line.
- for (int i = 0; i < 5; i++) {
- line = stream.readLine();
- Expect.equals("", line);
- }
- line = stream.readLine();
- Expect.equals(null, line);
- stage++;
- s.markEndOfStream();
- } else if (stage == 3) {
- // The final \r can now be interpreted as an end of line.
- line = stream.readLine();
- Expect.equals("", line);
- line = stream.readLine();
- Expect.equals(null, line);
- stage++;
- }
- }
-
- void streamClosed() {
- Expect.equals(4, stage);
- Expect.equals(true, stream.closed);
- }
-
- stream.onLine = stringData;
- stream.onClosed = streamClosed;
- s.write("Line1\nLine2\r\nLine3\rLi".charCodes());
-}
-
-main() {
- testUtf8();
- testLatin1();
- testAscii();
- testReadLine1();
- testReadLine2();
-}
« no previous file with comments | « tests/standalone/src/StreamPipeTest.dart ('k') | tests/standalone/src/TestExtensionTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698