| OLD | NEW |
| 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 var lister = d.list(recursive); | 10 var lister = d.list(recursive); |
| 11 lister.onError = (error) { | 11 lister.onError = (error) { |
| 12 errors += 1; | 12 errors += 1; |
| 13 }; | 13 }; |
| 14 lister.onDone = (completed) { | 14 lister.onDone = (completed) { |
| 15 Expect.equals(1, errors); | 15 Expect.equals(1, errors); |
| 16 Expect.isFalse(completed); | 16 Expect.isFalse(completed); |
| 17 }; | 17 }; |
| 18 Expect.equals(0, errors); | 18 Expect.equals(0, errors); |
| 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 try { | 23 try { |
| 24 d.existsSync(); | 24 d.existsSync(); |
| 25 Expect.fail("No exception thrown"); | 25 Expect.fail("No exception thrown"); |
| 26 } catch (var e) { | 26 } catch (e) { |
| 27 Expect.isTrue(e is IllegalArgumentException); | 27 Expect.isTrue(e is IllegalArgumentException); |
| 28 } | 28 } |
| 29 try { | 29 try { |
| 30 d.deleteSync(); | 30 d.deleteSync(); |
| 31 Expect.fail("No exception thrown"); | 31 Expect.fail("No exception thrown"); |
| 32 } catch (var e) { | 32 } catch (e) { |
| 33 Expect.isTrue(e is IllegalArgumentException); | 33 Expect.isTrue(e is IllegalArgumentException); |
| 34 } | 34 } |
| 35 try { | 35 try { |
| 36 d.createSync(); | 36 d.createSync(); |
| 37 Expect.fail("No exception thrown"); | 37 Expect.fail("No exception thrown"); |
| 38 } catch (var e) { | 38 } catch (e) { |
| 39 Expect.isTrue(e is IllegalArgumentException); | 39 Expect.isTrue(e is IllegalArgumentException); |
| 40 } | 40 } |
| 41 testFailingList(d, false); | 41 testFailingList(d, false); |
| 42 d = new Directory("."); | 42 d = new Directory("."); |
| 43 testFailingList(d, 1); | 43 testFailingList(d, 1); |
| 44 } | 44 } |
| 45 | 45 |
| 46 static void testMain() { | 46 static void testMain() { |
| 47 testInvalidArguments(); | 47 testInvalidArguments(); |
| 48 } | 48 } |
| 49 } | 49 } |
| 50 | 50 |
| 51 main() { | 51 main() { |
| 52 DirectoryInvalidArgumentsTest.testMain(); | 52 DirectoryInvalidArgumentsTest.testMain(); |
| 53 } | 53 } |
| OLD | NEW |