-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.py
executable file
·696 lines (562 loc) · 26.8 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright © 2019 Taylor C. Richberger
# This code is released under the license described in the LICENSE file
import sys
import os
import shutil
import unittest
from pathlib import Path
from tempfile import TemporaryDirectory
from asyncinotify import Event, Inotify, Mask, RecursiveWatcher
if sys.version_info >= (3, 9):
from collections.abc import Sequence
else:
from typing import Sequence
import asyncio
try:
from asyncio import run
from asyncio import create_task
except ImportError:
from asyncio import ensure_future as create_task
def run(main): # type: ignore
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
try:
try:
return loop.run_until_complete(main)
finally:
loop.run_until_complete(loop.shutdown_asyncgens())
finally:
loop.close()
class TestInotify(unittest.TestCase):
async def watch_events(self) -> Sequence[Event]:
'''Watch events until an IGNORED is received for the main watch, then
return the events.'''
events = []
with self.inotify as inotify:
async for event in inotify:
events.append(event)
if Mask.IGNORED in event and event.watch is self.watch:
return events
raise RuntimeError()
def gather_events(self, function) -> Sequence[Event]:
'''Run the function "soon" in the event loop, and also watch events
until you can return the result.'''
try:
function()
finally:
self.inotify.rm_watch(self.watch)
return run(self.watch_events())
def setUp(self):
self._dir = TemporaryDirectory()
self.dir = Path(self._dir.name)
self.inotify = Inotify()
self.watch = self.inotify.add_watch(self.dir, Mask.ACCESS | Mask.MODIFY | Mask.ATTRIB | Mask.CLOSE_WRITE | Mask.CLOSE_NOWRITE | Mask.OPEN | Mask.MOVED_FROM | Mask.MOVED_TO | Mask.CREATE | Mask.DELETE | Mask.DELETE_SELF | Mask.MOVE_SELF)
def tearDown(self):
self._dir.cleanup()
def test_diriterated(self):
def test():
list(self.dir.iterdir())
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.ISDIR|Mask.OPEN in event and event.path == self.dir for event in events))
self.assertTrue(any(Mask.ISDIR|Mask.ACCESS in event and event.path == self.dir for event in events))
self.assertTrue(any(Mask.ISDIR|Mask.CLOSE_NOWRITE in event and event.path == self.dir for event in events))
self.assertTrue(any(Mask.IGNORED in event and event.path == self.dir for event in events))
def test_foo_opened_and_closed(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
with open(self.dir / 'foo', 'r'):
pass
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.CREATE in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.OPEN in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.CLOSE_WRITE in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.CLOSE_NOWRITE in event and event.path == self.dir / 'foo' for event in events))
def test_foo_deleted(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
(self.dir / 'foo').unlink()
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.DELETE in event and event.path == self.dir / 'foo' for event in events))
def test_foo_write(self):
def test():
with open(self.dir / 'foo', 'w') as file:
file.write('test')
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.CREATE in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.OPEN in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.MODIFY in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.CLOSE_WRITE in event and event.path == self.dir / 'foo' for event in events))
def test_foo_moved(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
(self.dir / 'foo').rename(self.dir / 'bar')
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.MOVED_FROM in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.MOVED_TO in event and event.path == self.dir / 'bar' for event in events))
self.assertEqual(
next(event.cookie for event in events if Mask.MOVED_FROM in event),
next(event.cookie for event in events if Mask.MOVED_TO in event),
)
def test_foo_attrib(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
(self.dir / 'foo').chmod(0o777)
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.ATTRIB in event and event.path == self.dir / 'foo' for event in events))
def test_onlydir_error(self):
with open(self.dir / 'foo', 'w'):
pass
# Will not raise error
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB)
with self.assertRaises(OSError):
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB | Mask.ONLYDIR)
def test_nonexist_error(self):
with self.assertRaises(OSError):
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB | Mask.ONLYDIR)
with self.assertRaises(OSError):
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB)
def test_move_self(self):
with open(self.dir / 'foo', 'w'):
pass
watch = self.inotify.add_watch(self.dir / 'foo', Mask.MOVE_SELF)
def test():
(self.dir / 'foo').rename(self.dir / 'bar')
events = self.gather_events(test)
self.assertTrue(any(Mask.MOVE_SELF in event and event.path == self.dir / 'foo' and event.watch is watch for event in events))
def test_delete_self(self):
with open(self.dir / 'foo', 'w'):
pass
watch = self.inotify.add_watch(self.dir / 'foo', Mask.DELETE_SELF)
def test():
(self.dir / 'foo').unlink()
events = self.gather_events(test)
self.assertTrue(any(Mask.DELETE_SELF in event and event.path == self.dir / 'foo' and event.watch is watch for event in events))
self.assertTrue(any(Mask.IGNORED in event and event.path == self.dir / 'foo' and event.watch is watch for event in events))
self.assertTrue(any(Mask.IGNORED in event and event.path == self.dir for event in events))
def test_oneshot(self):
with open(self.dir / 'foo', 'w'):
pass
watch = self.inotify.add_watch(self.dir / 'foo', Mask.CREATE | Mask.OPEN | Mask.ONESHOT)
def test():
with open(self.dir / 'foo', 'r'):
pass
(self.dir / 'foo').unlink()
events = self.gather_events(test)
# We check for name is None because only the first event will have a watch value
self.assertTrue(any(Mask.OPEN in event and event.name is None and event.path == self.dir / 'foo' and event.watch is watch for event in events))
# The oneshot has already expired, so this should not exist
self.assertFalse(any(Mask.DELETE in event and event.name is None for event in events))
# There may or may not be an IGNORED for the watch as well
class TestSyncInotify(unittest.TestCase):
def watch_events(self) -> Sequence[Event]:
'''Watch events until an IGNORED is received for the main watch, then
return the events.'''
events = []
with self.inotify as inotify:
for event in inotify:
events.append(event)
if Mask.IGNORED in event and event.watch is self.watch:
return events
raise RuntimeError()
def gather_events(self, function) -> Sequence[Event]:
'''Run the function and then watch events until you can return the
result.'''
try:
function()
finally:
self.inotify.rm_watch(self.watch)
return self.watch_events()
def setUp(self):
self._dir = TemporaryDirectory()
self.dir = Path(self._dir.name)
self.inotify = Inotify()
self.watch = self.inotify.add_watch(self.dir, Mask.ACCESS | Mask.MODIFY | Mask.ATTRIB | Mask.CLOSE_WRITE | Mask.CLOSE_NOWRITE | Mask.OPEN | Mask.MOVED_FROM | Mask.MOVED_TO | Mask.CREATE | Mask.DELETE | Mask.DELETE_SELF | Mask.MOVE_SELF)
def tearDown(self):
self._dir.cleanup()
def test_diriterated(self):
def test():
list(self.dir.iterdir())
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.ISDIR|Mask.OPEN in event and event.path == self.dir for event in events))
self.assertTrue(any(Mask.ISDIR|Mask.ACCESS in event and event.path == self.dir for event in events))
self.assertTrue(any(Mask.ISDIR|Mask.CLOSE_NOWRITE in event and event.path == self.dir for event in events))
self.assertTrue(any(Mask.IGNORED in event and event.path == self.dir for event in events))
def test_foo_opened_and_closed(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
with open(self.dir / 'foo', 'r'):
pass
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.CREATE in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.OPEN in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.CLOSE_WRITE in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.CLOSE_NOWRITE in event and event.path == self.dir / 'foo' for event in events))
def test_foo_deleted(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
(self.dir / 'foo').unlink()
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.DELETE in event and event.path == self.dir / 'foo' for event in events))
def test_foo_write(self):
def test():
with open(self.dir / 'foo', 'w') as file:
file.write('test')
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.CREATE in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.OPEN in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.MODIFY in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.CLOSE_WRITE in event and event.path == self.dir / 'foo' for event in events))
def test_foo_moved(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
(self.dir / 'foo').rename(self.dir / 'bar')
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.MOVED_FROM in event and event.path == self.dir / 'foo' for event in events))
self.assertTrue(any(Mask.MOVED_TO in event and event.path == self.dir / 'bar' for event in events))
self.assertEqual(
next(event.cookie for event in events if Mask.MOVED_FROM in event),
next(event.cookie for event in events if Mask.MOVED_TO in event),
)
def test_foo_attrib(self):
def test():
with open(self.dir / 'foo', 'w'):
pass
(self.dir / 'foo').chmod(0o777)
events = self.gather_events(test)
self.assertTrue(all(event.watch is self.watch for event in events))
self.assertTrue(any(Mask.ATTRIB in event and event.path == self.dir / 'foo' for event in events))
def test_onlydir_error(self):
with open(self.dir / 'foo', 'w'):
pass
# Will not raise error
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB)
with self.assertRaises(OSError):
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB | Mask.ONLYDIR)
def test_nonexist_error(self):
with self.assertRaises(OSError):
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB | Mask.ONLYDIR)
with self.assertRaises(OSError):
self.inotify.add_watch(self.dir / 'foo', Mask.ATTRIB)
def test_move_self(self):
with open(self.dir / 'foo', 'w'):
pass
watch = self.inotify.add_watch(self.dir / 'foo', Mask.MOVE_SELF)
def test():
(self.dir / 'foo').rename(self.dir / 'bar')
events = self.gather_events(test)
self.assertTrue(any(Mask.MOVE_SELF in event and event.path == self.dir / 'foo' and event.watch is watch for event in events))
def test_delete_self(self):
with open(self.dir / 'foo', 'w'):
pass
watch = self.inotify.add_watch(self.dir / 'foo', Mask.DELETE_SELF)
def test():
(self.dir / 'foo').unlink()
events = self.gather_events(test)
self.assertTrue(any(Mask.DELETE_SELF in event and event.path == self.dir / 'foo' and event.watch is watch for event in events))
self.assertTrue(any(Mask.IGNORED in event and event.path == self.dir / 'foo' and event.watch is watch for event in events))
self.assertTrue(any(Mask.IGNORED in event and event.path == self.dir for event in events))
def test_oneshot(self):
with open(self.dir / 'foo', 'w'):
pass
watch = self.inotify.add_watch(self.dir / 'foo', Mask.CREATE | Mask.OPEN | Mask.ONESHOT)
def test():
with open(self.dir / 'foo', 'r'):
pass
(self.dir / 'foo').unlink()
events = self.gather_events(test)
# We check for name is None because only the first event will have a watch value
self.assertTrue(any(Mask.OPEN in event and event.name is None and event.path == self.dir / 'foo' and event.watch is watch for event in events))
# The oneshot has already expired, so this should not exist
self.assertFalse(any(Mask.DELETE in event and event.name is None for event in events))
# There may or may not be an IGNORED for the watch as well
def test_timeout(self):
with self.inotify as inotify:
inotify.sync_timeout = 0.1
list(self.dir.iterdir())
self.assertTrue(inotify.sync_get())
for event in inotify:
pass
self.assertFalse(inotify.sync_get())
class TestInotifyRepeat(unittest.TestCase):
async def _actual_test(self):
events: list[Event] = []
async def loop(n):
async for event in n:
events.append(event)
with TemporaryDirectory() as dir:
path = Path(dir) / 'file.txt'
path.touch()
with Inotify() as n:
n.add_watch(path, Mask.ACCESS
| Mask.MODIFY
| Mask.OPEN
| Mask.CREATE
| Mask.DELETE
| Mask.ATTRIB
| Mask.DELETE
| Mask.DELETE_SELF
| Mask.CLOSE
| Mask.MOVE)
task = create_task(loop(n))
await asyncio.sleep(0.1)
with path.open('w'):
pass
await asyncio.sleep(0.1)
task.cancel()
with Inotify() as n:
n.add_watch(path, Mask.ACCESS
| Mask.MODIFY
| Mask.OPEN
| Mask.CREATE
| Mask.DELETE
| Mask.ATTRIB
| Mask.DELETE
| Mask.DELETE_SELF
| Mask.CLOSE
| Mask.MOVE)
task = create_task(loop(n))
await asyncio.sleep(0.1)
path.unlink()
await asyncio.sleep(0.1)
task.cancel()
self.assertTrue(any(Mask.OPEN in event for event in events))
self.assertTrue(any(Mask.CLOSE_WRITE in event for event in events))
self.assertTrue(any(Mask.DELETE_SELF in event for event in events))
def test_events(self):
run(self._actual_test())
class TestRecursiveWatcher(unittest.TestCase):
def test_get_directories_recursive(self):
"""
create folder tree as:
level1.1
-level2.1
-level3.1
-level4.1
-level2.2
level1.2
"""
with TemporaryDirectory() as tmpdirname:
tmpdir = Path(tmpdirname)
(tmpdir / 'level1.1' / 'level2.1' / 'level3.1' / 'level4.1').mkdir(parents=True, exist_ok=True)
(tmpdir / 'level1.1' / 'level2.2').mkdir(parents=True, exist_ok=True)
(tmpdir / 'level1.2').mkdir(parents=True, exist_ok=True)
watcher = RecursiveWatcher(None, None)
paths = [path for path in watcher._get_directories_recursive(Path(tmpdirname))]
self.assertEqual(set(paths), {
tmpdir,
Path(tmpdirname) / "level1.2",
Path(tmpdirname) / "level1.1",
Path(tmpdirname) / "level1.1" / "level2.2",
Path(tmpdirname) / "level1.1" / "level2.1",
Path(tmpdirname) / "level1.1" / "level2.1" / "level3.1",
Path(tmpdirname) / "level1.1" / "level2.1" / "level3.1" / "level4.1",
})
def _assert_paths_watched(self, watchers, path_set):
watched_path_set = {str(watch.path) for watch in watchers.values()}
self.assertSetEqual(watched_path_set, path_set)
class _FakeWatcher:
def __init__(self, path) -> None:
self.path = path
def test_assert_paths_watched(self):
# both empty
self._assert_paths_watched({}, set())
# watchers empty
with self.assertRaises(AssertionError):
self._assert_paths_watched({}, {"/tmp/path1"})
# path set empty
with self.assertRaises(AssertionError):
self._assert_paths_watched({
"fd1": self._FakeWatcher(Path("/tmp/path1")),
"fd2": self._FakeWatcher(Path("/tmp/path2")),
}, set())
# identical sets
self._assert_paths_watched({
"fd1": self._FakeWatcher(Path("/tmp/path1")),
"fd2": self._FakeWatcher(Path("/tmp/path2")),
}, {
"/tmp/path2",
"/tmp/path1"
})
# diff sets
with self.assertRaises(AssertionError):
self._assert_paths_watched({
"fd1": self._FakeWatcher(Path("/tmp/path1")),
}, {
"/tmp/path2",
"/tmp/path1"
})
def _create_file(self, file_path):
with open(str(file_path), "w") as f:
f.write(file_path)
async def _read_events(self, inotify, folder, events):
watcher = RecursiveWatcher(Path(folder), Mask.CLOSE_WRITE)
async for event in watcher.watch_recursive(inotify):
# events/watchers are ephemeral, copy data we want
events.append((
event.path,
event.mask,
))
async def _watch_recursive(self):
"""
test the cases of folder changes:
1. create folder
2. create cascading folders
3. move folder in from un-monitored folder
4. move folders out to un-monitored folder
5. move folder within monitored folders
6. delete folders
"""
with TemporaryDirectory() as tmpdirbasename:
events = []
tmpdirname = os.path.join(tmpdirbasename, "test")
os.makedirs(tmpdirname)
existing_dir = os.path.join(tmpdirname, "existing_dir")
os.makedirs(existing_dir)
outside_dir = os.path.join(tmpdirbasename, "outside")
os.makedirs(outside_dir)
with Inotify() as inotify:
watch_task = create_task(self._read_events(inotify, tmpdirname, events))
await asyncio.sleep(0.3)
# existing 2 folders are watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
existing_dir,
})
# create file, event
file_path = os.path.join(tmpdirname, "f1.txt")
self._create_file(file_path)
await asyncio.sleep(0.3)
# still 2 folders watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
existing_dir,
})
# create folder and a file inside, no event because of racing
folder_path = os.path.join(tmpdirname, "d1")
os.makedirs(folder_path)
file_path = os.path.join(folder_path, "f2.txt")
self._create_file(file_path)
await asyncio.sleep(0.3)
# one more folder watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
existing_dir,
os.path.join(tmpdirname, "d1"),
})
# create cascade folders
folder_path = os.path.join(tmpdirname, "d2", "dd1", "ddd1")
os.makedirs(folder_path)
await asyncio.sleep(0.3)
# 3 more folders watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
existing_dir,
os.path.join(tmpdirname, "d1"),
os.path.join(tmpdirname, "d2"),
os.path.join(tmpdirname, "d2", "dd1"),
os.path.join(tmpdirname, "d2", "dd1", "ddd1"),
})
# move in folder from outside
move_folder_path = os.path.join(tmpdirname, "d1", "outside")
os.rename(outside_dir, move_folder_path)
await asyncio.sleep(0.3)
# one more folder watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
existing_dir,
os.path.join(tmpdirname, "d1"),
os.path.join(tmpdirname, "d2"),
os.path.join(tmpdirname, "d2", "dd1"),
os.path.join(tmpdirname, "d2", "dd1", "ddd1"),
os.path.join(tmpdirname, "d1", "outside"),
})
# create file in watched outside folder, event
file_path = os.path.join(tmpdirname, "d1", "outside", "f3.txt")
self._create_file(file_path)
await asyncio.sleep(0.3)
# move out folder
folder_path = os.path.join(tmpdirname, "d2", "dd1")
move_folder_path = os.path.join(tmpdirbasename, "dd1")
os.rename(folder_path, move_folder_path)
await asyncio.sleep(0.3)
# 2 folders not watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
existing_dir,
os.path.join(tmpdirname, "d1"),
os.path.join(tmpdirname, "d2"),
os.path.join(tmpdirname, "d1", "outside"),
})
# create file in not watched folder, no event
file_path = os.path.join(tmpdirbasename, "dd1", "ddd1", "f4.txt")
self._create_file(file_path)
await asyncio.sleep(0.3)
# move folder within
folder_path = os.path.join(tmpdirname, "existing_dir")
move_folder_path = os.path.join(tmpdirname, "d1", "existing_dir")
os.rename(folder_path, move_folder_path)
await asyncio.sleep(0.3)
# folders change
self._assert_paths_watched(inotify._watches, {
tmpdirname,
os.path.join(tmpdirname, "d1"),
os.path.join(tmpdirname, "d2"),
os.path.join(tmpdirname, "d1", "outside"),
os.path.join(tmpdirname, "d1", "existing_dir")
})
# create file in moved folder, event
file_path = os.path.join(tmpdirname, "d1", "existing_dir", "f5.txt")
self._create_file(file_path)
await asyncio.sleep(0.3)
# delete folder
folder_path = os.path.join(tmpdirname, "d2")
os.removedirs(folder_path)
await asyncio.sleep(0.3)
# one less folder watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
os.path.join(tmpdirname, "d1"),
os.path.join(tmpdirname, "d1", "outside"),
os.path.join(tmpdirname, "d1", "existing_dir")
})
# delete folders
shutil.rmtree(os.path.join(tmpdirname, "d1"))
await asyncio.sleep(0.3)
# less folders watched
self._assert_paths_watched(inotify._watches, {
tmpdirname,
})
watch_task.cancel()
await asyncio.gather(watch_task, return_exceptions=True)
# verify events
self.assertEqual(len(events), 3)
self.assertEqual(str(events[0][0]), os.path.join(tmpdirname, "f1.txt"))
self.assertTrue(events[0][1] & Mask.CLOSE_WRITE)
self.assertEqual(str(events[1][0]), os.path.join(tmpdirname, "d1", "outside", "f3.txt"))
self.assertTrue(events[1][1] & Mask.CLOSE_WRITE)
self.assertEqual(str(events[2][0]), os.path.join(tmpdirname, "d1", "existing_dir", "f5.txt"))
self.assertTrue(events[2][1] & Mask.CLOSE_WRITE)
def test_watch_recursive(self):
run(self._watch_recursive())
if __name__ == '__main__':
unittest.main()