2020-03-04 11:31:14 -05:00
|
|
|
import { assert, unitTest, assertMatch, unreachable } from "./test_util.ts";
|
2019-08-27 11:33:39 -04:00
|
|
|
|
|
|
|
const openErrorStackPattern = new RegExp(
|
|
|
|
`^.*
|
2020-06-05 11:37:40 -04:00
|
|
|
at unwrapResponse \\(.*dispatch_json\\.ts:.*\\)
|
|
|
|
at Object.sendAsync \\(.*dispatch_json\\.ts:.*\\)
|
|
|
|
at async Object\\.open \\(.*files\\.ts:.*\\).*$`,
|
2019-08-27 11:33:39 -04:00
|
|
|
"ms"
|
|
|
|
);
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true } },
|
|
|
|
async function sendAsyncStackTrace(): Promise<void> {
|
|
|
|
await Deno.open("nonexistent.txt")
|
|
|
|
.then(unreachable)
|
|
|
|
.catch((error): void => {
|
|
|
|
assertMatch(error.stack, openErrorStackPattern);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
2019-10-25 13:23:16 -04:00
|
|
|
|
2020-06-02 00:24:44 -04:00
|
|
|
declare global {
|
2020-06-19 05:05:37 -04:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
2020-06-02 00:24:44 -04:00
|
|
|
namespace Deno {
|
2020-06-19 05:05:37 -04:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
var core: any; // eslint-disable-line no-var
|
2020-06-02 00:24:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-20 09:38:34 -04:00
|
|
|
unitTest(function malformedJsonControlBuffer(): void {
|
2020-02-25 09:14:27 -05:00
|
|
|
const opId = Deno.core.ops()["op_open"];
|
|
|
|
const res = Deno.core.send(opId, new Uint8Array([1, 2, 3, 4, 5]));
|
2019-10-25 13:23:16 -04:00
|
|
|
const resText = new TextDecoder().decode(res);
|
2020-06-02 00:24:44 -04:00
|
|
|
const resJson = JSON.parse(resText);
|
2019-10-25 13:23:16 -04:00
|
|
|
assert(!resJson.ok);
|
|
|
|
assert(resJson.err);
|
|
|
|
});
|