summaryrefslogtreecommitdiffstats
path: root/lisp/lisp2vpp/src/test/java/io/fd/hc2vpp/lisp/translate/read/LispInitializingListReaderCustomizerTest.java
blob: b1af21fca64bbb3aeaa2840e534ad35251045bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.fd.hc2vpp.lisp.translate.read;

import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.when;

import io.fd.hc2vpp.common.test.read.InitializingListReaderCustomizerTest;
import io.fd.hc2vpp.lisp.translate.service.LispStateCheckService;
import io.fd.honeycomb.translate.read.ReadContext;
import io.fd.honeycomb.translate.read.ReadFailedException;
import java.util.List;
import java.util.Objects;
import org.junit.Test;
import org.mockito.Mock;
import org.opendaylight.yangtools.concepts.Builder;
import org.opendaylight.yangtools.yang.binding.DataObject;
import org.opendaylight.yangtools.yang.binding.Identifiable;
import org.opendaylight.yangtools.yang.binding.Identifier;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;

public abstract class LispInitializingListReaderCustomizerTest<D extends DataObject & Identifiable<K>, K extends Identifier<D>, B extends Builder<D>>
        extends InitializingListReaderCustomizerTest<D, K, B> {

    @Mock
    protected LispStateCheckService lispStateCheckService;

    protected LispInitializingListReaderCustomizerTest(final Class<D> dataObjectClass,
                                                       final Class<? extends Builder<? extends DataObject>> parentBuilderClass) {
        super(dataObjectClass, parentBuilderClass);
    }

    protected void mockLispEnabled() {
        when(lispStateCheckService.lispEnabled(any(ReadContext.class))).thenReturn(true);
    }

    @Test
    public void testNoInteractionsWhenLispDisabledOnReadSpecific() throws ReadFailedException {
        when(lispStateCheckService.lispEnabled(any(ReadContext.class))).thenReturn(false);
        final InstanceIdentifier<D> identifier = InstanceIdentifier.create(dataObjectClass);
        final B builderTouched = getCustomizer().getBuilder(identifier);
        final B builderUntouched = getCustomizer().getBuilder(identifier);
        getCustomizer().readCurrentAttributes(identifier, builderTouched, ctx);
        assertTrue("No interactions with builder expected while lisp is disabled",
                Objects.equals(builderTouched.build(), builderUntouched.build()));
    }

    @Test
    public void testNoInteractionsWhenLispDisabledOnReadAll() throws ReadFailedException {
        when(lispStateCheckService.lispEnabled(any(ReadContext.class))).thenReturn(false);
        final InstanceIdentifier<D> identifier = InstanceIdentifier.create(dataObjectClass);
        final List<K> allIds = getCustomizer().getAllIds(identifier, ctx);
        assertTrue("No ids should be returned while lisp is disabled", allIds.isEmpty());
    }
}