aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/reports/DeploymentReportGeneratorTest.java
blob: fa6e832db85f28f36af487ba90e971d5f7fe29c1 (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
/*-
 * ============LICENSE_START=======================================================
 * VID
 * ================================================================================
 * Copyright (C) 2019 Nokia 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.vid.reports;

import com.google.common.collect.ImmutableMap;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
import org.onap.vid.asdc.AsdcCatalogException;
import org.onap.vid.model.Service;
import org.onap.vid.model.ServiceModel;
import org.onap.vid.model.errorReport.ReportCreationParameters;
import org.onap.vid.mso.MsoBusinessLogic;
import org.onap.vid.mso.MsoResponseWrapper;
import org.onap.vid.services.VidService;

import java.util.Map;

import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

@RunWith(MockitoJUnitRunner.class)
public class DeploymentReportGeneratorTest {

	@Mock
	private MsoBusinessLogic msoBusinessLogic;
	@Mock
	private VidService vidService;

	@InjectMocks
	private DeploymentReportGenerator deploymentReportGenerator;

	@Test
	public void shouldReturnTrueIfConditionsOfGenerationAreFulfilled() {
		//given
		ReportCreationParameters parameters = new ReportCreationParameters();
		parameters.setRequestId("request_id");
		parameters.setServiceUuid("service_uuid");

		//when
		boolean actualResult = deploymentReportGenerator.canGenerate(parameters);

		//then
		assertThat(actualResult).isTrue();
	}

	@Test
	public void shouldGetOrchestrationRequestFromMso() {
		//given
		final String requestId = "request_id";
		MsoResponseWrapper expectedOrchestrationRequest = mock(MsoResponseWrapper.class);

		when(msoBusinessLogic.getOrchestrationRequest(requestId)).thenReturn(expectedOrchestrationRequest);

		//when
		MsoResponseWrapper actualOrchestrationRequest =
				deploymentReportGenerator.getOrchestrationRequestFromMso(requestId);

		//then
		assertThat(actualOrchestrationRequest).isEqualTo(expectedOrchestrationRequest);
	}

	@Test
	public void shouldGetServiceDetails() throws AsdcCatalogException {
		//given
		final String SERVICE_UUID = "service_uuid";
		ServiceModel serviceModel = mock(ServiceModel.class);
		Service expectedService = new Service();
		ImmutableMap<String, Object> expectedServiceDetails = ImmutableMap.of("details", expectedService);

		when(vidService.getService(SERVICE_UUID)).thenReturn(serviceModel);
		when(serviceModel.getService()).thenReturn(expectedService);

		//when
		Map<String, Object> actualServiceDetails = deploymentReportGenerator.getServiceDetails(SERVICE_UUID);

		//then
		assertThat(actualServiceDetails).isEqualTo(expectedServiceDetails);
	}

	@Test
	public void shouldGetNullPointerExceptionInfoInMapWhenWrongUuidIsGiven() {
		//given
		final String NOT_EXISTING_UUID = "8ad001d0-1111-2222-3333-123412341234";
		NullPointerException expectedException = new NullPointerException("msg");

		Map<String, Object> expectedResult = ImmutableMap.<String, Object>builder()
				.put("message", "Service details for given uuid were not found")
				.put("exception", expectedException.toString())
				.put("serviceUuid", NOT_EXISTING_UUID)
				.build();

		//when
		Map<String, Object> actualResult =
				deploymentReportGenerator.generateServiceDetailsExceptionResponse(NOT_EXISTING_UUID, expectedException);

		//then
		assertThat(actualResult).isEqualTo(expectedResult);
	}
}