forked from ProCern/asyncinotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
executable file
·444 lines (346 loc) · 17.1 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
#!/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 unittest
from pathlib import Path
from tempfile import TemporaryDirectory
from asyncinotify import Event, Inotify, Mask
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())
if __name__ == '__main__':
unittest.main()