summaryrefslogtreecommitdiffstats
path: root/infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/read/GenericInitListReaderTest.java
blob: f695e66d7da49ceeec989aa4546188caafff96c8 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * 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.honeycomb.translate.impl.read;

import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyZeroInteractions;
import static org.mockito.Mockito.when;

import io.fd.honeycomb.translate.read.InitFailedException;
import io.fd.honeycomb.translate.read.ReadFailedException;
import io.fd.honeycomb.translate.spi.read.Initialized;
import io.fd.honeycomb.translate.spi.read.InitializingListReaderCustomizer;
import org.junit.Test;
import org.mockito.Mock;
import org.opendaylight.controller.md.sal.binding.api.DataBroker;
import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
import org.opendaylight.yangtools.concepts.Builder;

public class GenericInitListReaderTest extends AbstractListReaderTest {

    @Mock
    private DataBroker broker;
    @Mock
    private WriteTransaction writeTx;

    public GenericInitListReaderTest() {
        super(InitializingListReaderCustomizer.class);
    }

    @Override
    protected GenericListReader<AbstractListReaderTest.TestingData, AbstractListReaderTest.TestingData.TestingKey, Builder<AbstractListReaderTest.TestingData>> initReader() {
        return new GenericInitListReader<>(DATA_OBJECT_ID, getCustomizer());
    }

    @Override
    protected InitializingListReaderCustomizer<AbstractListReaderTest.TestingData, AbstractListReaderTest.TestingData.TestingKey, Builder<AbstractListReaderTest.TestingData>> getCustomizer() {
        return (InitializingListReaderCustomizer<AbstractListReaderTest.TestingData, AbstractListReaderTest.TestingData.TestingKey, Builder<AbstractListReaderTest.TestingData>>) super
            .getCustomizer();
    }

    @Override
    public GenericInitListReader<AbstractListReaderTest.TestingData, AbstractListReaderTest.TestingData.TestingKey, Builder<AbstractListReaderTest.TestingData>> getReader() {
        return (GenericInitListReader<AbstractListReaderTest.TestingData, AbstractListReaderTest.TestingData.TestingKey, Builder<AbstractListReaderTest.TestingData>>) super
            .getReader();
    }

    @SuppressWarnings("unchecked")
    @Test
    public void testInit() throws Exception {
        final Initialized<TestingData> initialized = Initialized.create(DATA_OBJECT_ID, data);
        when(getCustomizer().isPresent(any(), any(), any())).thenReturn(true);
        doReturn(initialized).when(getCustomizer()).init(any(), any(), any());
        when(broker.newWriteOnlyTransaction()).thenReturn(writeTx);

        getReader().init(broker, DATA_OBJECT_ID, ctx);

        verify(writeTx, times(2)).merge(LogicalDatastoreType.CONFIGURATION, DATA_OBJECT_ID, data, true);
        verify(writeTx, times(2)).submit();
    }

    @Test(expected = InitFailedException.class)
    public void testInitFailed() throws Exception {
        doThrow(new ReadFailedException(DATA_OBJECT_ID)).when(getCustomizer())
            .readCurrentAttributes(any(), any(), any());

        getReader().init(broker, DATA_OBJECT_ID, ctx);

        verifyZeroInteractions(writeTx);
    }
}