Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-vm-timeout-rethrow.js « sequential « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 547ed2f8d6205bd337598beec6608b44c90ebb27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var assert = require('assert');
var vm = require('vm');
var spawn = require('child_process').spawn;

if (process.argv[2] === 'child') {
  var code = 'var j = 0;\n' +
      'for (var i = 0; i < 1000000; i++) j += add(i, i + 1);\n'
      'j;';

  var ctx = vm.createContext({
    add: function(x, y) {
      return x + y;
    }
  });

  vm.runInContext(code, ctx, { timeout: 1 });
} else {
  var proc = spawn(process.execPath, process.argv.slice(1).concat('child'));
  var err = '';
  proc.stderr.on('data', function(data) {
    err += data;
  });

  process.on('exit', function() {
    assert.ok(/Script execution timed out/.test(err));
  });
}