test-message: Add setTimeout and nextTick message tests
authorisaacs <i@izs.me>
Thu, 27 Dec 2012 02:13:59 +0000 (18:13 -0800)
committerisaacs <i@izs.me>
Sat, 29 Dec 2012 18:37:31 +0000 (10:37 -0800)
test/message/nexttick_throw.js [new file with mode: 0644]
test/message/nexttick_throw.out [new file with mode: 0644]
test/message/timeout_throw.js [new file with mode: 0644]
test/message/timeout_throw.out [new file with mode: 0644]

diff --git a/test/message/nexttick_throw.js b/test/message/nexttick_throw.js
new file mode 100644 (file)
index 0000000..14b2990
--- /dev/null
@@ -0,0 +1,33 @@
+// Copyright Joyent, Inc. and other Node contributors.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to permit
+// persons to whom the Software is furnished to do so, subject to the
+// following conditions:
+//
+// The above copyright notice and this permission notice shall be included
+// in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+// USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+var common = require('../common');
+var assert = require('assert');
+
+process.nextTick(function() {
+  process.nextTick(function() {
+    process.nextTick(function() {
+      process.nextTick(function() {
+        undefined_reference_error_maker;
+      });
+    });
+  });
+});
diff --git a/test/message/nexttick_throw.out b/test/message/nexttick_throw.out
new file mode 100644 (file)
index 0000000..653eaab
--- /dev/null
@@ -0,0 +1,6 @@
+*test*message*nexttick_throw.js:*
+        undefined_reference_error_maker;
+        ^
+ReferenceError: undefined_reference_error_maker is not defined
+    at *test*message*nexttick_throw.js:*:*
+    at process._tickCallback (node.js:*:*)
diff --git a/test/message/timeout_throw.js b/test/message/timeout_throw.js
new file mode 100644 (file)
index 0000000..6704ee4
--- /dev/null
@@ -0,0 +1,27 @@
+// Copyright Joyent, Inc. and other Node contributors.
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to permit
+// persons to whom the Software is furnished to do so, subject to the
+// following conditions:
+//
+// The above copyright notice and this permission notice shall be included
+// in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+// USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+var common = require('../common');
+var assert = require('assert');
+
+setTimeout(function() {
+  undefined_reference_error_maker;
+});
diff --git a/test/message/timeout_throw.out b/test/message/timeout_throw.out
new file mode 100644 (file)
index 0000000..44659b9
--- /dev/null
@@ -0,0 +1,7 @@
+*test*message*timeout_throw.js:*
+  undefined_reference_error_maker;
+  ^
+ReferenceError: undefined_reference_error_maker is not defined
+    at null._onTimeout (*test*message*timeout_throw.js:*:*)
+    at Timer.list.ontimeout (timers.js:*:*)
+    at process._makeCallback (node.js:*:*)