f2d81dd8420a0b243f4c69da704b211eb431aedb
[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.ArgumentMatchers.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.GenericFutureListener;
24 import io.netty.util.concurrent.ScheduledFuture;
25 import java.net.InetSocketAddress;
26 import java.net.SocketAddress;
27 import java.util.List;
28 import java.util.concurrent.TimeUnit;
29 import org.junit.Before;
30 import org.mockito.Mock;
31 import org.mockito.MockitoAnnotations;
32 import org.opendaylight.protocol.util.InetSocketAddressUtil;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.Close;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.CloseBuilder;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.Keepalive;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.KeepaliveBuilder;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.Open;
38 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.OpenBuilder;
39 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.Starttls;
40 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.message.rev181109.StarttlsBuilder;
41 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.close.message.CCloseMessageBuilder;
42 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.close.object.CCloseBuilder;
43 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.keepalive.message.KeepaliveMessageBuilder;
44 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.open.message.OpenMessageBuilder;
45 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.start.tls.message.StartTlsMessageBuilder;
46 import org.opendaylight.yangtools.yang.binding.Notification;
47
48 public class AbstractPCEPSessionTest {
49
50     protected static final short KEEP_ALIVE = 15;
51     protected static final short DEADTIMER = 40;
52
53     @Mock
54     protected Channel channel;
55
56     @Mock
57     private ChannelFuture channelFuture;
58
59     @Mock
60     private EventLoop eventLoop;
61
62     @Mock
63     private ScheduledFuture<?> future;
64
65     @Mock
66     private ChannelPipeline pipeline;
67
68     @Mock
69     private SocketAddress address;
70
71     protected final String ipAddress = InetSocketAddressUtil.getRandomLoopbackIpAddress();
72     protected final int port = InetSocketAddressUtil.getRandomPort();
73     protected final List<Notification> msgsSend = Lists.newArrayList();
74
75     protected Open openMsg;
76
77     protected Close closeMsg;
78
79     protected Starttls startTlsMsg;
80
81     protected Keepalive kaMsg;
82
83     protected SimpleSessionListener listener;
84
85     @Before
86     public final void setUp() {
87         MockitoAnnotations.initMocks(this);
88         final ChannelFuture future = new DefaultChannelPromise(this.channel);
89         doAnswer(invocation -> {
90             final Object[] args = invocation.getArguments();
91             AbstractPCEPSessionTest.this.msgsSend.add((Notification) args[0]);
92             return future;
93         }).when(this.channel).writeAndFlush(any(Notification.class));
94         doReturn(this.channelFuture).when(this.channel).closeFuture();
95         doReturn(this.channelFuture).when(this.channelFuture).addListener(any(GenericFutureListener.class));
96         doReturn("TestingChannel").when(this.channel).toString();
97         doReturn(this.pipeline).when(this.channel).pipeline();
98         doReturn(this.address).when(this.channel).localAddress();
99         doReturn(this.address).when(this.channel).remoteAddress();
100         doReturn(this.eventLoop).when(this.channel).eventLoop();
101         doReturn(true).when(this.future).cancel(false);
102         doReturn(this.future).when(this.eventLoop).schedule(any(Runnable.class), any(long.class), any(TimeUnit.class));
103         doReturn(this.pipeline).when(this.pipeline).replace(any(ChannelHandler.class), any(String.class), any(ChannelHandler.class));
104         doReturn(this.pipeline).when(this.pipeline).addFirst(any(ChannelHandler.class));
105         doReturn(true).when(this.channel).isActive();
106         doReturn(mock(ChannelFuture.class)).when(this.channel).close();
107         doReturn(new InetSocketAddress(this.ipAddress, this.port)).when(this.channel).remoteAddress();
108         doReturn(new InetSocketAddress(this.ipAddress, this.port)).when(this.channel).localAddress();
109         this.openMsg = new OpenBuilder().setOpenMessage(
110                 new OpenMessageBuilder().setOpen(
111                         new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.open.object.OpenBuilder().setDeadTimer(
112                                 DEADTIMER).setKeepalive(KEEP_ALIVE).setSessionId((short) 0).build()).build()).build();
113         this.kaMsg = new KeepaliveBuilder().setKeepaliveMessage(new KeepaliveMessageBuilder().build()).build();
114         this.startTlsMsg = new StarttlsBuilder().setStartTlsMessage(new StartTlsMessageBuilder().build()).build();
115         this.closeMsg = new CloseBuilder().setCCloseMessage(
116                 new CCloseMessageBuilder().setCClose(new CCloseBuilder().setReason((short) 6).build()).build()).build();
117
118
119         this.listener = new SimpleSessionListener();
120     }
121
122 }