0749d17766aef113881dfb381e7a1d3eeb941005
[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 import org.opendaylight.yangtools.yang.common.Uint8;
47
48 public class AbstractPCEPSessionTest {
49
50     protected static final Uint8 KEEP_ALIVE = Uint8.valueOf(15);
51     protected static final Uint8 DEADTIMER = Uint8.valueOf(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 = new ArrayList<>();
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),
104             any(ChannelHandler.class));
105         doReturn(this.pipeline).when(this.pipeline).addFirst(any(ChannelHandler.class));
106         doReturn(true).when(this.channel).isActive();
107         doReturn(mock(ChannelFuture.class)).when(this.channel).close();
108         doReturn(new InetSocketAddress(this.ipAddress, this.port)).when(this.channel).remoteAddress();
109         doReturn(new InetSocketAddress(this.ipAddress, this.port)).when(this.channel).localAddress();
110         this.openMsg = new OpenBuilder()
111                 .setOpenMessage(new OpenMessageBuilder()
112                     .setOpen(new org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109
113                         .open.object.OpenBuilder()
114                         .setDeadTimer(DEADTIMER)
115                         .setKeepalive(KEEP_ALIVE)
116                         .setSessionId(Uint8.ZERO)
117                         .build())
118                     .build())
119                 .build();
120         this.kaMsg = new KeepaliveBuilder().setKeepaliveMessage(new KeepaliveMessageBuilder().build()).build();
121         this.startTlsMsg = new StarttlsBuilder().setStartTlsMessage(new StartTlsMessageBuilder().build()).build();
122         this.closeMsg = new CloseBuilder().setCCloseMessage(new CCloseMessageBuilder()
123             .setCClose(new CCloseBuilder().setReason(Uint8.valueOf(6)).build()).build()).build();
124
125         this.listener = new SimpleSessionListener();
126     }
127
128 }