summaryrefslogtreecommitdiffstats
path: root/bpmn/so-bpmn-tasks/src/test/java/org/onap/so/client/orchestration/AAIVpnBindingResourcesTest.java
blob: 2688b33e5169ef79fed2cb0f49eabe45074cb418 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.so.client.orchestration;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.ArgumentMatchers.isA;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.util.Optional;
import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.onap.aai.domain.yang.VpnBindings;
import org.onap.so.bpmn.BaseTaskTest;
import org.onap.so.bpmn.servicedecomposition.bbobjects.Customer;
import org.onap.so.bpmn.servicedecomposition.bbobjects.VpnBinding;
import org.onap.so.client.aai.entities.uri.AAIPluralResourceUri;
import org.onap.so.client.aai.entities.uri.AAIResourceUri;


public class AAIVpnBindingResourcesTest extends BaseTaskTest {

    @InjectMocks
    private AAIVpnBindingResources aaiVpnBindingResources = new AAIVpnBindingResources();

    private Customer customer;

    @Before
    public void before() {
        customer = buildCustomer();
        doReturn(MOCK_aaiResourcesClient).when(MOCK_injectionHelper).getAaiClient();
    }

    @Test
    public void createCustomerTest() {
        org.onap.aai.domain.yang.Customer mappedCustomer = new org.onap.aai.domain.yang.Customer();
        mappedCustomer.setGlobalCustomerId(customer.getGlobalCustomerId());

        doReturn(mappedCustomer).when(MOCK_aaiObjectMapper).mapCustomer(customer);
        doNothing().when(MOCK_aaiResourcesClient).create(isA(AAIResourceUri.class),
                isA(org.onap.aai.domain.yang.Customer.class));

        aaiVpnBindingResources.createCustomer(customer);

        verify(MOCK_aaiResourcesClient, times(1)).create(isA(AAIResourceUri.class),
                isA(org.onap.aai.domain.yang.Customer.class));
        verify(MOCK_aaiObjectMapper, times(1)).mapCustomer(customer);
    }

    @Test
    public void getVpnBindingTest() {
        org.onap.aai.domain.yang.VpnBinding vpnBinding = new org.onap.aai.domain.yang.VpnBinding();
        vpnBinding.setVpnId("vnfId");
        when(MOCK_aaiResourcesClient.get(eq(org.onap.aai.domain.yang.VpnBinding.class), isA(AAIResourceUri.class)))
                .thenReturn(Optional.of(vpnBinding));
        aaiVpnBindingResources.getVpnBinding("vpnId");
        verify(MOCK_aaiResourcesClient, times(1)).get(eq(org.onap.aai.domain.yang.VpnBinding.class),
                isA(AAIResourceUri.class));
    }

    @Test
    public void existsCustomerTest() {
        when(MOCK_aaiResourcesClient.exists(isA(AAIResourceUri.class))).thenReturn(true);
        boolean isCustomerExist = aaiVpnBindingResources.existsCustomer(customer);
        verify(MOCK_aaiResourcesClient, times(1)).exists(isA(AAIResourceUri.class));
        assertEquals(true, isCustomerExist);
    }

    @Test
    public void getVpnBindingByCustomerVpnIdTest() {
        when(MOCK_aaiResourcesClient.get(eq(VpnBindings.class), isA(AAIPluralResourceUri.class)))
                .thenReturn(Optional.of(new VpnBindings()));
        Optional<VpnBindings> vpnBindings = aaiVpnBindingResources.getVpnBindingByCustomerVpnId("testCustomerVpnId");
        assertNotNull(vpnBindings.get());
        verify(MOCK_aaiResourcesClient, times(1)).get(eq(org.onap.aai.domain.yang.VpnBindings.class),
                isA(AAIPluralResourceUri.class));
    }

    @Test
    public void createVpnBindingTest() {
        doNothing().when(MOCK_aaiResourcesClient).create(isA(AAIResourceUri.class),
                isA(org.onap.aai.domain.yang.VpnBinding.class));
        org.onap.aai.domain.yang.VpnBinding mappedVpnBinding = new org.onap.aai.domain.yang.VpnBinding();
        mappedVpnBinding.setVpnName("test");

        doReturn(mappedVpnBinding).when(MOCK_aaiObjectMapper).mapVpnBinding(isA(VpnBinding.class));
        VpnBinding vpnBinding = buildVpnBinding();
        aaiVpnBindingResources.createVpnBinding(vpnBinding);

        verify(MOCK_aaiResourcesClient, times(1)).create(isA(AAIResourceUri.class),
                isA(org.onap.aai.domain.yang.VpnBinding.class));
        verify(MOCK_aaiObjectMapper, times(1)).mapVpnBinding(isA(VpnBinding.class));
    }

    @Test
    public void connectCustomerToVpnBinding() {
        doNothing().when(MOCK_aaiResourcesClient).connect(isA(AAIResourceUri.class), isA(AAIResourceUri.class));
        aaiVpnBindingResources.connectCustomerToVpnBinding("testCustId", "testVpnId");
        verify(MOCK_aaiResourcesClient, times(1)).connect(isA(AAIResourceUri.class), isA(AAIResourceUri.class));
    }
}