Merge "Gracefully stop HT threads when the bundle is being stopped (cache terminated...
[controller.git] / opendaylight / hosttracker / implementation / src / test / java / org / opendaylight / controller / hosttracker / internal / HostTrackerTest.java
1 /*\r
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.controller.hosttracker.internal;\r
10 \r
11 import java.net.InetAddress;\r
12 import java.net.UnknownHostException;\r
13 import junit.framework.TestCase;\r
14 \r
15 import org.junit.Assert;\r
16 import org.junit.Test;\r
17 \r
18 public class HostTrackerTest extends TestCase {\r
19 \r
20     @Test\r
21     public void testHostTrackerCallable() throws UnknownHostException {\r
22 \r
23         HostTracker hostTracker = null;\r
24         hostTracker = new HostTracker();\r
25         Assert.assertFalse(hostTracker == null);\r
26 \r
27         InetAddress hostIP = InetAddress.getByName("192.168.0.8");\r
28 \r
29         HostTrackerCallable htCallable = new HostTrackerCallable(hostTracker,\r
30                 hostIP);\r
31         Assert.assertTrue(htCallable.trackedHost.equals(hostIP));\r
32         Assert.assertTrue(htCallable.hostTracker.equals(hostTracker));\r
33 \r
34         long count = htCallable.latch.getCount();\r
35         htCallable.wakeup();\r
36         Assert.assertTrue(htCallable.latch.getCount() == (count - 1));\r
37     }\r
38 \r
39     @Test\r
40     public void testHostTracker() throws UnknownHostException {\r
41         HostTracker hostTracker = null;\r
42         hostTracker = new HostTracker();\r
43         Assert.assertFalse(hostTracker == null);\r
44 \r
45         InetAddress hostIP_1 = InetAddress.getByName("192.168.0.8");\r
46         InetAddress hostIP_2 = InetAddress.getByName("192.168.0.18");\r
47         hostTracker.discoverHost(hostIP_1);\r
48         hostTracker.discoverHost(hostIP_2);\r
49         hostTracker.nonClusterObjectCreate();\r
50     }\r
51 \r
52 }\r