Merge "Removed deprecated classes."
[bgpcep.git] / pcep / impl / src / test / java / org / opendaylight / protocol / pcep / impl / AbstractPCEPSessionTest.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.protocol.pcep.impl;
10
11 import static org.mockito.Matchers.any;
12 import static org.mockito.Mockito.doAnswer;
13 import static org.mockito.Mockito.doReturn;
14 import static org.mockito.Mockito.mock;
15
16 import com.google.common.collect.Lists;
17 import io.netty.channel.Channel;
18 import io.netty.channel.ChannelFuture;
19 import io.netty.channel.ChannelHandler;
20 import io.netty.channel.ChannelPipeline;
21 import io.netty.channel.DefaultChannelPromise;
22 import io.netty.channel.EventLoop;
23 import io.netty.util.concurrent.ScheduledFuture;
24 import java.net.InetSocketAddress;
25 import java.net.SocketAddress;
26 import java.util.List;
27 import java.util.concurrent.TimeUnit;
28 import org.junit.Before;
29 import org.mockito.Mock;
30 import org.mockito.MockitoAnnotations;
31 import org.mockito.invocation.InvocationOnMock;
32 import org.mockito.stubbing.Answer;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev131007.Keepalive;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev131007.KeepaliveBuilder;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev131007.Open;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev131007.OpenBuilder;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev131007.Starttls;
38 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev131007.StarttlsBuilder;
39 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.keepalive.message.KeepaliveMessageBuilder;
40 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.message.OpenMessageBuilder;
41 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.start.tls.message.StartTlsMessageBuilder;
42 import org.opendaylight.yangtools.yang.binding.Notification;
43
44 public class AbstractPCEPSessionTest {
45
46     protected static final String IP_ADDRESS = "127.0.0.1";
47     protected static final short KEEP_ALIVE = 15;
48     protected static final short DEADTIMER = 40;
49
50     @Mock
51     protected Channel channel;
52
53     @Mock
54     private EventLoop eventLoop;
55
56     @Mock
57     private ScheduledFuture<?> future;
58
59     @Mock
60     private ChannelPipeline pipeline;
61
62     @Mock
63     private SocketAddress address;
64
65     protected final List<Notification> msgsSend = Lists.newArrayList();
66
67     protected Open openMsg;
68
69     protected Starttls startTlsMsg;
70
71     protected Keepalive kaMsg;
72
73     protected SimpleSessionListener listener;
74
75     @Before
76     public final void setUp() {
77         MockitoAnnotations.initMocks(this);
78         final ChannelFuture future = new DefaultChannelPromise(this.channel);
79         doAnswer(new Answer<Object>() {
80             @Override
81             public Object answer(final InvocationOnMock invocation) {
82                 final Object[] args = invocation.getArguments();
83                 AbstractPCEPSessionTest.this.msgsSend.add((Notification) args[0]);
84                 return future;
85             }
86         }).when(this.channel).writeAndFlush(any(Notification.class));
87         doReturn("TestingChannel").when(this.channel).toString();
88         doReturn(this.pipeline).when(this.channel).pipeline();
89         doReturn(this.address).when(this.channel).localAddress();
90         doReturn(this.address).when(this.channel).remoteAddress();
91         doReturn(this.eventLoop).when(this.channel).eventLoop();
92         doReturn(true).when(this.future).cancel(false);
93         doReturn(this.future).when(this.eventLoop).schedule(any(Runnable.class), any(long.class), any(TimeUnit.class));
94         doReturn(this.pipeline).when(this.pipeline).replace(any(ChannelHandler.class), any(String.class), any(ChannelHandler.class));
95         doReturn(this.pipeline).when(this.pipeline).addFirst(any(ChannelHandler.class));
96         doReturn(true).when(this.channel).isActive();
97         doReturn(mock(ChannelFuture.class)).when(this.channel).close();
98         doReturn(new InetSocketAddress(IP_ADDRESS, 4189)).when(this.channel).remoteAddress();
99         doReturn(new InetSocketAddress(IP_ADDRESS, 4189)).when(this.channel).localAddress();
100         this.openMsg = new OpenBuilder().setOpenMessage(
101                 new OpenMessageBuilder().setOpen(
102                         new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.OpenBuilder().setDeadTimer(
103                                 DEADTIMER).setKeepalive(KEEP_ALIVE).setSessionId((short) 0).build()).build()).build();
104         this.kaMsg = new KeepaliveBuilder().setKeepaliveMessage(new KeepaliveMessageBuilder().build()).build();
105         this.startTlsMsg = new StarttlsBuilder().setStartTlsMessage(new StartTlsMessageBuilder().build()).build();
106
107
108         this.listener = new SimpleSessionListener();
109     }
110
111 }