de755471c696cc10ebe69fd8adbfb0cd9a17b4e8
[platform/upstream/iotjs.git] / test / run_pass / test_dns.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 = 1236;
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 var lookupHandled = false;
38
39 socket.on('lookup', function(err, ip, family) {
40   lookupHandled = true;
41 });
42
43 socket.connect(port, "localhost");  // connect with hostname
44 socket.write("Hello IoT.js");
45
46 socket.on('data', function(data) {
47   msg += data;
48 });
49
50 socket.on('end', function() {
51   socket.end();
52 });
53
54 process.on('exit', function(code) {
55   assert.equal(code, 0);
56   assert.equal(msg, "Hello IoT.js");
57   assert.equal(lookupHandled, true);
58 });