2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2024-03-16 00:14:47 -04:00
|
|
|
import { unwatchFile, watch, watchFile } from "node:fs";
|
2024-07-31 07:07:49 -04:00
|
|
|
import { watch as watchPromise } from "node:fs/promises";
|
|
|
|
import { assert, assertEquals } from "@std/assert";
|
2023-03-19 06:37:00 -04:00
|
|
|
|
|
|
|
function wait(time: number) {
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
setTimeout(resolve, time);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Deno.test({
|
|
|
|
name: "watching a file",
|
|
|
|
async fn() {
|
|
|
|
const file = Deno.makeTempFileSync();
|
2023-07-04 11:27:04 -04:00
|
|
|
const result: Array<[string, string | null]> = [];
|
2023-03-19 06:37:00 -04:00
|
|
|
const watcher = watch(
|
|
|
|
file,
|
|
|
|
(eventType, filename) => result.push([eventType, filename]),
|
|
|
|
);
|
|
|
|
await wait(100);
|
|
|
|
Deno.writeTextFileSync(file, "something");
|
|
|
|
await wait(100);
|
|
|
|
watcher.close();
|
|
|
|
await wait(100);
|
|
|
|
assertEquals(result.length >= 1, true);
|
|
|
|
},
|
|
|
|
});
|
2024-03-16 00:14:47 -04:00
|
|
|
|
|
|
|
Deno.test({
|
|
|
|
name: "watching a file with options",
|
|
|
|
async fn() {
|
|
|
|
const file = Deno.makeTempFileSync();
|
|
|
|
watchFile(
|
|
|
|
file,
|
|
|
|
() => {},
|
|
|
|
);
|
|
|
|
await wait(100);
|
|
|
|
unwatchFile(file);
|
|
|
|
},
|
|
|
|
});
|
2024-03-20 01:49:53 -04:00
|
|
|
|
|
|
|
Deno.test({
|
|
|
|
name: "watch.unref() should work",
|
|
|
|
sanitizeOps: false,
|
|
|
|
sanitizeResources: false,
|
|
|
|
async fn() {
|
|
|
|
const file = Deno.makeTempFileSync();
|
|
|
|
const watcher = watch(file, () => {});
|
|
|
|
// Wait for the watcher to be initialized
|
|
|
|
await wait(10);
|
|
|
|
// @ts-ignore node types are outdated in deno.
|
|
|
|
watcher.unref();
|
|
|
|
},
|
|
|
|
});
|
2024-07-31 07:07:49 -04:00
|
|
|
|
|
|
|
Deno.test({
|
|
|
|
name: "node [fs/promises] watch should return async iterable",
|
|
|
|
sanitizeOps: false,
|
|
|
|
sanitizeResources: false,
|
|
|
|
async fn() {
|
|
|
|
const file = Deno.makeTempFileSync();
|
|
|
|
Deno.writeTextFileSync(file, "foo");
|
|
|
|
|
|
|
|
const result: { eventType: string; filename: string | null }[] = [];
|
|
|
|
|
|
|
|
const controller = new AbortController();
|
|
|
|
const watcher = watchPromise(file, {
|
|
|
|
// Node types resolved by the LSP clash with ours
|
|
|
|
// deno-lint-ignore no-explicit-any
|
|
|
|
signal: controller.signal as any,
|
|
|
|
});
|
|
|
|
|
|
|
|
const deferred = Promise.withResolvers<void>();
|
|
|
|
let stopLength = 0;
|
|
|
|
setTimeout(async () => {
|
|
|
|
Deno.writeTextFileSync(file, "something");
|
|
|
|
controller.abort();
|
|
|
|
stopLength = result.length;
|
|
|
|
await wait(100);
|
|
|
|
Deno.writeTextFileSync(file, "something else");
|
|
|
|
await wait(100);
|
|
|
|
deferred.resolve();
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
for await (const event of watcher) {
|
|
|
|
result.push(event);
|
|
|
|
}
|
|
|
|
await deferred.promise;
|
|
|
|
|
|
|
|
assertEquals(result.length, stopLength);
|
|
|
|
assert(
|
|
|
|
result.every((item) =>
|
|
|
|
typeof item.eventType === "string" && typeof item.filename === "string"
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|