Revert "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 import java.util.List;
19
20 import org.opendaylight.protocol.framework.AbstractDispatcher;
21 import org.opendaylight.protocol.framework.NeverReconnectStrategy;
22 import org.opendaylight.protocol.framework.ProtocolHandlerFactory;
23 import org.opendaylight.protocol.framework.ProtocolSession;
24 import org.opendaylight.protocol.framework.ReconnectStrategy;
25 import org.opendaylight.protocol.framework.SessionListener;
26 import org.opendaylight.protocol.framework.SessionListenerFactory;
27 import org.opendaylight.protocol.framework.SessionNegotiatorFactory;
28 import org.opendaylight.protocol.pcep.PCEPSessionListener;
29 import org.opendaylight.protocol.pcep.PCEPTlv;
30 import org.opendaylight.protocol.pcep.impl.DefaultPCEPSessionNegotiatorFactory;
31 import org.opendaylight.protocol.pcep.impl.PCEPHandlerFactory;
32 import org.opendaylight.protocol.pcep.impl.PCEPSessionImpl;
33 import org.opendaylight.protocol.pcep.object.PCEPOpenObject;
34 import org.opendaylight.protocol.pcep.tlv.NodeIdentifierTlv;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
36
37 import com.google.common.base.Preconditions;
38 import com.google.common.collect.Lists;
39
40 public class PCCMock<M, S extends ProtocolSession<M>, L extends SessionListener<M, ?, ?>> extends AbstractDispatcher<S, L> {
41
42         private final SessionNegotiatorFactory<M, S, L> negotiatorFactory;
43         private final ProtocolHandlerFactory<?> factory;
44
45         public PCCMock(final SessionNegotiatorFactory<M, S, L> negotiatorFactory, final ProtocolHandlerFactory<?> factory,
46                         final DefaultPromise<PCEPSessionImpl> defaultPromise) {
47                 this.negotiatorFactory = Preconditions.checkNotNull(negotiatorFactory);
48                 this.factory = Preconditions.checkNotNull(factory);
49         }
50
51         public Future<S> createClient(final InetSocketAddress address, final ReconnectStrategy strategy,
52                         final SessionListenerFactory<L> listenerFactory) {
53                 return super.createClient(address, strategy, new PipelineInitializer<S>() {
54                         @Override
55                         public void initializeChannel(final SocketChannel ch, final Promise<S> promise) {
56                                 ch.pipeline().addLast(PCCMock.this.factory.getDecoders());
57                                 ch.pipeline().addLast("negotiator", PCCMock.this.negotiatorFactory.getSessionNegotiator(listenerFactory, ch, promise));
58                                 ch.pipeline().addLast(PCCMock.this.factory.getEncoders());
59                         }
60                 });
61         }
62
63         public static void main(final String[] args) throws Exception {
64                 final List<PCEPTlv> tlvs = Lists.newArrayList();
65                 tlvs.add(new NodeIdentifierTlv(new byte[] { (byte) 127, (byte) 2, (byte) 3, (byte) 7 }));
66
67                 final SessionNegotiatorFactory<Message, PCEPSessionImpl, PCEPSessionListener> snf = new DefaultPCEPSessionNegotiatorFactory(new HashedWheelTimer(), new PCEPOpenObject(30, 120, 0, tlvs), 0);
68
69                 final PCCMock<Message, PCEPSessionImpl, PCEPSessionListener> pcc = new PCCMock<>(snf, new PCEPHandlerFactory(), new DefaultPromise<PCEPSessionImpl>(GlobalEventExecutor.INSTANCE));
70
71                 pcc.createClient(new InetSocketAddress("127.0.0.3", 12345), new NeverReconnectStrategy(GlobalEventExecutor.INSTANCE, 2000),
72                                 new SessionListenerFactory<PCEPSessionListener>() {
73
74                                         @Override
75                                         public PCEPSessionListener getSessionListener() {
76                                                 return new SimpleSessionListener();
77                                         }
78                                 }).get();
79         }
80 }