Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / http-proxy / test / core / simple / test-http-client-upload.js
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 var common = require('../common');
23 var assert = require('assert');
24 var http = require('http');
25
26 var sent_body = '';
27 var server_req_complete = false;
28 var client_res_complete = false;
29
30 var server = http.createServer(function (req, res) {
31   assert.equal('POST', req.method);
32   req.setEncoding('utf8');
33
34   req.on('data', function (chunk) {
35     console.log('server got: ' + JSON.stringify(chunk));
36     sent_body += chunk;
37   });
38
39   req.on('end', function () {
40     server_req_complete = true;
41     console.log('request complete from server');
42     res.writeHead(200, {'Content-Type': 'text/plain'});
43     res.write('hello\n');
44     res.end();
45   });
46 });
47 server.listen(common.PORT);
48
49 server.on('listening', function () {
50   var req = http.request({
51     port: common.PROXY_PORT,
52     method: 'POST',
53     path: '/'
54   }, function (res) {
55     res.setEncoding('utf8');
56     res.on('data', function (chunk) {
57       console.log(chunk);
58     });
59     res.on('end', function () {
60       client_res_complete = true;
61       server.close();
62     });
63   });
64
65   req.write('1\n');
66   req.write('2\n');
67   req.write('3\n');
68   req.end();
69
70   common.error('client finished sending request');
71 });
72
73 process.on('exit', function () {
74   assert.equal('1\n2\n3\n', sent_body);
75   assert.equal(true, server_req_complete);
76   assert.equal(true, client_res_complete);
77 });