-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathtest_eden_since.py
More file actions
411 lines (348 loc) · 12.9 KB
/
test_eden_since.py
File metadata and controls
411 lines (348 loc) · 12.9 KB
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
# vim:ts=4:sw=4:et:
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
# pyre-unsafe
import json
import os
import shutil
from typing import Any, Dict, List, Optional
from watchman.integration.lib import WatchmanEdenTestCase
def populate(
repo, threshold: Optional[int] = None, extra_files: Optional[List[str]] = None
) -> None:
# We ignore ".hg" here just so some of the tests that list files don't have to
# explicitly filter out the contents of this directory. However, in most situations
# the .hg directory normally should not be ignored.
config: Dict[str, Any] = {"ignore_dirs": [".hg"]}
config["eden_use_streaming_since"] = True
if threshold:
config["eden_file_count_threshold_for_fresh_instance"] = threshold
config["eden_enable_glob_upper_bounds"] = True
repo.write_file(".watchmanconfig", json.dumps(config))
repo.write_file("hello", "hola\n")
repo.write_file("adir/file", "foo!\n")
repo.write_file("bdir/test.sh", "#!/bin/bash\necho test\n", mode=0o755)
repo.write_file("bdir/noexec.sh", "#!/bin/bash\necho test\n")
repo.symlink("slink", "hello")
if extra_files:
for extra_file in extra_files:
repo.write_file(extra_file, "")
repo.commit("initial commit.")
class TestEdenSince(WatchmanEdenTestCase.WatchmanEdenTestCase):
def test_eden_lazy_eval(self) -> None:
root = self.makeEdenMount(populate)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
res = self.watchmanCommand(
"query",
root,
{
"expression": ["allof", ["type", "f"], ["match", "*.sh"]],
"fields": ["name"],
"since": "c:0:0",
},
)
self.assertFileListsEqual(res["files"], ["bdir/test.sh", "bdir/noexec.sh"])
def test_eden_empty_relative_root(self) -> None:
root = self.makeEdenMount(populate)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
res = self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"relative_root": "",
"fields": ["name"],
"since": "c:0:0",
},
)
self.assertFileListsEqual(
res["files"],
[".watchmanconfig", "hello", "adir/file", "bdir/test.sh", "bdir/noexec.sh"],
)
def test_eden_since(self) -> None:
root = self.makeEdenMount(populate)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
res = self.watchmanCommand(
"query",
root,
{"expression": ["type", "f"], "fields": ["name"], "since": "c:0:0"},
)
self.assertTrue(res["is_fresh_instance"])
self.assertFileListsEqual(
res["files"],
["hello", "adir/file", "bdir/test.sh", "bdir/noexec.sh", ".watchmanconfig"],
)
res = self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"relative_root": "adir",
"fields": ["name"],
"since": "c:0:0",
},
)
self.assertFileListsEqual(
res["files"],
["file"],
message="should only return adir/file with no adir prefix",
)
clock = res["clock"]
self.touchRelative(root, "hello")
res = self.watchmanCommand(
"query",
root,
{"expression": ["type", "f"], "fields": ["name"], "since": clock},
)
self.assertFileListsEqual(res["files"], ["hello"])
res = self.watchmanCommand(
"query",
root,
{"expression": ["type", "f"], "fields": ["name", "new"], "since": clock},
)
self.assertEqual([{"name": "hello", "new": False}], res["files"])
self.touchRelative(root, "hello")
res = self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"fields": ["name", "new"],
"since": res["clock"],
},
)
self.assertEqual([{"name": "hello", "new": False}], res["files"])
res = self.watchmanCommand(
"query",
root,
{"expression": ["type", "f"], "fields": ["name"], "since": res["clock"]},
)
self.assertFileListsEqual(res["files"], [])
res = self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"empty_on_fresh_instance": True,
"fields": ["name"],
"since": "c:0:0",
},
)
self.assertTrue(res["is_fresh_instance"])
self.assertFileListsEqual(res["files"], [])
os.unlink(os.path.join(root, "hello"))
res = self.watchmanCommand(
"query", root, {"fields": ["name"], "since": res["clock"]}
)
self.assertFileListsEqual(res["files"], ["hello"])
res = self.watchmanCommand(
"query",
root,
{"expression": ["type", "f"], "fields": ["name"], "since": res["clock"]},
)
self.assertFileListsEqual(res["files"], [])
self.touchRelative(root, "newfile")
res = self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"fields": ["name", "new"],
"since": res["clock"],
},
)
self.assertEqual([{"name": "newfile", "new": True}], res["files"])
self.touchRelative(root, "newfile")
res = self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"fields": ["name", "new"],
"since": res["clock"],
},
)
self.assertEqual([{"name": "newfile", "new": False}], res["files"])
adir_file = os.path.join(root, "adir/file")
os.unlink(adir_file)
with open(adir_file, "w") as f:
f.write("new contents\n")
res = self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"fields": ["name", "new"],
"since": res["clock"],
},
)
self.assertEqual([{"name": "adir/file", "new": False}], res["files"])
def query_adir_change_since(self, root, clock):
return self.watchmanCommand(
"query",
root,
{
"expression": [
"anyof",
["match", "adir", "basename"],
["dirname", "adir"],
],
"fields": ["name", "type"],
"since": clock,
"empty_on_fresh_instance": True,
"always_include_directories": True,
},
)
def test_eden_since_removal(self) -> None:
root = self.makeEdenMount(populate)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
first_clock = self.watchmanCommand(
"clock",
root,
)["clock"]
shutil.rmtree(os.path.join(root, "adir"))
first_res = self.query_adir_change_since(root, first_clock)
# TODO(T104564495): Watchman reports removed directories as file
# removal. This is caused by EdenFS's Journal not knowing if a
# file/directory is removed, and thus this is reported to Watchman as
# an UNKNOWN file, which for removed files/directory will be reported
# as a removed file.
self.assertQueryRepsonseEqual(
[{"name": "adir", "type": "f"}, {"name": "adir/file", "type": "f"}],
first_res["files"],
)
def test_eden_since_across_update(self) -> None:
root = self.makeEdenMount(populate)
repo = self.repoForPath(root)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
shutil.rmtree(os.path.join(root, "adir"))
# commit the removal so we can test the change across an update.
repo.hg("addremove")
repo.commit("removal commit.")
first_clock = self.watchmanCommand(
"clock",
root,
)["clock"]
repo.hg("prev") # add the files back across commits
first_res = self.query_adir_change_since(root, first_clock)
self.assertQueryRepsonseEqual(
[{"name": "adir", "type": "d"}, {"name": "adir/file", "type": "f"}],
first_res["files"],
)
second_clock = self.watchmanCommand(
"clock",
root,
)["clock"]
repo.hg("next") # remove the files again across commits
second_res = self.query_adir_change_since(root, second_clock)
self.assertQueryRepsonseEqual(
[{"name": "adir", "type": "d"}, {"name": "adir/file", "type": "f"}],
second_res["files"],
)
def test_eden_since_over_threshold(self) -> None:
# Make sure to have a large amount of files to dwarf Mercurial
# modifying a ton of files in the .hg directory.
root = self.makeEdenMount(
lambda repo: populate(
repo, 50, extra_files=[f"bigdir/{i}" for i in range(100)]
)
)
repo = self.repoForPath(root)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
clock = self.watchmanCommand(
"clock",
root,
)["clock"]
def do_query(clock):
return self.watchmanCommand(
"query",
root,
{
"expression": ["type", "f"],
"empty_on_fresh_instance": True,
"fields": ["name"],
"since": clock,
},
)
shutil.rmtree(os.path.join(root, "bigdir"))
repo.hg("addremove")
repo.commit("removal commit.")
clock = self.watchmanCommand(
"clock",
root,
)["clock"]
res = do_query(clock)
self.assertFalse(res["is_fresh_instance"])
clock = res["clock"]
repo.hg("prev")
# A couple of files changed, more than the threshold one 1 set in the
# configuration. This is expected to return a fresh instance.
res = do_query(clock)
self.assertTrue(res["is_fresh_instance"])
self.assertFileListsEqual([], res["files"])
clock = res["clock"]
# Make sure that we detect newly edited files afterwards.
with open(os.path.join(root, "hello"), "w") as f:
f.write("hello\n")
res = do_query(clock)
self.assertFalse(res["is_fresh_instance"])
self.assertQueryRepsonseEqual(["hello"], res["files"])
def test_eden_since_dotfiles_change(self) -> None:
root = self.makeEdenMount(
lambda repo: populate(
repo, extra_files=["dotfiles/.file1", "dotfiles/.file2"]
)
)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
res = self.watchmanCommand(
"query",
root,
{"expression": ["type", "f"], "fields": ["name"], "since": "c:0:0"},
)
self.assertTrue(res["is_fresh_instance"])
self.assertFileListContains(
res["files"],
["dotfiles/.file1", "dotfiles/.file2"],
)
clock = res["clock"]
self.touchRelative(root, "dotfiles/.file1")
res = self.watchmanCommand(
"query",
root,
{"expression": ["type", "f"], "fields": ["name"], "since": clock},
)
self.assertFileListsEqual(res["files"], ["dotfiles/.file1"])
def test_eden_since_fresh_instance_dotfiles(self) -> None:
root = self.makeEdenMount(
lambda repo: populate(
repo, extra_files=["dotfiles/.file1", "dotfiles/.file2"]
)
)
res = self.watchmanCommand("watch", root)
self.assertEqual("eden", res["watcher"])
res = self.watchmanCommand(
"query",
root,
{
"fields": ["name"],
"since": "c:0:0",
# Edge case: in the `since` generator, dotfiles are included
# even if the `glob` generator is explicitly configured to omit
# them.
"glob_includedotfiles": False,
},
)
self.assertTrue(res["is_fresh_instance"])
self.assertFileListContains(
res["files"],
["dotfiles/.file1", "dotfiles/.file2"],
)