740869d2196a7792e7ea6ffe29c658e715059edf
[platform/upstream/nodejs.git] / test / pummel / test-net-pause.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 net = require('net');
25
26 var N = 200;
27 var recv = '', chars_recved = 0;
28
29 var server = net.createServer(function(connection) {
30   function write(j) {
31     if (j >= N) {
32       connection.end();
33       return;
34     }
35     setTimeout(function() {
36       connection.write('C');
37       write(j + 1);
38     }, 10);
39   }
40   write(0);
41 });
42
43 server.on('listening', function() {
44   var client = net.createConnection(common.PORT);
45   client.setEncoding('ascii');
46   client.on('data', function(d) {
47     common.print(d);
48     recv += d;
49   });
50
51   setTimeout(function() {
52     chars_recved = recv.length;
53     console.log('pause at: ' + chars_recved);
54     assert.equal(true, chars_recved > 1);
55     client.pause();
56     setTimeout(function() {
57       console.log('resume at: ' + chars_recved);
58       assert.equal(chars_recved, recv.length);
59       client.resume();
60
61       setTimeout(function() {
62         chars_recved = recv.length;
63         console.log('pause at: ' + chars_recved);
64         client.pause();
65
66         setTimeout(function() {
67           console.log('resume at: ' + chars_recved);
68           assert.equal(chars_recved, recv.length);
69           client.resume();
70
71         }, 500);
72
73       }, 500);
74
75     }, 500);
76
77   }, 500);
78
79   client.on('end', function() {
80     server.close();
81     client.end();
82   });
83 });
84 server.listen(common.PORT);
85
86 process.on('exit', function() {
87   assert.equal(N, recv.length);
88   common.debug('Exit');
89 });