2020-02-11 11:24:27 -05:00
|
|
|
const { test } = Deno;
|
2019-11-18 18:30:24 -05:00
|
|
|
import { assert, assertThrows, assertEquals } from "../testing/asserts.ts";
|
|
|
|
import { process } from "./process.ts";
|
|
|
|
|
|
|
|
// NOTE: Deno.execPath() (and thus process.argv) currently requires --allow-env
|
2020-04-29 14:48:19 -04:00
|
|
|
// (Also Deno.env.toObject() (and process.env) requires --allow-env but it's more obvious)
|
2019-11-18 18:30:24 -05:00
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.cwd and process.chdir success",
|
|
|
|
fn() {
|
|
|
|
// this should be run like other tests from directory up
|
|
|
|
assert(process.cwd().match(/\Wstd$/));
|
|
|
|
process.chdir("node");
|
|
|
|
assert(process.cwd().match(/\Wnode$/));
|
|
|
|
process.chdir("..");
|
|
|
|
assert(process.cwd().match(/\Wstd$/));
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.chdir failure",
|
|
|
|
fn() {
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
process.chdir("non-existent-directory-name");
|
|
|
|
},
|
2020-02-24 15:48:35 -05:00
|
|
|
Deno.errors.NotFound,
|
2019-11-18 18:30:24 -05:00
|
|
|
"file"
|
|
|
|
// On every OS Deno returns: "No such file" except for Windows, where it's:
|
|
|
|
// "The system cannot find the file specified. (os error 2)" so "file" is
|
|
|
|
// the only common string here.
|
|
|
|
);
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.version",
|
|
|
|
fn() {
|
|
|
|
assertEquals(typeof process, "object");
|
|
|
|
assertEquals(typeof process.version, "string");
|
|
|
|
assertEquals(typeof process.versions, "object");
|
|
|
|
assertEquals(typeof process.versions.node, "string");
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.platform",
|
|
|
|
fn() {
|
|
|
|
assertEquals(typeof process.platform, "string");
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.arch",
|
|
|
|
fn() {
|
|
|
|
assertEquals(typeof process.arch, "string");
|
|
|
|
// TODO(rsp): make sure that the arch strings should be the same in Node and Deno:
|
|
|
|
assertEquals(process.arch, Deno.build.arch);
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.pid",
|
|
|
|
fn() {
|
|
|
|
assertEquals(typeof process.pid, "number");
|
|
|
|
assertEquals(process.pid, Deno.pid);
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.on",
|
|
|
|
fn() {
|
|
|
|
assertEquals(typeof process.on, "function");
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
process.on("uncaughtException", (_err: Error) => {});
|
|
|
|
},
|
|
|
|
Error,
|
|
|
|
"implemented"
|
|
|
|
);
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.argv",
|
|
|
|
fn() {
|
|
|
|
assert(Array.isArray(process.argv));
|
|
|
|
assert(
|
|
|
|
process.argv[0].match(/[^/\\]*deno[^/\\]*$/),
|
|
|
|
"deno included in the file name of argv[0]"
|
|
|
|
);
|
|
|
|
// we cannot test for anything else (we see test runner arguments here)
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test({
|
|
|
|
name: "process.env",
|
|
|
|
fn() {
|
|
|
|
assertEquals(typeof process.env.PATH, "string");
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-11-18 18:30:24 -05:00
|
|
|
});
|