Removed some sonar warnings from pcep.
[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.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev131007.KeepaliveBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.KeepaliveMessage;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.keepalive.message.KeepaliveMessageBuilder;
18
19 public class PCEPTestingToolTest {
20
21         @Test
22         public void testSimpleSessionListener() {
23                 final TestingSessionListener ssl = new TestingSessionListener();
24                 assertEquals(0, ssl.messages().size());
25                 ssl.onMessage(null, new KeepaliveBuilder().setKeepaliveMessage(new KeepaliveMessageBuilder().build()).build());
26                 assertEquals(1, ssl.messages().size());
27                 assertTrue(ssl.messages().get(0) instanceof KeepaliveMessage);
28                 assertFalse(ssl.up);
29                 ssl.onSessionUp(null);
30                 assertTrue(ssl.up);
31                 ssl.onSessionDown(null, null);
32                 assertFalse(ssl.up);
33         }
34 }