fa51f77e3b0fbb3cdd3526ce89a18e3f3d30fdc4
[honeycomb.git] / v3po / v3po2vpp / src / test / java / io / fd / honeycomb / translate / v3po / vppstate / VersionCustomizerTest.java
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package io.fd.honeycomb.translate.v3po.vppstate;
18
19 import static org.mockito.Matchers.any;
20 import static org.mockito.Mockito.verify;
21 import static org.mockito.Mockito.when;
22
23 import io.fd.honeycomb.translate.spi.read.ReaderCustomizer;
24 import io.fd.honeycomb.vpp.test.read.ReaderCustomizerTest;
25 import org.junit.Test;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.VppStateBuilder;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.vpp.state.Version;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.vpp.state.VersionBuilder;
29 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
30 import io.fd.vpp.jvpp.core.dto.ShowVersion;
31 import io.fd.vpp.jvpp.core.dto.ShowVersionReply;
32
33 public class VersionCustomizerTest extends ReaderCustomizerTest<Version, VersionBuilder> {
34
35     public VersionCustomizerTest() {
36         super(Version.class, VppStateBuilder.class);
37     }
38
39     @Override
40     protected ReaderCustomizer<Version, VersionBuilder> initCustomizer() {
41         return new VersionCustomizer(api);
42     }
43
44     @Test
45     public void testReadCurrentAttributes() throws Exception {
46         final ShowVersionReply reply = new ShowVersionReply();
47         reply.version = new byte[] {};
48         reply.program = new byte[] {};
49         reply.buildDate = new byte[] {};
50         reply.buildDirectory = new byte[] {};
51
52         when(api.showVersion(any(ShowVersion.class))).thenReturn(future(reply));
53         getCustomizer().readCurrentAttributes(InstanceIdentifier.create(Version.class), new VersionBuilder(), ctx);
54         verify(api).showVersion(any(ShowVersion.class));
55     }
56 }