| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 'package:scheduled_test/scheduled_test.dart'; | 5 import 'package:scheduled_test/scheduled_test.dart'; |
| 6 import 'package:watcher/src/directory_watcher/mac_os.dart'; | 6 import 'package:watcher/src/directory_watcher/mac_os.dart'; |
| 7 import 'package:watcher/watcher.dart'; | 7 import 'package:watcher/watcher.dart'; |
| 8 | 8 |
| 9 import 'shared.dart'; | 9 import 'shared.dart'; |
| 10 import '../utils.dart'; | 10 import '../utils.dart'; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 createDir("dir"); | 29 createDir("dir"); |
| 30 writeFile("dir/old.txt"); | 30 writeFile("dir/old.txt"); |
| 31 deleteDir("dir"); | 31 deleteDir("dir"); |
| 32 createDir("dir"); | 32 createDir("dir"); |
| 33 | 33 |
| 34 startWatcher(dir: "dir"); | 34 startWatcher(dir: "dir"); |
| 35 writeFile("dir/newer.txt"); | 35 writeFile("dir/newer.txt"); |
| 36 expectAddEvent("dir/newer.txt"); | 36 expectAddEvent("dir/newer.txt"); |
| 37 }); | 37 }); |
| 38 | 38 |
| 39 test('emits events for many nested files moved out then immediately back in', | 39 // TODO(nweiz): re-enable this when issue 16003 is fixed. |
| 40 () { | 40 // test('emits events for many nested files moved out then immediately back in
', |
| 41 withPermutations((i, j, k) => | 41 // () { |
| 42 writeFile("dir/sub/sub-$i/sub-$j/file-$k.txt")); | 42 // withPermutations((i, j, k) => |
| 43 // writeFile("dir/sub/sub-$i/sub-$j/file-$k.txt")); |
| 43 | 44 |
| 44 startWatcher(dir: "dir"); | 45 // startWatcher(dir: "dir"); |
| 45 | 46 |
| 46 renameDir("dir/sub", "sub"); | 47 // renameDir("dir/sub", "sub"); |
| 47 renameDir("sub", "dir/sub"); | 48 // renameDir("sub", "dir/sub"); |
| 48 | 49 |
| 49 inAnyOrder(() { | 50 // allowEither(() { |
| 50 withPermutations((i, j, k) => | 51 // inAnyOrder(withPermutations((i, j, k) => |
| 51 expectRemoveEvent("dir/sub/sub-$i/sub-$j/file-$k.txt")); | 52 // isRemoveEvent("dir/sub/sub-$i/sub-$j/file-$k.txt"))); |
| 52 }); | |
| 53 | 53 |
| 54 inAnyOrder(() { | 54 // inAnyOrder(withPermutations((i, j, k) => |
| 55 withPermutations((i, j, k) => | 55 // isAddEvent("dir/sub/sub-$i/sub-$j/file-$k.txt"))); |
| 56 expectAddEvent("dir/sub/sub-$i/sub-$j/file-$k.txt")); | 56 // }, () { |
| 57 }); | 57 // inAnyOrder(withPermutations((i, j, k) => |
| 58 }); | 58 // isModifyEvent("dir/sub/sub-$i/sub-$j/file-$k.txt"))); |
| 59 // }); |
| 60 // }); |
| 59 } | 61 } |
| OLD | NEW |