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

Side by Side Diff: tests/standalone/src/io/DirectoryInvalidArgumentsTest.dart

Issue 9773018: Add error handling to directory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments Created 8 years, 8 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 #import("dart:io"); 5 #import("dart:io");
6 6
7 class DirectoryInvalidArgumentsTest { 7 class DirectoryInvalidArgumentsTest {
8 static void testFailingList(Directory d, var recursive) { 8 static void testFailingList(Directory d, var recursive) {
9 int errors = 0; 9 int errors = 0;
10 d.onError = (error) { 10 d.onError = (error) {
11 errors += 1; 11 errors += 1;
12 }; 12 };
13 d.onDone = (completed) { 13 d.onDone = (completed) {
14 Expect.equals(1, errors); 14 Expect.equals(1, errors);
15 Expect.isFalse(completed); 15 Expect.isFalse(completed);
16 }; 16 };
17 Expect.equals(0, errors); 17 Expect.equals(0, errors);
18 d.list(recursive); 18 d.list(recursive);
19 } 19 }
20 20
21 static void testInvalidArguments() { 21 static void testInvalidArguments() {
22 Directory d = new Directory(12); 22 Directory d = new Directory(12);
23 Expect.isFalse(d.existsSync()); 23 try {
24 d.existsSync();
25 Expect.fail("No exception thrown");
26 } catch (var e) {
27 Expect.isTrue(e is IllegalArgumentException);
28 }
24 try { 29 try {
25 d.deleteSync(); 30 d.deleteSync();
26 Expect.fail("No exception thrown"); 31 Expect.fail("No exception thrown");
27 } catch (var e) { 32 } catch (var e) {
28 Expect.isTrue(e is DirectoryException); 33 Expect.isTrue(e is IllegalArgumentException);
29 } 34 }
30 try { 35 try {
31 d.createSync(); 36 d.createSync();
32 Expect.fail("No exception thrown"); 37 Expect.fail("No exception thrown");
33 } catch (var e) { 38 } catch (var e) {
34 Expect.isTrue(e is DirectoryException); 39 Expect.isTrue(e is IllegalArgumentException);
35 } 40 }
36 testFailingList(d, false); 41 testFailingList(d, false);
37 d = new Directory("."); 42 d = new Directory(".");
38 testFailingList(d, 1); 43 testFailingList(d, 1);
39 } 44 }
40 45
41 static void testMain() { 46 static void testMain() {
42 testInvalidArguments(); 47 testInvalidArguments();
43 } 48 }
44 } 49 }
45 50
46 main() { 51 main() {
47 DirectoryInvalidArgumentsTest.testMain(); 52 DirectoryInvalidArgumentsTest.testMain();
48 } 53 }
OLDNEW
« no previous file with comments | « tests/standalone/src/io/DirectoryErrorTest.dart ('k') | tests/standalone/src/io/DirectoryTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698