summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-chunk-problem.js
blob: 23ec2d0263fa9419949678af01a6e4dd35e40412 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
'use strict';
// http://groups.google.com/group/nodejs/browse_thread/thread/f66cd3c960406919
const common = require('../common');
const assert = require('assert');
if (!common.hasCrypto) {
  common.skip('missing crypto');
  return;
}

if (process.argv[2] === 'request') {
  const http = require('http');
  const options = {
    port: common.PORT,
    path: '/'
  };

  http.get(options, (res) => {
    res.pipe(process.stdout);
  });

  return;
}

if (process.argv[2] === 'shasum') {
  const crypto = require('crypto');
  const shasum = crypto.createHash('sha1');
  process.stdin.on('data', (d) => {
    shasum.update(d);
  });

  process.stdin.on('close', () => {
    process.stdout.write(shasum.digest('hex'));
  });

  return;
}

const http = require('http');
const cp = require('child_process');

const filename = require('path').join(common.tmpDir, 'big');

function executeRequest(cb) {
  cp.exec([process.execPath,
           __filename,
           'request',
           '|',
           process.execPath,
           __filename,
           'shasum' ].join(' '),
          (err, stdout, stderr) => {
            if (err) throw err;
            assert.equal('8c206a1a87599f532ce68675536f0b1546900d7a',
                         stdout.slice(0, 40));
            cb();
          }
  );
}


common.refreshTmpDir();

const ddcmd = common.ddCommand(filename, 10240);

cp.exec(ddcmd, function(err, stdout, stderr) {
  if (err) throw err;
  const server = http.createServer(function(req, res) {
    res.writeHead(200);

    // Create the subprocess
    const cat = cp.spawn('cat', [filename]);

    // Stream the data through to the response as binary chunks
    cat.stdout.on('data', (data) => {
      res.write(data);
    });

    cat.stdout.on('end', () => res.end());

    // End the response on exit (and log errors)
    cat.on('exit', (code) => {
      if (code !== 0) {
        console.error('subprocess exited with code ' + code);
        process.exit(1);
      }
    });

  });

  server.listen(common.PORT, () => {
    executeRequest(() => server.close());
  });
});