2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-04 11:31:14 -05:00
|
|
|
import { unitTest, assert } from "./test_util.ts";
|
2019-01-16 17:57:15 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function globalThisExists(): void {
|
2019-01-16 17:57:15 -05:00
|
|
|
assert(globalThis != null);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function windowExists(): void {
|
2019-01-16 17:57:15 -05:00
|
|
|
assert(window != null);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function selfExists(): void {
|
2020-02-26 05:49:38 -05:00
|
|
|
assert(self != null);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function windowWindowExists(): void {
|
2019-01-16 17:57:15 -05:00
|
|
|
assert(window.window === window);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function windowSelfExists(): void {
|
2020-02-26 05:49:38 -05:00
|
|
|
assert(window.self === window);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function globalThisEqualsWindow(): void {
|
2019-01-16 17:57:15 -05:00
|
|
|
assert(globalThis === window);
|
|
|
|
});
|
2019-02-05 08:12:58 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function globalThisEqualsSelf(): void {
|
2020-02-26 05:49:38 -05:00
|
|
|
assert(globalThis === self);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function DenoNamespaceExists(): void {
|
2019-02-12 10:08:56 -05:00
|
|
|
assert(Deno != null);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function DenoNamespaceEqualsWindowDeno(): void {
|
2019-02-12 10:08:56 -05:00
|
|
|
assert(Deno === window.Deno);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function DenoNamespaceIsFrozen(): void {
|
2019-02-12 10:08:56 -05:00
|
|
|
assert(Object.isFrozen(Deno));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function webAssemblyExists(): void {
|
2019-02-05 08:12:58 -05:00
|
|
|
assert(typeof WebAssembly.compile === "function");
|
|
|
|
});
|
2019-04-19 20:39:54 -04:00
|
|
|
|
2020-06-02 00:24:44 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-namespace, @typescript-eslint/no-explicit-any,no-var */
|
|
|
|
declare global {
|
2020-06-19 05:05:37 -04:00
|
|
|
// deno-lint-ignore no-namespace
|
2020-06-02 00:24:44 -04:00
|
|
|
namespace Deno {
|
2020-06-19 05:05:37 -04:00
|
|
|
// deno-lint-ignore no-explicit-any
|
2020-06-02 00:24:44 -04:00
|
|
|
var core: any;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* eslint-enable */
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function DenoNamespaceImmutable(): void {
|
2019-04-19 20:39:54 -04:00
|
|
|
const denoCopy = window.Deno;
|
|
|
|
try {
|
2020-06-02 00:24:44 -04:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
(Deno as any) = 1;
|
2020-06-19 05:05:37 -04:00
|
|
|
} catch {
|
|
|
|
// pass
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
assert(denoCopy === Deno);
|
|
|
|
try {
|
2020-06-02 00:24:44 -04:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
(window as any).Deno = 1;
|
2020-06-19 05:05:37 -04:00
|
|
|
} catch {
|
|
|
|
// pass
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
assert(denoCopy === Deno);
|
|
|
|
try {
|
|
|
|
delete window.Deno;
|
2020-06-19 05:05:37 -04:00
|
|
|
} catch {
|
|
|
|
// pass
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
assert(denoCopy === Deno);
|
|
|
|
|
|
|
|
const { readFile } = Deno;
|
|
|
|
try {
|
2020-06-02 00:24:44 -04:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
(Deno as any).readFile = 1;
|
2020-06-19 05:05:37 -04:00
|
|
|
} catch {
|
|
|
|
// pass
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
assert(readFile === Deno.readFile);
|
|
|
|
try {
|
|
|
|
delete window.Deno.readFile;
|
2020-06-19 05:05:37 -04:00
|
|
|
} catch {
|
|
|
|
// pass
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
assert(readFile === Deno.readFile);
|
|
|
|
|
|
|
|
const { print } = Deno.core;
|
|
|
|
try {
|
|
|
|
Deno.core.print = 1;
|
2020-06-19 05:05:37 -04:00
|
|
|
} catch {
|
|
|
|
// pass
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
assert(print === Deno.core.print);
|
|
|
|
try {
|
|
|
|
delete Deno.core.print;
|
2020-06-19 05:05:37 -04:00
|
|
|
} catch {
|
|
|
|
// pass
|
|
|
|
}
|
2019-04-19 20:39:54 -04:00
|
|
|
assert(print === Deno.core.print);
|
|
|
|
});
|
2019-08-31 15:16:30 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function windowQueueMicrotask(): Promise<void> {
|
2019-08-31 15:16:30 -04:00
|
|
|
let resolve1: () => void | undefined;
|
|
|
|
let resolve2: () => void | undefined;
|
|
|
|
let microtaskDone = false;
|
2019-11-13 13:42:34 -05:00
|
|
|
const p1 = new Promise((res): void => {
|
|
|
|
resolve1 = (): void => {
|
|
|
|
microtaskDone = true;
|
|
|
|
res();
|
|
|
|
};
|
|
|
|
});
|
|
|
|
const p2 = new Promise((res): void => {
|
|
|
|
resolve2 = (): void => {
|
|
|
|
assert(microtaskDone);
|
|
|
|
res();
|
|
|
|
};
|
|
|
|
});
|
2019-08-31 15:16:30 -04:00
|
|
|
window.queueMicrotask(resolve1!);
|
|
|
|
setTimeout(resolve2!, 0);
|
|
|
|
await p1;
|
|
|
|
await p2;
|
|
|
|
});
|