mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
# Try First
|
|
|
|
missing socket.on('data') event when data received after socket.end():
|
|
- test-tls-net-socket-keepalive.js
|
|
|
|
connect() callback never called when invalid pfx provided:
|
|
- test-tls-invalid-pfx.js
|
|
|
|
# More
|
|
|
|
- bun gets error ECONNREFUSED but node gets write EPROTO & allows process exit: test-tls-junk-server
|
|
- different cipher list, support --tls-cipher-list: test-tls-cipher-list
|
|
- after 'client wrote data', bufferSize was 0 when node has it '1': test-tls-buffersize
|
|
- socket never closes? test-tls-js-stream.js
|
|
- no cipher match: test-tls-multi-pfx, test-tls-psk-errors
|
|
- missing addCACert: test-tls-addca
|
|
- node never trips `ret !== false` branch: test-tlsp-ause.js
|
|
- cluster stuff: test-tls-ticket-cluster
|
|
- checkServerIdentity called with 'undefined' for 'cert', throws: test-tls-empty-sni-context.js
|
|
- ServerHandlers handshake() doesn't disconect for non-ECONNRESEET error? test-tls-hello-parser-failure.js
|
|
- takes 18s in bun but 300ms in node: test-gc-tls-external-memory.js
|
|
|
|
createSecurePair not implemented:
|
|
These tests are removed in new node versions:
|
|
- test-tls-securepair-fiftharg.js
|
|
- test-tls-securepair-leak.js
|
|
|
|
http.request errors because it passes port but no host and path as `localhost:${port}`. _http_client concatenates
|
|
that to `localhost:${port}localhost:${port}` which is an invalid url
|
|
- test-tls-over-http-tunnel.js
|
|
|
|
passes on mac:
|
|
- test-tls-junk-closes-server
|
|
- test-tls-onread-static-buffer
|
|
- test-tls-lookup |