14785280c54a67374605cbaa6e75f3384f9d2e66
[bgpcep.git] / bgp / parser-mock / src / main / java / org / opendaylight / protocol / bgp / parser / mock / BGPMessageParserMock.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.bgp.parser.mock;
9
10 import java.util.Map;
11
12 import org.opendaylight.protocol.bgp.parser.BGPMessage;
13 import org.opendaylight.protocol.framework.DeserializerException;
14 import org.opendaylight.protocol.framework.DocumentedException;
15 import org.opendaylight.protocol.framework.ProtocolMessage;
16 import org.opendaylight.protocol.framework.ProtocolMessageFactory;
17
18 /**
19  * Mock implementation of {@link BGPMessageParser}. It implements the required interface by having two internal maps,
20  * each used in one of the methods. It looks up the key provided to the method and returns whatever value is stored in
21  * the map.
22  */
23 public class BGPMessageParserMock implements ProtocolMessageFactory {
24         private final Map<byte[], BGPMessage> messages;
25
26         /**
27          * @param updateMessages Map<byte[], BGPUpdateEvent>
28          */
29         public BGPMessageParserMock(final Map<byte[], BGPMessage> messages) {
30                 this.messages = messages;
31         }
32
33         @Override
34         public BGPMessage parse(final byte[] bytes) throws DeserializerException, DocumentedException {
35                 final BGPMessage ret = this.messages.get(bytes);
36                 if (ret == null)
37                         throw new IllegalArgumentException("Undefined message encountered");
38                 return ret;
39         }
40
41         @Override
42         public byte[] put(final ProtocolMessage msg) {
43                 // nothing
44                 return null;
45         }
46 }