2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-06-24 18:57:08 -04:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
2021-09-22 09:21:11 -04:00
|
|
|
assertRejects,
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows,
|
|
|
|
} from "./test_util.ts";
|
2018-09-12 22:04:45 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { write: true } }, function makeTempDirSyncSuccess() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const dir1 = Deno.makeTempDirSync({ prefix: "hello", suffix: "world" });
|
|
|
|
const dir2 = Deno.makeTempDirSync({ prefix: "hello", suffix: "world" });
|
2018-09-12 22:04:45 -04:00
|
|
|
// Check that both dirs are different.
|
2018-10-05 07:29:55 -04:00
|
|
|
assert(dir1 !== dir2);
|
2018-09-12 22:04:45 -04: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-12 10:08:56 -05:00
|
|
|
const dir3 = Deno.makeTempDirSync({ dir: dir1 });
|
2018-09-12 22:04:45 -04:00
|
|
|
assert(dir3.startsWith(dir1));
|
|
|
|
assert(/^[\\\/]/.test(dir3.slice(dir1.length)));
|
|
|
|
// Check that creating a temp dir inside a nonexisting directory fails.
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.makeTempDirSync({ dir: "/baddir" });
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2018-09-12 22:04:45 -04:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04: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 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { write: false } }, function makeTempDirSyncPerm() {
|
2018-09-12 22:04:45 -04:00
|
|
|
// makeTempDirSync should require write permissions (for now).
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.makeTempDirSync({ dir: "/baddir" });
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2018-09-12 22:04:45 -04:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function makeTempDirSuccess() {
|
2020-03-04 11:31:14 -05: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 09:21:11 -04:00
|
|
|
await assertRejects(async () => {
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.makeTempDir({ dir: "/baddir" });
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2020-02-18 14:45:59 -05:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04: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 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { write: true } }, function makeTempFileSyncSuccess() {
|
2020-02-18 14:45:59 -05: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-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-02-18 14:45:59 -05:00
|
|
|
Deno.makeTempFileSync({ dir: "/baddir" });
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2020-02-18 14:45:59 -05:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04: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 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { write: false } }, function makeTempFileSyncPerm() {
|
2020-02-18 14:45:59 -05:00
|
|
|
// makeTempFileSync should require write permissions (for now).
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-02-18 14:45:59 -05:00
|
|
|
Deno.makeTempFileSync({ dir: "/baddir" });
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-02-18 14:45:59 -05:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function makeTempFileSuccess() {
|
2020-03-04 11:31:14 -05: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 09:21:11 -04:00
|
|
|
await assertRejects(async () => {
|
2020-03-04 11:31:14 -05:00
|
|
|
await Deno.makeTempFile({ dir: "/baddir" });
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2020-03-11 15:05:42 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04: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
|
|
|
);
|