BUG-58: refactor to take advantage of netty
[bgpcep.git] / pcep / testtool / src / test / java / org / opendaylight / protocol / pcep / testtool / PCEPTestingToolTest.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.pcep.testtool;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertTrue;
13
14 import org.junit.Test;
15 import org.opendaylight.protocol.pcep.message.PCEPKeepAliveMessage;
16
17 public class PCEPTestingToolTest {
18
19         @Test
20         public void testSimpleSessionListener() {
21                 final SimpleSessionListener ssl = new SimpleSessionListener();
22                 assertEquals(0, ssl.messages.size());
23                 ssl.onMessage(null, new PCEPKeepAliveMessage());
24                 assertEquals(1, ssl.messages.size());
25                 assertTrue(ssl.messages.get(0) instanceof PCEPKeepAliveMessage);
26                 assertFalse(ssl.up);
27                 ssl.onSessionUp(null);
28                 assertTrue(ssl.up);
29                 ssl.onSessionDown(null, null);
30                 assertFalse(ssl.up);
31         }
32
33         @Test
34         public void testSessionListenerFactory() {
35                 assertTrue(new SessionListenerFactory().getSessionListener() instanceof SimpleSessionListener);
36         }
37 }