aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/controllers/VidControllerTest.java
blob: 168d9009082a4e6f9f5ecdc522dad39ca1b57b0a (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*-
 * ============LICENSE_START=======================================================
 * VID
 * ================================================================================
 * Modifications Copyright 2018 Nokia
 * ================================================================================
 * 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.vid.controllers;


import static java.util.stream.Collectors.toMap;
import static org.assertj.core.api.Assertions.assertThat;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.nullValue;
import static org.hamcrest.Matchers.not;
import static org.mockito.BDDMockito.given;
import static org.mockito.BDDMockito.then;
import static org.mockito.Mockito.times;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.stream.IntStream;
import javax.ws.rs.core.MediaType;
import org.apache.log4j.BasicConfigurator;
import org.codehaus.jackson.map.ObjectMapper;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.ArgumentCaptor;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.onap.vid.asdc.AsdcCatalogException;
import org.onap.vid.asdc.beans.SecureServices;
import org.onap.vid.asdc.beans.Service;
import org.onap.vid.asdc.beans.ServiceBuilder;
import org.onap.vid.model.CR;
import org.onap.vid.model.Network;
import org.onap.vid.model.Node;
import org.onap.vid.model.PombaInstance.PombaRequest;
import org.onap.vid.model.PombaInstance.ServiceInstance;
import org.onap.vid.model.ServiceModel;
import org.onap.vid.model.ServiceProxy;
import org.onap.vid.model.VNF;
import org.onap.vid.model.VfModule;
import org.onap.vid.model.VolumeGroup;
import org.onap.vid.roles.RoleProvider;
import org.onap.vid.services.AaiService;
import org.onap.vid.services.PombaService;
import org.onap.vid.services.VidService;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;

@RunWith(MockitoJUnitRunner.class)
public class VidControllerTest {

    public static final String REST_MODELS_SERVICES = "/rest/models/services";
    public static final String REST_MODELS_SERVICES_UUID = "/rest/models/services/{uuid}";
    public static final String REST_MODELS_RESET = "/rest/models/reset";
    public static final String REST_MODELS_SERVICES_VERIFY_SERVICE = "/rest/models/services/verifyService";
    @Mock
    private VidService vidService;
    @Mock
    private AaiService aaiService;
    @Mock
    private RoleProvider roleProvider;
    @Mock
    private PombaService pombaService;

    private VidController vidController;
    private MockMvc mockMvc;
    private ObjectMapper objectMapper;

    private String uuid1;
    private String uuid2;
    private String uuid3;

    @Before
    public void setUp() {
        vidController = new VidController(vidService, aaiService, roleProvider, pombaService);
        BasicConfigurator.configure();
        mockMvc = MockMvcBuilders.standaloneSetup(vidController).build();
        objectMapper = new ObjectMapper();

        uuid1 = UUID.randomUUID().toString();
        uuid2 = UUID.randomUUID().toString();
        uuid3 = UUID.randomUUID().toString();
    }

    @Test
    public void getServices_shouldReturnService_whenServiceExists() throws Exception {
        List<Service> services = ImmutableList.of(createService(uuid1, 1), createService(uuid2, 2), createService(uuid3, 3));

        given(aaiService.getServicesByDistributionStatus()).willReturn(services);

        SecureServices secureServices = new SecureServices();
        secureServices.setServices(services);
        secureServices.setReadOnly(false);

        mockMvc.perform(get(REST_MODELS_SERVICES)
            .contentType(MediaType.APPLICATION_JSON))
            .andExpect(status().isOk())
            .andExpect(content().json(objectMapper.writeValueAsString(secureServices)));
    }

    @Test
    public void getService_shouldReturnService_whenNoExceptionIsThrown() throws Exception {
        ServiceModel model = expectedServiceModel(uuid1);

        given(vidService.getService(uuid1)).willReturn(model);

        mockMvc.perform(get(REST_MODELS_SERVICES_UUID, uuid1)
            .contentType(MediaType.APPLICATION_JSON))
            .andExpect(status().isOk())
            .andExpect(content().json(objectMapper.writeValueAsString(model)));
    }

    @Test
    public void getService_shouldThrow_whenAsdcCatalogExceptionIsThrown() throws Exception {
        String testUuid = UUID.randomUUID().toString();

        given(vidService.getService(testUuid)).willThrow(new AsdcCatalogException("error msg"));

        mockMvc.perform(get(REST_MODELS_SERVICES_UUID, testUuid)
            .contentType(MediaType.APPLICATION_JSON))
            .andExpect(status().isServiceUnavailable());
    }

    @Test
    public void invalidateServiceModelCache_shouldReturnAccepted() throws Exception {
        mockMvc.perform(post(REST_MODELS_RESET)
            .contentType(MediaType.APPLICATION_JSON))
            .andExpect(status().isAccepted());

        then(vidService).should(times(1)).invalidateServiceCache();
    }

    @Test
    public void verifyServiceInstance_shouldReturnOk() throws Exception {
        PombaRequest pombaRequest = new PombaRequest();
        pombaRequest.serviceInstanceList = ImmutableList.of(new ServiceInstance());

        mockMvc.perform(post(REST_MODELS_SERVICES_VERIFY_SERVICE)
            .contentType(MediaType.APPLICATION_JSON)
            .content(objectMapper.writeValueAsString(pombaRequest)))
            .andExpect(status().isOk());

        ArgumentCaptor<PombaRequest> argumentCaptor = ArgumentCaptor.forClass(PombaRequest.class);
        then(pombaService).should(times(1)).verify(argumentCaptor.capture());

        assertThat(pombaRequest).isEqualToComparingFieldByFieldRecursively(argumentCaptor.getValue());
    }

    private ServiceModel expectedServiceModel(String uuid) {
        final ServiceModel serviceModel = getModelsByUuid().get(uuid);
        Assert.assertThat(serviceModel, is(not(nullValue())));
        return serviceModel;
    }

    private Service createService(String uuid, int i) {
        return new ServiceBuilder().setUuid(uuid).setInvariantUUID("invariantUUID" + i)
            .setCategory("category" + i).setVersion("version" + i).setName("name" + i)
            .setDistributionStatus("distStatus" + i).setToscaModelURL("toscaModelUrl" + i).build();
    }

    private ServiceModel createServiceModel(int i) {
        ServiceModel model = new ServiceModel();

        model.setCollectionResource(ImmutableMap.of("resKey" + i, new CR()));
        model.setNetworks(ImmutableMap.of("network" + i, new Network()));
        model.setPnfs(ImmutableMap.of("pnf" + i, new Node()));
        model.setServiceProxies(ImmutableMap.of("servProxy" + i, new ServiceProxy()));
        model.setVfModules(ImmutableMap.of("vfmod" + i, new VfModule()));
        model.setVnfs(ImmutableMap.of("vnf" + i, new VNF()));
        model.setVolumeGroups(ImmutableMap.of("volgroup" + i, new VolumeGroup()));
        model.setService(new org.onap.vid.model.Service());
        return model;
    }

    private Map<String, ServiceModel> getModelsByUuid() {
        ServiceModel serviceModel1 = createServiceModel(1);
        ServiceModel serviceModel2 = createServiceModel(2);
        ServiceModel serviceModel3 = createServiceModel(3);

        List<ServiceModel> pseudoServiceModels = ImmutableList.of(serviceModel1, serviceModel2, serviceModel3);
        List<String> uuids = ImmutableList.of(uuid1, uuid2, uuid3);
        return IntStream.range(0, pseudoServiceModels.size()).boxed()
            .collect(toMap(i -> uuids.get(i), i -> pseudoServiceModels.get(i)));
    }
}