BUG-48: more implementation
[bgpcep.git] / pcep / impl / src / test / java / org / opendaylight / protocol / pcep / impl / ServerSessionMock.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.impl;
9
10 import static org.mockito.Mockito.mock;
11 import io.netty.channel.Channel;
12 import io.netty.util.HashedWheelTimer;
13 import io.netty.util.concurrent.Future;
14 import io.netty.util.concurrent.GlobalEventExecutor;
15
16 import org.opendaylight.protocol.pcep.PCEPCloseTermination;
17 import org.opendaylight.protocol.pcep.PCEPSessionListener;
18 import org.opendaylight.protocol.pcep.TerminationReason;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.OpenBuilder;
21
22 public class ServerSessionMock extends PCEPSessionImpl {
23
24         private final MockPCE client;
25
26         public ServerSessionMock(final PCEPSessionListener listener, final PCEPSessionListener client) {
27                 super(new HashedWheelTimer(), listener, 5, mock(Channel.class), new OpenBuilder().setKeepalive((short) 4).setDeadTimer((short) 9).setSessionId(
28                                 (short) 2).build(), new OpenBuilder().setKeepalive((short) 4).setDeadTimer((short) 9).setSessionId((short) 2).build());
29                 this.client = (MockPCE) client;
30         }
31
32         @Override
33         public Future<Void> sendMessage(final Message msg) {
34                 this.lastMessageSentAt = System.nanoTime();
35                 this.client.onMessage(this, msg);
36                 return GlobalEventExecutor.INSTANCE.newSucceededFuture(null);
37         }
38
39         @Override
40         public void close() {
41                 this.client.onSessionTerminated(this, new PCEPCloseTermination(TerminationReason.Unknown));
42         }
43 }