aboutsummaryrefslogtreecommitdiffstats
path: root/test/net/java/sip/communicator/slick/netaddr/TestNetworkAddressManagerService.java
blob: 18b98cf9ba9a689df9c792d310a53062879b4e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
package net.java.sip.communicator.slick.netaddr;

import java.net.*;
import java.util.*;

import org.osgi.framework.*;
import junit.framework.*;
import org.jitsi.service.configuration.*;
import net.java.sip.communicator.service.netaddr.*;
import net.java.sip.communicator.util.*;

/**
 * Tests basic Network Address Manager Service behaviour.
 *
 * @author Emil Ivov
 * @author Pierre Floury
 *
 */
public class TestNetworkAddressManagerService extends TestCase {
    /**
     * The NetworkAddressManagerService that we will be testing.
     */
    private NetworkAddressManagerService networkAddressManagerService = null;
    private Logger logger = Logger.getLogger(getClass().getName());

    private static final String PROP_STUN_SERVER_ADDR =
                        "net.java.sip.communicator.STUN_SERVER_ADDRESS";
    private static final String PROP_STUN_SERVER_PORT =
                        "net.java.sip.communicator.STUN_SERVER_PORT";
    private static final String PROP_PREFERRED_NET_IFACE =
                        "net.java.sip.communicator.PREFERRED_NETWORK_INTERFACE";
    private static final String PROP_PREFERRED_NET_ADDR =
                        "net.java.sip.communicator.PREFERRED_NETWORK_ADDRESS";


    /**
     * The ConfigurationService that we will be using.
     */
    private ConfigurationService configurationService = null;


    /**
     * Constructor.
     * get a reference to the configuration service
     *
     * @param name the name of the test
     */
    public TestNetworkAddressManagerService(String name)
    {
        super(name);

    }

    /**
     * Generic JUnit setUp method. That's where we get the configuration and
     * net address manager services
     * service.
     *
     * @throws Exception if anything goes wrong.
     */
    protected void setUp()
        throws Exception
    {
        super.setUp();
        BundleContext context = NetworkAddressManagerServiceLick.bc;
        // get the configuration service
        ServiceReference confRef = context
            .getServiceReference(ConfigurationService.class.getName());
        configurationService = (ConfigurationService) context
            .getService(confRef);
        // get the netaddr service
        ServiceReference netRef = context.getServiceReference(
            NetworkAddressManagerService.class.getName());
        networkAddressManagerService = (NetworkAddressManagerService)
            context.getService(netRef);
    }

    /**
     * Generic JUnit tearDown method.
     *
     * @throws Exception if anything goes wrong.
     */
    protected void tearDown()
        throws Exception
    {
        super.tearDown();
    }


    private static boolean isLocalInterfaceAddress(InetAddress address)
    {
        try {
            Enumeration<NetworkInterface> intfs
                = NetworkInterface.getNetworkInterfaces();
            while (intfs.hasMoreElements())
            {
                NetworkInterface intf = intfs.nextElement();
                Enumeration<InetAddress> addrs = intf.getInetAddresses();
                while (addrs.hasMoreElements())
                {
                    try {
                        InetAddress addr = addrs.nextElement();
                        if(addr.equals(address))
                            return true;
                    } catch (Exception e)
                    {
                    }
                }
            }
        } catch (Exception e)
        {
            e.printStackTrace();
        }
        return false;
    }

    private static boolean isLocalInterfaceAddressIPv4(InetAddress address)
    {
        if(address instanceof Inet4Address)
            return isLocalInterfaceAddress(address);
        return false;
    }

    private static boolean isLocalInterfaceAddressIPv6(InetAddress address)
    {
        if(address instanceof Inet6Address)
            return isLocalInterfaceAddress(address);
        return false;
    }

    public void testDummyTest()
    {
        //we gotta have at least one test otherwise we have an error
    }

    /**
     * This test will specify all local address one by one as "prefered address"
     * and  test the returned address.
     *
     * @throws java.lang.Exception if anything goes wrong.
     */
    /**
    public void testPreferredNetAddressProperty() throws Exception
    {
        initProperties();
        //set the original properties
        String valuePropertyStunName="";
        String propertyStunPort="";

        //disable stun for this test. we are onlytesting simple logics here.
        configurationService.setProperty(PROP_STUN_SERVER_ADDR,"");
        configurationService.setProperty(PROP_STUN_SERVER_PORT,"");

        //restart the netaddress manager so the it takes the new settings into
        //account
        networkAddressManagerService.stop();
        networkAddressManagerService.start();

        Enumeration intfs = NetworkInterface.getNetworkInterfaces();
        while (intfs.hasMoreElements())
        {
            NetworkInterface iface = (NetworkInterface) intfs.nextElement();

            Enumeration addrs = iface.getInetAddresses();
            while (addrs.hasMoreElements())
            {
                InetAddress addr = (InetAddress) addrs.nextElement();

                //set the current address as the preferred one.
                configurationService.setProperty(PROP_PREFERRED_NET_IFACE,
                                                 iface.getName());
                configurationService.setProperty(PROP_PREFERRED_NET_ADDR,
                                                 addr.toString());

                InetAddress localHost =
                        networkAddressManagerService.getLocalHost();

                if( isRoutable(addr) )
                {
                    //if the address we set as prefered was routable then
                    //the net address manager should have returned it.
                    assertEquals(addr, localHost);
                }
                else
                {
                    assertFalse(networkAddressManagerService.
                                getLocalHost().isLoopbackAddress());
                }
            }
        }
    }


    public void testBadIpAddressNoIPversionSpecified() throws Exception
    {
        initProperties();
        //set the original properties
        //Integer valuePropertyPreferedIPVersion;
        String valuePropertyStunName="stun01.sipphone.com";
        Integer valuePropertyStunPort=new Integer(3478);
        String valuePropertyNetworkAddress="192.169.1.1";
        //String propertyNetworkInterface=""
        //valuePropertyPreferedIPVersion = new Integer(4);

        configurationService.setProperty(PROP_STUN_SERVER_ADDR,
                                         valuePropertyStunName);
        configurationService.setProperty(PROP_STUN_SERVER_PORT,
                                         valuePropertyStunPort);
        configurationService.setProperty(PROP_PREFERRED_NET_ADDR,
                                         valuePropertyNetworkAddress);
        InetAddress addr = networkAddressManagerService.getLocalHost();
        assertTrue(isLocalInterfaceAddressIPv4(addr)
                   || isLinkLocalIPv4Address(addr)
                   || isRoutable(addr)
                   || getStunAddress().equals(addr));

    }
    public void testBadIpAddressIPv4Specified() throws Exception
    {
        initProperties();
        //set th original properties
        //Integer valuePropertyPreferedIPVersion;
        String valuePropertyStunName="stun01.sipphone.com";
        Integer valuePropertyStunPort=new Integer(3478);
        String valuePropertyNetworkAddress="2001:660:4701:1001:800:1cff:fed1:51";
        Integer valuePropertyPreferedIPVersion=new Integer(4);
        //String propertyNetworkInterface=""
        //valuePropertyPreferedIPVersion = new Integer(4);

        configurationService.setProperty(PROP_STUN_SERVER_ADDR,
                                         valuePropertyStunName);
        configurationService.setProperty(PROP_STUN_SERVER_PORT,
                                         valuePropertyStunPort);
        configurationService.setProperty(PROP_PREFERRED_NET_ADDR,
                                         valuePropertyNetworkAddress);
        InetAddress addr = networkAddressManagerService.getLocalHost();
        assertTrue(addr instanceof Inet4Address);

    }

    public void testBadStun() throws Exception
    {
        initProperties();
        //set the original properties
        //Integer valuePropertyPreferedIPVersion;
        String valuePropertyStunName="stun01.sipphone.com";
        Integer valuePropertyStunPort=new Integer(3478);
        String valuePropertyNetworkAddress="192.169.1.1";
        //String propertyNetworkInterface=""
        //valuePropertyPreferedIPVersion = new Integer(4);

        configurationService.setProperty(PROP_STUN_SERVER_ADDR,
                                         valuePropertyStunName);
        configurationService.setProperty(PROP_STUN_SERVER_PORT,
                                         valuePropertyStunPort);
        configurationService.setProperty(PROP_PREFERRED_NET_ADDR,
                                         valuePropertyNetworkAddress);
        InetAddress addr = networkAddressManagerService.getLocalHost();
        assertTrue(isLocalInterfaceAddressIPv4(addr)
                   || isLinkLocalIPv4Address(addr)
                   || isRoutable(addr));

    }


*/

    /**
     * Set the configuration to IPv4 pref if the network is not behind a nat
     * if not it does nothing
     * and watch if the result of "NetworkAddressManagerService.getlocalhost()
     * is a valid (public) IPv4 address
     */
    /*public void testIPv4Stack()
    {
        if(nat==true)
            return;
        // set properties
        Boolean propertyIpV6Pref= new Boolean(false);
        Boolean propertyIpV4Stack = new Boolean(true);
        String propertieStunValue="stun01.sipphone.com";
        Integer propertieStunPort=new Integer(3478);
        Boolean natBoolean = new Boolean(nat);

        try
        {
            configurationService.setProperty(propertyIpV4Stack, propertyIpV4Stack);
            configurationService.setProperty(propertyStunName,propertieStunValue );
            configurationService.setProperty(propertyStunPort,propertieStunPort );
            configurationService.setProperty(propertyV6,propertyIpV6Pref );
            configurationService.setProperty(propertyNat, natBoolean);
        }
        catch (Exception e) {}
        try {
            // get the locahost grom NetworkAddressManager Service
            InetAddress serviceAdress =
                                    networkAddressManagerService.getLocalHost();


            // test must crash if the localHost is an IPv6 Address
            if(serviceAdress instanceof Inet4Address)
                assertTrue(foundInetAddr(serviceAdress,
                                            propertyIpV6Pref.booleanValue()));
            else
                assertTrue(false);

        }
        catch (Exception e) {}

    }*/

    /**
     * Set the configuration to IPv4 pref if the network is behind a nat
     * if not it does nothing
     * and watch if the result of "NetworkAddressManagerService.getlocalhost()
     * is a valid (public) IPv4 address
     */
    /*public void testIPv4StackWithNat()
    {
        if(nat==false)
            return;
        // set properties
        Boolean propertyIpV6Pref= new Boolean(false);
        Boolean propertyIpV4Stack = new Boolean(true);
        String propertieStunValue="stun01.sipphone.com";
        Integer propertieStunPort=new Integer(3478);
        Boolean natBoolean = new Boolean(nat);

        try
        {
            configurationService.setProperty(propertIpV4Stack, propertyIpV4Stack);
            configurationService.setProperty(propertyStunName,propertieStunValue );
            configurationService.setProperty(propertyStunPort,propertieStunPort );
            configurationService.setProperty(propertyV6,propertyIpV6Pref );
            configurationService.setProperty(propertyNat, natBoolean);
        }
        catch (Exception e) {}
        try {
            // get the locahost grom NetworkAddressManager Service
            InetAddress serviceAdress =
                                    networkAddressManagerService.getLocalHost();


            // test must crash if the localHost is an IPv6 Address
            if(serviceAdress instanceof Inet4Address)
                assertTrue(!isLinkLocalIPv4Address(serviceAdress));
            else
                assertTrue(false);


        }
        catch (Exception e) {}

    }*/

    /**
     * Set the configuration to IPv6 pref
     * and watch if the result of "NetworkAddressManagerService.getlocalhost()
     * is a valid IPv6 address
     */
    /*public void testIPv6()
    {
        if(nat==true)
            return;
        // set properties
        Boolean propertyIpV6Pref= new Boolean(true);
        Boolean propertyIpV4Stack = new Boolean(false);
        String propertieStunValue="stun01.sipphone.com";
        Integer propertieStunPort=new Integer(3478);
        Boolean natBoolean = new Boolean(nat);
        try
        {
            configurationService.setProperty(propertIpV4Stack, propertyIpV4Stack);
            configurationService.setProperty(propertyStunName,propertieStunValue );
            configurationService.setProperty(propertyStunPort,propertieStunPort );
            configurationService.setProperty(propertyV6,propertyIpV6Pref );
            configurationService.setProperty(propertyNat, natBoolean);
        }
        catch (Exception e) {}

        try {
            // get localhost address from the NetworkAddressManager bundle
            InetAddress serviceAdress =
                                    networkAddressManagerService.getLocalHost();

            if(serviceAdress instanceof Inet6Address)
                assertTrue(foundInetAddr(serviceAdress,
                                         propertyIpV6Pref.booleanValue()));
            else
                assertTrue(false);

        }
        catch (Exception e) {}

    }*/

    /**
     * Set the configuration to IPv6 pref
     * and watch if the result of "NetworkAddressManagerService.getlocalhost()
     * is a valid IPv6 address
     */
    /*public void testIPv6Nat()
    {
        if(nat==false)
            return;

        // set properties
        Boolean propertyIpV6Pref= new Boolean(true);
        Boolean propertyIpV4Stack = new Boolean(false);
        String propertieStunValue="stun01.sipphone.com";
        Integer propertieStunPort=new Integer(3478);
        Boolean natBoolean = new Boolean(nat);
        try
        {
            configurationService.setProperty(propertIpV4Stack, propertyIpV4Stack);
            configurationService.setProperty(propertyStunName,propertieStunValue );
            configurationService.setProperty(propertyStunPort,propertieStunPort );
            configurationService.setProperty(propertyV6,propertyIpV6Pref );
            configurationService.setProperty(propertyNat, natBoolean);
        }
        catch (Exception e) {}

        try
        {
            // get localhost address from the NetworkAddressManager bundle
            InetAddress serviceAdress =
                                    networkAddressManagerService.getLocalHost();


            if(serviceAdress instanceof Inet6Address)
                assertTrue( isRoutable(serviceAdress));
            else
                assertTrue(false);
        }
        catch (Exception e) {}

    }*/

    /**
     * verify if the address returned by the service is valid by listing local
     * interfaces and compare them to the address retruned
     *
     * @param serviceAdress : address to check
     * @param ipv6version : if true verifie if this address is an ipv6 belong
     * to the local interface. if false, et do the same thing for
     * IPv4 Addresses
     * @return : true if it is an ipv4 address and if this addres belong to the
     *         local interface
     */
    /*boolean foundInetAddr(InetAddress serviceAdress, boolean ipv6version)
    {

        try {

            Enumeration intfs = NetworkInterface.getNetworkInterfaces();
            while (intfs.hasMoreElements()) {
                NetworkInterface intf = (NetworkInterface) intfs.nextElement();
                Enumeration addrs = intf.getInetAddresses();
                while (addrs.hasMoreElements()) {
                    try {
                        InetAddress addr = (InetAddress) addrs.nextElement();
                        if (!addr.isLoopbackAddress()
                        && serviceAdress.equals(addr)
                        && ((!ipv6version && addr.getClass().equals(Inet4Address.class)
                            ||
                            (ipv6version && addr.getClass().equals(Inet6Address.class)))))
                            return true;
                    } catch (Exception e) {
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return false;
    }*/

    /**
     *  test the getPublicAddressFor methode,
     *  but I don't know how test that
     *  it is still TODO
     *
     */
    /*public void testgetPublicAddressFor()
    {
        // set properties
        Boolean propertyIpV6Pref= new Boolean(true);
        Boolean propertyIpV4Stack = new Boolean(false);
        String propertieStunValue="stun01.sipphone.com";
        Integer propertieStunPort=new Integer(3478);
        Boolean natBoolean = new Boolean(nat);
        try
        {
            configurationService.setProperty(propertIpV4Stack, propertyIpV4Stack);
            configurationService.setProperty(propertyStunName,propertieStunValue );
            configurationService.setProperty(propertyStunPort,propertieStunPort );
            configurationService.setProperty(propertyV6,propertyIpV6Pref );
            configurationService.setProperty(propertyNat, natBoolean);
        }
        catch (Exception ex) {}




        InetAddress serviceAddress = (networkAddressManagerService.
                                        getPublicAddressFor(1024)).getAddress();
        assertTrue(foundInetAddr(serviceAddress, propertyIpV6Pref.booleanValue()));
        propertyIpV4Stack = new Boolean(true);
        propertyIpV6Pref = new Boolean(false);
        try
        {
            configurationService.setProperty(propertIpV4Stack, propertyIpV4Stack);
            configurationService.setProperty(propertyV6,propertyIpV6Pref );
        }
        catch (Exception e) {}
        serviceAddress = (networkAddressManagerService.
                                        getPublicAddressFor(1024)).getAddress();
        assertTrue(foundInetAddr(serviceAddress, propertyIpV6Pref.booleanValue()));




    }*/

    /**
     * Determines whether the address is an IPv4 link local address. IPv4 link
     * local addresses are those in the following networks:
     *
     * 10.0.0.0    to 10.255.255.255
     * 172.16.0.0  to 172.31.255.255
     * 192.168.0.0 to 192.168.255.255
     *
     * @param add the address to inspect
     * @return true if add is a link local ipv4 address and false if not.
     */
    private static boolean isLinkLocalIPv4Address(InetAddress add)
    {
        if(add instanceof Inet4Address)
        {
            byte address[] = add.getAddress();
            if ( (address[0] & 0xFF) == 10)
                return true;
            if ( (address[0] & 0xFF) == 172
                && (address[1] & 0xFF) >= 16 && address[1] <= 31)
                return true;
            if ( (address[0] & 0xFF) == 192
                && (address[1] & 0xFF) == 168)
                return true;
            return false;
        }
        return false;
    }

    /**
     * Determines whether the address could be used in a VoIP session. Attention,
     * routable address as determined by this method are not only globally routable
     * addresses in the general sense of the term. Link local addresses such as
     * 192.168.x.x or fe80::xxxx are also considered usable.
     * @param address the address to test.
     * @return true if the address could be used in a VoIP session.
     */
    private static boolean isRoutable(InetAddress address)
    {
        if(address instanceof Inet6Address)
        {
            return !address.isLoopbackAddress()
                   && !address.isLinkLocalAddress();
        }
        else
        {
            return (!address.isLoopbackAddress())
                    && (!isWindowsAutoConfiguredIPv4Address(address));
        }
    }
     /**
     * Determines whether the address is the result of windows auto configuration.
     * (i.e. One that is in the 169.254.0.0 network)
     * @param add the address to inspect
     * @return true if the address is autoconfigured by windows, false otherwise.
     */
    private static boolean isWindowsAutoConfiguredIPv4Address(InetAddress add)
    {
        return (add.getAddress()[0] & 0xFF) == 169
            && (add.getAddress()[1] & 0xFF) == 254;
    }

    private void initProperties()
    {
        try
        {
            configurationService.setProperty(  PROP_STUN_SERVER_ADDR , null);
            configurationService.setProperty(  PROP_STUN_SERVER_PORT , null);
            configurationService.setProperty(  PROP_PREFERRED_NET_IFACE, null);
            configurationService.setProperty(  PROP_PREFERRED_NET_ADDR , null);
            configurationService.setProperty(  PROP_STUN_SERVER_ADDR , null);
        }
        catch(Exception ex){}
    }
}