BUG-47 : unfinished PCEP migration to generated DTOs.
[bgpcep.git] / pcep / testtool / src / test / java / org / opendaylight / protocol / pcep / testtool / PCCMock.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.testtool;
9
10 import io.netty.channel.socket.SocketChannel;
11 import io.netty.util.HashedWheelTimer;
12 import io.netty.util.concurrent.DefaultPromise;
13 import io.netty.util.concurrent.Future;
14 import io.netty.util.concurrent.GlobalEventExecutor;
15 import io.netty.util.concurrent.Promise;
16
17 import java.net.InetSocketAddress;
18
19 import org.opendaylight.protocol.framework.AbstractDispatcher;
20 import org.opendaylight.protocol.framework.NeverReconnectStrategy;
21 import org.opendaylight.protocol.framework.ProtocolHandlerFactory;
22 import org.opendaylight.protocol.framework.ProtocolSession;
23 import org.opendaylight.protocol.framework.ReconnectStrategy;
24 import org.opendaylight.protocol.framework.SessionListener;
25 import org.opendaylight.protocol.framework.SessionListenerFactory;
26 import org.opendaylight.protocol.framework.SessionNegotiatorFactory;
27 import org.opendaylight.protocol.pcep.PCEPSessionListener;
28 import org.opendaylight.protocol.pcep.impl.DefaultPCEPSessionNegotiatorFactory;
29 import org.opendaylight.protocol.pcep.impl.PCEPHandlerFactory;
30 import org.opendaylight.protocol.pcep.impl.PCEPSessionImpl;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.message.open.message.OpenBuilder;
33 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.TlvsBuilder;
34 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.tlvs.PredundancyGroupIdBuilder;
35
36 import com.google.common.base.Preconditions;
37
38 public class PCCMock<M, S extends ProtocolSession<M>, L extends SessionListener<M, ?, ?>> extends AbstractDispatcher<S, L> {
39
40         private final SessionNegotiatorFactory<M, S, L> negotiatorFactory;
41         private final ProtocolHandlerFactory<?> factory;
42
43         public PCCMock(final SessionNegotiatorFactory<M, S, L> negotiatorFactory, final ProtocolHandlerFactory<?> factory,
44                         final DefaultPromise<PCEPSessionImpl> defaultPromise) {
45                 this.negotiatorFactory = Preconditions.checkNotNull(negotiatorFactory);
46                 this.factory = Preconditions.checkNotNull(factory);
47         }
48
49         public Future<S> createClient(final InetSocketAddress address, final ReconnectStrategy strategy,
50                         final SessionListenerFactory<L> listenerFactory) {
51                 return super.createClient(address, strategy, new PipelineInitializer<S>() {
52                         @Override
53                         public void initializeChannel(final SocketChannel ch, final Promise<S> promise) {
54                                 ch.pipeline().addLast(PCCMock.this.factory.getDecoders());
55                                 ch.pipeline().addLast("negotiator", PCCMock.this.negotiatorFactory.getSessionNegotiator(listenerFactory, ch, promise));
56                                 ch.pipeline().addLast(PCCMock.this.factory.getEncoders());
57                         }
58                 });
59         }
60
61         public static void main(final String[] args) throws Exception {
62                 final TlvsBuilder builder = new TlvsBuilder();
63                 builder.setPredundancyGroupId(new PredundancyGroupIdBuilder().setIdentifier(new byte[] { (byte) 127, (byte) 2, (byte) 3, (byte) 7 }).build());
64
65                 final SessionNegotiatorFactory<Message, PCEPSessionImpl, PCEPSessionListener> snf = new DefaultPCEPSessionNegotiatorFactory(new HashedWheelTimer(), new OpenBuilder().setKeepalive(
66                                 (short) 30).setDeadTimer((short) 120).setSessionId((short) 0).setTlvs(builder.build()).build(), 0);
67
68                 final PCCMock<Message, PCEPSessionImpl, PCEPSessionListener> pcc = new PCCMock<>(snf, new PCEPHandlerFactory(), new DefaultPromise<PCEPSessionImpl>(GlobalEventExecutor.INSTANCE));
69
70                 pcc.createClient(new InetSocketAddress("127.0.0.3", 12345), new NeverReconnectStrategy(GlobalEventExecutor.INSTANCE, 2000),
71                                 new SessionListenerFactory<PCEPSessionListener>() {
72
73                                         @Override
74                                         public PCEPSessionListener getSessionListener() {
75                                                 return new SimpleSessionListener();
76                                         }
77                                 }).get();
78         }
79 }