summaryrefslogtreecommitdiff
path: root/test/async-hooks/test-udpsendwrap.js
diff options
context:
space:
mode:
authorThorsten Lorenz <thlorenz@gmx.de>2016-11-22 13:13:44 -0300
committerAnna Henningsen <anna@addaleax.net>2017-05-10 22:22:33 +0200
commite3e56f1d71fd496c8a25d6b4b50e51d4a682d184 (patch)
tree764b9470be5afecee9027acccbbf84e6e590bac9 /test/async-hooks/test-udpsendwrap.js
parent4a7233c1788334c171d2280026333242df7d37af (diff)
downloadandroid-node-v8-e3e56f1d71fd496c8a25d6b4b50e51d4a682d184.tar.gz
android-node-v8-e3e56f1d71fd496c8a25d6b4b50e51d4a682d184.tar.bz2
android-node-v8-e3e56f1d71fd496c8a25d6b4b50e51d4a682d184.zip
test: adding tests for initHooks API
Async wrap providers tested: - crypto.randomBytes - crypto.pbkdf2 - fs event wrap - fsreqwrap access - fsreqwrap readFile - getaddrinforeq wrap - getnameinforeq wrap - pipe connect wrap - query wrap - pipewrap - processwrap - shutdown wrap - tcpwrap - udpwrap - send wrap - detailed signal wrap - statwatcher - timerwrap via setTimeout - timerwrap via setInterval - for Immediate - http parser request - http parser response - connection via ssl server - tls wrap - write wrap - ttywrap via readstream - ttywrap via wriream - zctx via zlib binding deflate Embedder API: - async-event tests - one test looks at the happy paths - another ensures that in cases of events emitted in an order that doesn't make sense, the order is enforced by async hooks throwing a meaningful error - embedder enforcement tests are split up since async hook stack corruption now the process - therefore we launch a child and check for error output of the offending code Additional tests: - tests that show that we can enable/disable hooks inside their lifetime events - tests that verify the graph of resources triggering the creation of other resources Test Helpers: - init-hooks: - returns one collector instance - when created an async hook is created and the lifetime events are registered to call the appropriate collector functions - the collector also exposes `enable` and `disable` functions which call through to the async hook - hook checks: - checks invocations of life time hooks against the actual invocations that were collected - in some cases like `destroy` a min/max range of invocations can be supplied since in these cases the exact number is non-deterministic - verify graph: - verifies the triggerIds of specific async resources are as expected, i.e. the creation of resources was triggered by the resource we expect - includes a printGraph function to generate easily readable test input for verify graph - both functions prune TickObjects to create less brittle and easier to understand tests PR-URL: https://github.com/nodejs/node/pull/12892 Ref: https://github.com/nodejs/node/pull/11883 Ref: https://github.com/nodejs/node/pull/8531 Reviewed-By: Andreas Madsen <amwebdk@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'test/async-hooks/test-udpsendwrap.js')
-rw-r--r--test/async-hooks/test-udpsendwrap.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/test/async-hooks/test-udpsendwrap.js b/test/async-hooks/test-udpsendwrap.js
new file mode 100644
index 0000000000..72b12c1e21
--- /dev/null
+++ b/test/async-hooks/test-udpsendwrap.js
@@ -0,0 +1,58 @@
+'use strict';
+
+const common = require('../common');
+const assert = require('assert');
+const initHooks = require('./init-hooks');
+const { checkInvocations } = require('./hook-checks');
+const dgram = require('dgram');
+
+const hooks = initHooks();
+
+hooks.enable();
+let send;
+
+const sock = dgram
+ .createSocket('udp4')
+ .on('listening', common.mustCall(onlistening))
+ .bind();
+
+function onlistening() {
+ sock.send(
+ new Buffer(2), 0, 2, sock.address().port,
+ undefined, common.mustCall(onsent));
+
+ // init not called synchronously because dns lookup alwasy wraps
+ // callback in a next tick even if no lookup is needed
+ // TODO (trevnorris) submit patch to fix creation of tick objects and instead
+ // create the send wrap synchronously.
+ assert.strictEqual(
+ hooks.activitiesOfTypes('UDPSENDWRAP').length, 0,
+ 'no udpsendwrap after sock connected and sock.send called');
+}
+
+function onsent() {
+ const as = hooks.activitiesOfTypes('UDPSENDWRAP');
+ send = as[0];
+
+ assert.strictEqual(as.length, 1,
+ 'one UDPSENDWRAP created synchronously when message sent');
+ assert.strictEqual(send.type, 'UDPSENDWRAP', 'send wrap');
+ assert.strictEqual(typeof send.uid, 'number', 'uid is a number');
+ assert.strictEqual(typeof send.triggerId, 'number', 'triggerId is a number');
+ checkInvocations(send, { init: 1, before: 1 }, 'when message sent');
+
+ sock.close(common.mustCall(onsockClosed));
+}
+
+function onsockClosed() {
+ checkInvocations(send, { init: 1, before: 1, after: 1 }, 'when sock closed');
+}
+
+process.on('exit', onexit);
+
+function onexit() {
+ hooks.disable();
+ hooks.sanityCheck('UDPSENDWRAP');
+ checkInvocations(send, { init: 1, before: 1, after: 1, destroy: 1 },
+ 'when process exits');
+}