summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-client-priority-before-connect.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http2-client-priority-before-connect.js')
-rw-r--r--test/parallel/test-http2-client-priority-before-connect.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/parallel/test-http2-client-priority-before-connect.js b/test/parallel/test-http2-client-priority-before-connect.js
new file mode 100644
index 0000000000..68933b2d83
--- /dev/null
+++ b/test/parallel/test-http2-client-priority-before-connect.js
@@ -0,0 +1,37 @@
+// Flags: --expose-http2
+'use strict';
+
+const common = require('../common');
+const h2 = require('http2');
+
+const server = h2.createServer();
+
+// we use the lower-level API here
+server.on('stream', common.mustCall(onStream));
+
+function onStream(stream, headers, flags) {
+ stream.respond({
+ 'content-type': 'text/html',
+ ':status': 200
+ });
+ stream.end('hello world');
+}
+
+server.listen(0);
+
+server.on('listening', common.mustCall(() => {
+
+ const client = h2.connect(`http://localhost:${server.address().port}`);
+
+ const req = client.request({ ':path': '/' });
+ client.priority(req, {});
+
+ req.on('response', common.mustCall());
+ req.resume();
+ req.on('end', common.mustCall(() => {
+ server.close();
+ client.destroy();
+ }));
+ req.end();
+
+}));