9838c842834b80e8a5513873b28c56227bca3d7f
[platform/upstream/iotjs.git] / test / run_pass / test_dgram_multicast_set_multicast_loop.js
1 /* Copyright 2016-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 assert = require('assert');
17 var dgram = require('dgram');
18
19 var port = 41240;
20 var multicast_address = '230.255.255.250';
21
22 var msg = 'Hello IoT.js';
23 var server = dgram.createSocket('udp4');
24
25 server.on('error', function(err) {
26   assert.fail();
27 });
28
29 server.on('message', function(data, rinfo) {
30   assert.fail();
31 });
32
33 server.bind(port, function() {
34   server.setMulticastLoopback(false);
35   server.addMembership(multicast_address);
36   server.send(msg, port, multicast_address);
37 });
38
39 setTimeout(function() {
40   server.close();
41 }, 1000);
42
43 process.on('exit', function(code) {
44   assert.equal(code, 0);
45 });