1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
import { expect, it } from "bun:test";
import { bunExe } from "../bunExe";
import { connect, spawn } from "bun";
it("should keep process alive only when active", async () => {
const { exited, stdout, stderr } = spawn({
cmd: [bunExe(), "echo.js"],
cwd: import.meta.dir,
stdout: "pipe",
stdin: null,
stderr: "pipe",
env: {
BUN_DEBUG_QUIET_LOGS: 1,
},
});
expect(await exited).toBe(0);
expect(await new Response(stderr).text()).toBe("");
var lines = (await new Response(stdout).text()).split(/\r?\n/);
expect(
lines.filter(function (line) {
return line.startsWith("[Server]");
}),
).toEqual(["[Server] OPENED", "[Server] GOT request", "[Server] CLOSED"]);
expect(
lines.filter(function (line) {
return line.startsWith("[Client]");
}),
).toEqual(["[Client] OPENED", "[Client] GOT response", "[Client] CLOSED"]);
});
it("listen() should throw connection error for invalid host", () => {
expect(() => {
const handlers = {
open(socket) {
socket.close();
},
data() {},
};
Bun.listen({
port: 4423,
hostname: "whatishtis.com",
socket: handlers,
});
}).toThrow();
});
it("should reject on connection error, calling both connectError() and rejecting the promise", (done) => {
var data = {};
connect({
data,
hostname: "localhost",
port: 55555,
socket: {
connectError(socket, error) {
expect(socket).toBeDefined();
expect(socket.data).toBe(data);
expect(error).toBeDefined();
expect(error.name).toBe("SystemError");
expect(error.message).toBe("Failed to connect");
},
data() {
done(new Error("Unexpected data()"));
},
drain() {
done(new Error("Unexpected drain()"));
},
close() {
done(new Error("Unexpected close()"));
},
end() {
done(new Error("Unexpected end()"));
},
error() {
done(new Error("Unexpected error()"));
},
open() {
done(new Error("Unexpected open()"));
},
},
}).then(
() => done(new Error("Promise should reject instead")),
(err) => {
expect(err).toBeDefined();
expect(err.name).toBe("SystemError");
expect(err.message).toBe("Failed to connect");
done();
},
);
});
// this also tests we mark the promise as handled if connectError() is called
it("should handle connection error", (done) => {
var data = {};
connect({
data,
hostname: "localhost",
port: 55555,
socket: {
connectError(socket, error) {
expect(socket).toBeDefined();
expect(socket.data).toBe(data);
expect(error).toBeDefined();
expect(error.name).toBe("SystemError");
expect(error.message).toBe("Failed to connect");
done();
},
data() {
done(new Error("Unexpected data()"));
},
drain() {
done(new Error("Unexpected drain()"));
},
close() {
done(new Error("Unexpected close()"));
},
end() {
done(new Error("Unexpected end()"));
},
error() {
done(new Error("Unexpected error()"));
},
open() {
done(new Error("Unexpected open()"));
},
},
});
});
|