2022-01-20 16:10:16 +09:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-06-25 06:57:08 +08:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
2021-09-22 21:21:11 +08:00
|
|
|
assertRejects,
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows,
|
|
|
|
} from "./test_util.ts";
|
2018-09-13 11:04:45 +09:00
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { write: true } }, function makeTempDirSyncSuccess() {
|
2019-02-13 02:08:56 +11:00
|
|
|
const dir1 = Deno.makeTempDirSync({ prefix: "hello", suffix: "world" });
|
|
|
|
const dir2 = Deno.makeTempDirSync({ prefix: "hello", suffix: "world" });
|
2018-09-13 11:04:45 +09:00
|
|
|
// Check that both dirs are different.
|
2018-10-05 07:29:55 -04:00
|
|
|
assert(dir1 !== dir2);
|
2018-09-13 11:04:45 +09:00
|
|
|
for (const dir of [dir1, dir2]) {
|
|
|
|
// Check that the prefix and suffix are applied.
|
|
|
|
const lastPart = dir.replace(/^.*[\\\/]/, "");
|
|
|
|
assert(lastPart.startsWith("hello"));
|
|
|
|
assert(lastPart.endsWith("world"));
|
|
|
|
}
|
|
|
|
// Check that the `dir` option works.
|
2019-02-13 02:08:56 +11:00
|
|
|
const dir3 = Deno.makeTempDirSync({ dir: dir1 });
|
2018-09-13 11:04:45 +09:00
|
|
|
assert(dir3.startsWith(dir1));
|
|
|
|
assert(/^[\\\/]/.test(dir3.slice(dir1.length)));
|
|
|
|
// Check that creating a temp dir inside a nonexisting directory fails.
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows(() => {
|
2019-02-13 02:08:56 +11:00
|
|
|
Deno.makeTempDirSync({ dir: "/baddir" });
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.NotFound);
|
2018-09-13 11:04:45 +09:00
|
|
|
});
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
function makeTempDirSyncMode() {
|
2020-03-11 15:05:42 -04:00
|
|
|
const path = Deno.makeTempDirSync();
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2020-03-11 15:05:42 -04:00
|
|
|
assertEquals(pathInfo.mode! & 0o777, 0o700 & ~Deno.umask());
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-11 15:05:42 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { write: false } }, function makeTempDirSyncPerm() {
|
2018-09-13 11:04:45 +09:00
|
|
|
// makeTempDirSync should require write permissions (for now).
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows(() => {
|
2019-02-13 02:08:56 +11:00
|
|
|
Deno.makeTempDirSync({ dir: "/baddir" });
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2018-09-13 11:04:45 +09:00
|
|
|
});
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { write: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
async function makeTempDirSuccess() {
|
2020-03-04 17:31:14 +01:00
|
|
|
const dir1 = await Deno.makeTempDir({ prefix: "hello", suffix: "world" });
|
|
|
|
const dir2 = await Deno.makeTempDir({ prefix: "hello", suffix: "world" });
|
|
|
|
// Check that both dirs are different.
|
|
|
|
assert(dir1 !== dir2);
|
|
|
|
for (const dir of [dir1, dir2]) {
|
|
|
|
// Check that the prefix and suffix are applied.
|
|
|
|
const lastPart = dir.replace(/^.*[\\\/]/, "");
|
|
|
|
assert(lastPart.startsWith("hello"));
|
|
|
|
assert(lastPart.endsWith("world"));
|
|
|
|
}
|
|
|
|
// Check that the `dir` option works.
|
|
|
|
const dir3 = await Deno.makeTempDir({ dir: dir1 });
|
|
|
|
assert(dir3.startsWith(dir1));
|
|
|
|
assert(/^[\\\/]/.test(dir3.slice(dir1.length)));
|
|
|
|
// Check that creating a temp dir inside a nonexisting directory fails.
|
2021-09-22 21:21:11 +08:00
|
|
|
await assertRejects(async () => {
|
2020-03-04 17:31:14 +01:00
|
|
|
await Deno.makeTempDir({ dir: "/baddir" });
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.NotFound);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 17:31:14 +01:00
|
|
|
);
|
2020-02-18 11:45:59 -08:00
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
async function makeTempDirMode() {
|
2020-03-11 15:05:42 -04:00
|
|
|
const path = await Deno.makeTempDir();
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2020-03-11 15:05:42 -04:00
|
|
|
assertEquals(pathInfo.mode! & 0o777, 0o700 & ~Deno.umask());
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-11 15:05:42 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { write: true } }, function makeTempFileSyncSuccess() {
|
2020-02-18 11:45:59 -08:00
|
|
|
const file1 = Deno.makeTempFileSync({ prefix: "hello", suffix: "world" });
|
|
|
|
const file2 = Deno.makeTempFileSync({ prefix: "hello", suffix: "world" });
|
|
|
|
// Check that both dirs are different.
|
|
|
|
assert(file1 !== file2);
|
|
|
|
for (const dir of [file1, file2]) {
|
|
|
|
// Check that the prefix and suffix are applied.
|
|
|
|
const lastPart = dir.replace(/^.*[\\\/]/, "");
|
|
|
|
assert(lastPart.startsWith("hello"));
|
|
|
|
assert(lastPart.endsWith("world"));
|
|
|
|
}
|
|
|
|
// Check that the `dir` option works.
|
|
|
|
const dir = Deno.makeTempDirSync({ prefix: "tempdir" });
|
|
|
|
const file3 = Deno.makeTempFileSync({ dir });
|
|
|
|
assert(file3.startsWith(dir));
|
|
|
|
assert(/^[\\\/]/.test(file3.slice(dir.length)));
|
|
|
|
// Check that creating a temp file inside a nonexisting directory fails.
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows(() => {
|
2020-02-18 11:45:59 -08:00
|
|
|
Deno.makeTempFileSync({ dir: "/baddir" });
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.NotFound);
|
2020-02-18 11:45:59 -08:00
|
|
|
});
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
function makeTempFileSyncMode() {
|
2020-03-11 15:05:42 -04:00
|
|
|
const path = Deno.makeTempFileSync();
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2020-03-11 15:05:42 -04:00
|
|
|
assertEquals(pathInfo.mode! & 0o777, 0o600 & ~Deno.umask());
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-11 15:05:42 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { write: false } }, function makeTempFileSyncPerm() {
|
2020-02-18 11:45:59 -08:00
|
|
|
// makeTempFileSync should require write permissions (for now).
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows(() => {
|
2020-02-18 11:45:59 -08:00
|
|
|
Deno.makeTempFileSync({ dir: "/baddir" });
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-02-18 11:45:59 -08:00
|
|
|
});
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { write: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
async function makeTempFileSuccess() {
|
2020-03-04 17:31:14 +01:00
|
|
|
const file1 = await Deno.makeTempFile({ prefix: "hello", suffix: "world" });
|
|
|
|
const file2 = await Deno.makeTempFile({ prefix: "hello", suffix: "world" });
|
|
|
|
// Check that both dirs are different.
|
|
|
|
assert(file1 !== file2);
|
|
|
|
for (const dir of [file1, file2]) {
|
|
|
|
// Check that the prefix and suffix are applied.
|
|
|
|
const lastPart = dir.replace(/^.*[\\\/]/, "");
|
|
|
|
assert(lastPart.startsWith("hello"));
|
|
|
|
assert(lastPart.endsWith("world"));
|
|
|
|
}
|
|
|
|
// Check that the `dir` option works.
|
|
|
|
const dir = Deno.makeTempDirSync({ prefix: "tempdir" });
|
|
|
|
const file3 = await Deno.makeTempFile({ dir });
|
|
|
|
assert(file3.startsWith(dir));
|
|
|
|
assert(/^[\\\/]/.test(file3.slice(dir.length)));
|
|
|
|
// Check that creating a temp file inside a nonexisting directory fails.
|
2021-09-22 21:21:11 +08:00
|
|
|
await assertRejects(async () => {
|
2020-03-04 17:31:14 +01:00
|
|
|
await Deno.makeTempFile({ dir: "/baddir" });
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.NotFound);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 17:31:14 +01:00
|
|
|
);
|
2020-03-11 15:05:42 -04:00
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
async function makeTempFileMode() {
|
2020-03-11 15:05:42 -04:00
|
|
|
const path = await Deno.makeTempFile();
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2020-03-11 15:05:42 -04:00
|
|
|
assertEquals(pathInfo.mode! & 0o777, 0o600 & ~Deno.umask());
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-11 15:05:42 -04:00
|
|
|
);
|