Skip to content

Commit 6d16022

Browse files
trivikrMylesBorins
authored andcommitted
test: http2 add timeout no callback test case
Refs: #14985 PR-URL: #16082 Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent c07d757 commit 6d16022

File tree

1 file changed

+26
-25
lines changed

1 file changed

+26
-25
lines changed

test/parallel/test-http2-server-settimeout-no-callback.js

+26-25
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,39 @@ const common = require('../common');
55
if (!common.hasCrypto)
66
common.skip('missing crypto');
77

8+
const assert = require('assert');
89
const http2 = require('http2');
910

1011
// Verify that setTimeout callback verifications work correctly
12+
const verifyCallbacks = (server) => {
13+
const testTimeout = 10;
14+
const notFunctions = [true, 1, {}, [], null, 'test'];
15+
const invalidCallBackError = {
16+
type: TypeError,
17+
code: 'ERR_INVALID_CALLBACK',
18+
message: 'callback must be a function'
19+
};
1120

21+
notFunctions.forEach((notFunction) =>
22+
common.expectsError(
23+
() => server.setTimeout(testTimeout, notFunction),
24+
invalidCallBackError
25+
)
26+
);
27+
28+
// No callback
29+
const returnedVal = server.setTimeout(testTimeout);
30+
assert.strictEqual(returnedVal.timeout, testTimeout);
31+
};
32+
33+
// Test with server
1234
{
1335
const server = http2.createServer();
14-
common.expectsError(
15-
() => server.setTimeout(10, 'test'),
16-
{
17-
code: 'ERR_INVALID_CALLBACK',
18-
type: TypeError
19-
});
20-
common.expectsError(
21-
() => server.setTimeout(10, 1),
22-
{
23-
code: 'ERR_INVALID_CALLBACK',
24-
type: TypeError
25-
});
36+
verifyCallbacks(server);
2637
}
2738

39+
// Test with secure server
2840
{
29-
const server = http2.createSecureServer({});
30-
common.expectsError(
31-
() => server.setTimeout(10, 'test'),
32-
{
33-
code: 'ERR_INVALID_CALLBACK',
34-
type: TypeError
35-
});
36-
common.expectsError(
37-
() => server.setTimeout(10, 1),
38-
{
39-
code: 'ERR_INVALID_CALLBACK',
40-
type: TypeError
41-
});
41+
const secureServer = http2.createSecureServer({});
42+
verifyCallbacks(secureServer);
4243
}

0 commit comments

Comments
 (0)