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