mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
a21a5ad2fa
Resolves #1705 This PR adds the Deno APIs as a global namespace named `Deno`. For backwards compatibility, the ability to `import * from "deno"` is preserved. I have tried to convert every test and internal code the references the module to use the namespace instead, but because I didn't break compatibility I am not sure. On the REPL, `deno` no longer exists, replaced only with `Deno` to align with the regular runtime. The runtime type library includes both the namespace and module. This means it duplicates the whole type information. When we remove the functionality from the runtime, it will be a one line change to the library generator to remove the module definition from the type library. I marked a `TODO` in a couple places where to remove the `"deno"` module, but there are additional places I know I didn't mark.
194 lines
5.6 KiB
TypeScript
194 lines
5.6 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import { testPerm, assert, assertEqual } from "./test_util.ts";
|
|
|
|
testPerm({ net: true }, function netListenClose() {
|
|
const listener = Deno.listen("tcp", "127.0.0.1:4500");
|
|
listener.close();
|
|
});
|
|
|
|
testPerm({ net: true }, async function netCloseWhileAccept() {
|
|
const listener = Deno.listen("tcp", ":4501");
|
|
const p = listener.accept();
|
|
listener.close();
|
|
let err;
|
|
try {
|
|
await p;
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(!!err);
|
|
assertEqual(err.kind, Deno.ErrorKind.Other);
|
|
assertEqual(err.message, "Listener has been closed");
|
|
});
|
|
|
|
testPerm({ net: true }, async function netConcurrentAccept() {
|
|
const listener = Deno.listen("tcp", ":4502");
|
|
let acceptErrCount = 0;
|
|
const checkErr = e => {
|
|
assertEqual(e.kind, Deno.ErrorKind.Other);
|
|
if (e.message === "Listener has been closed") {
|
|
assertEqual(acceptErrCount, 1);
|
|
} else if (e.message === "Another accept task is ongoing") {
|
|
acceptErrCount++;
|
|
} else {
|
|
throw new Error("Unexpected error message");
|
|
}
|
|
};
|
|
const p = listener.accept().catch(checkErr);
|
|
const p1 = listener.accept().catch(checkErr);
|
|
await Promise.race([p, p1]);
|
|
listener.close();
|
|
await [p, p1];
|
|
assertEqual(acceptErrCount, 1);
|
|
});
|
|
|
|
testPerm({ net: true }, async function netDialListen() {
|
|
const listener = Deno.listen("tcp", ":4500");
|
|
listener.accept().then(async conn => {
|
|
await conn.write(new Uint8Array([1, 2, 3]));
|
|
conn.close();
|
|
});
|
|
const conn = await Deno.dial("tcp", "127.0.0.1:4500");
|
|
const buf = new Uint8Array(1024);
|
|
const readResult = await conn.read(buf);
|
|
assertEqual(3, readResult.nread);
|
|
assertEqual(1, buf[0]);
|
|
assertEqual(2, buf[1]);
|
|
assertEqual(3, buf[2]);
|
|
assert(conn.rid > 0);
|
|
|
|
// TODO Currently ReadResult does not properly transmit EOF in the same call.
|
|
// it requires a second call to get the EOF. Either ReadResult to be an
|
|
// integer in which 0 signifies EOF or the handler should be modified so that
|
|
// EOF is properly transmitted.
|
|
assertEqual(false, readResult.eof);
|
|
|
|
const readResult2 = await conn.read(buf);
|
|
assertEqual(true, readResult2.eof);
|
|
|
|
listener.close();
|
|
conn.close();
|
|
});
|
|
|
|
/* TODO Fix broken test.
|
|
testPerm({ net: true }, async function netCloseReadSuccess() {
|
|
const addr = "127.0.0.1:4500";
|
|
const listener = Deno.listen("tcp", addr);
|
|
const closeDeferred = deferred();
|
|
const closeReadDeferred = deferred();
|
|
listener.accept().then(async conn => {
|
|
await closeReadDeferred.promise;
|
|
await conn.write(new Uint8Array([1, 2, 3]));
|
|
const buf = new Uint8Array(1024);
|
|
const readResult = await conn.read(buf);
|
|
assertEqual(3, readResult.nread);
|
|
assertEqual(4, buf[0]);
|
|
assertEqual(5, buf[1]);
|
|
assertEqual(6, buf[2]);
|
|
conn.close();
|
|
closeDeferred.resolve();
|
|
});
|
|
const conn = await Deno.dial("tcp", addr);
|
|
conn.closeRead(); // closing read
|
|
closeReadDeferred.resolve();
|
|
const buf = new Uint8Array(1024);
|
|
const readResult = await conn.read(buf);
|
|
assertEqual(0, readResult.nread); // No error, read nothing
|
|
assertEqual(true, readResult.eof); // with immediate EOF
|
|
// Ensure closeRead does not impact write
|
|
await conn.write(new Uint8Array([4, 5, 6]));
|
|
await closeDeferred.promise;
|
|
listener.close();
|
|
conn.close();
|
|
});
|
|
*/
|
|
|
|
/* TODO Fix broken test.
|
|
testPerm({ net: true }, async function netDoubleCloseRead() {
|
|
const addr = "127.0.0.1:4500";
|
|
const listener = Deno.listen("tcp", addr);
|
|
const closeDeferred = deferred();
|
|
listener.accept().then(async conn => {
|
|
await conn.write(new Uint8Array([1, 2, 3]));
|
|
await closeDeferred.promise;
|
|
conn.close();
|
|
});
|
|
const conn = await Deno.dial("tcp", addr);
|
|
conn.closeRead(); // closing read
|
|
let err;
|
|
try {
|
|
// Duplicated close should throw error
|
|
conn.closeRead();
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(!!err);
|
|
assertEqual(err.kind, Deno.ErrorKind.NotConnected);
|
|
assertEqual(err.name, "NotConnected");
|
|
closeDeferred.resolve();
|
|
listener.close();
|
|
conn.close();
|
|
});
|
|
*/
|
|
|
|
/* TODO Fix broken test.
|
|
testPerm({ net: true }, async function netCloseWriteSuccess() {
|
|
const addr = "127.0.0.1:4500";
|
|
const listener = Deno.listen("tcp", addr);
|
|
const closeDeferred = deferred();
|
|
listener.accept().then(async conn => {
|
|
await conn.write(new Uint8Array([1, 2, 3]));
|
|
await closeDeferred.promise;
|
|
conn.close();
|
|
});
|
|
const conn = await Deno.dial("tcp", addr);
|
|
conn.closeWrite(); // closing write
|
|
const buf = new Uint8Array(1024);
|
|
// Check read not impacted
|
|
const readResult = await conn.read(buf);
|
|
assertEqual(3, readResult.nread);
|
|
assertEqual(1, buf[0]);
|
|
assertEqual(2, buf[1]);
|
|
assertEqual(3, buf[2]);
|
|
// Check write should be closed
|
|
let err;
|
|
try {
|
|
await conn.write(new Uint8Array([1, 2, 3]));
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(!!err);
|
|
assertEqual(err.kind, Deno.ErrorKind.BrokenPipe);
|
|
assertEqual(err.name, "BrokenPipe");
|
|
closeDeferred.resolve();
|
|
listener.close();
|
|
conn.close();
|
|
});
|
|
*/
|
|
|
|
/* TODO Fix broken test.
|
|
testPerm({ net: true }, async function netDoubleCloseWrite() {
|
|
const addr = "127.0.0.1:4500";
|
|
const listener = Deno.listen("tcp", addr);
|
|
const closeDeferred = deferred();
|
|
listener.accept().then(async conn => {
|
|
await closeDeferred.promise;
|
|
conn.close();
|
|
});
|
|
const conn = await Deno.dial("tcp", addr);
|
|
conn.closeWrite(); // closing write
|
|
let err;
|
|
try {
|
|
// Duplicated close should throw error
|
|
conn.closeWrite();
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(!!err);
|
|
assertEqual(err.kind, Deno.ErrorKind.NotConnected);
|
|
assertEqual(err.name, "NotConnected");
|
|
closeDeferred.resolve();
|
|
listener.close();
|
|
conn.close();
|
|
});
|
|
*/
|