3a5df6e9d518b8617a297055dd0e271f64f07ae3
[platform/upstream/iotjs.git] / test / run_pass / test_net1.js
1 /* Copyright 2015-present Samsung Electronics Co., Ltd. and other contributors
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 var net = require('net');
17 var assert = require('assert');
18
19
20 var server = net.createServer();
21 var port = 22701;
22
23 server.listen(port, 5);
24
25 server.on('connection', function(socket) {
26   socket.on('data', function(data) {
27     socket.end('Hello IoT.js');
28   });
29   socket.on('close', function() {
30     server.close();
31   });
32 });
33
34
35 var socket = new net.Socket();
36 var msg = "";
37
38 socket.connect(port, "127.0.0.1");
39 socket.write("Hello IoT.js");
40
41 socket.on('data', function(data) {
42   msg += data;
43 });
44
45 socket.on('end', function() {
46   socket.end();
47 });
48
49 process.on('exit', function(code) {
50   assert.equal(msg, "Hello IoT.js");
51 });