aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src/test/java/org/onap/so/asdc/installer/ToscaResourceStructureTest.java
blob: 1e8b72d145809d55c7ff198120a54fbdd0753e28 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 - 2018 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.asdc.installer;

import static com.shazam.shazamcrest.matcher.Matchers.sameBeanAs;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.mock;

import java.util.ArrayList;
import java.util.HashMap;

import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.onap.sdc.tosca.parser.impl.SdcCsarHelperImpl;
import org.onap.sdc.toscaparser.api.NodeTemplate;
import org.onap.sdc.toscaparser.api.elements.Metadata;
import org.onap.so.asdc.client.exceptions.ASDCDownloadException;
import org.onap.so.asdc.client.test.emulators.ArtifactInfoImpl;
import org.onap.so.db.catalog.beans.AllottedResource;
import org.onap.so.db.catalog.beans.AllottedResourceCustomization;
import org.onap.so.db.catalog.beans.NetworkResource;
import org.onap.so.db.catalog.beans.NetworkResourceCustomization;
import org.onap.so.db.catalog.beans.Service;
import org.onap.so.db.catalog.beans.TempNetworkHeatTemplateLookup;
import org.onap.so.db.catalog.beans.ToscaCsar;
import org.onap.so.db.catalog.beans.VfModule;
import org.onap.so.db.catalog.beans.VfModuleCustomization;
import org.onap.so.db.catalog.beans.VnfResourceCustomization;

public class ToscaResourceStructureTest {
	private ArtifactInfoImpl artifactInfo;
	private SdcCsarHelperImpl sdcCsarHelper;
	
	private ToscaResourceStructure toscaResourceStructure;
	
	@Rule
	public ExpectedException expectedException = ExpectedException.none();
	
	@Test
	public void toscaResourceStructureBeanTest() {
		artifactInfo = mock(ArtifactInfoImpl.class);
		sdcCsarHelper = mock(SdcCsarHelperImpl.class);
		
		toscaResourceStructure = new ToscaResourceStructure();
		toscaResourceStructure.setHeatTemplateUUID("heatTemplateUUID");
		toscaResourceStructure.setAllottedList(new ArrayList<NodeTemplate>());
		toscaResourceStructure.setSdcCsarHelper(sdcCsarHelper);
		toscaResourceStructure.setServiceMetadata(new Metadata(new HashMap<>()));
		toscaResourceStructure.setCatalogService(new Service());
		toscaResourceStructure.setNetworkTypes(new ArrayList<>());
		toscaResourceStructure.setVfTypes(new ArrayList<>());
		toscaResourceStructure.setCatalogResourceCustomization(new AllottedResourceCustomization());
		toscaResourceStructure.setCatalogNetworkResourceCustomization(new NetworkResourceCustomization());
		toscaResourceStructure.setCatalogNetworkResource(new NetworkResource());
		toscaResourceStructure.setCatalogVfModule(new VfModule());
		toscaResourceStructure.setVnfResourceCustomization(new VnfResourceCustomization());
		toscaResourceStructure.setVfModuleCustomization(new VfModuleCustomization());
		toscaResourceStructure.setAllottedResource(new AllottedResource());
		toscaResourceStructure.setAllottedResourceCustomization(new AllottedResourceCustomization());
		toscaResourceStructure.setCatalogTempNetworkHeatTemplateLookup(new TempNetworkHeatTemplateLookup());
		toscaResourceStructure.setHeatFilesUUID("heatFilesUUID");
		toscaResourceStructure.setToscaArtifact(artifactInfo);
		toscaResourceStructure.setToscaCsar(new ToscaCsar());
		toscaResourceStructure.setVolHeatTemplateUUID("volHeatTemplateUUID");
		toscaResourceStructure.setEnvHeatTemplateUUID("envHeatTemplateUUID");
		toscaResourceStructure.setServiceVersion("serviceVersion");
		toscaResourceStructure.setWorkloadPerformance("workloadPerformance");
		toscaResourceStructure.setVfModule(new VfModule());
		toscaResourceStructure.setTempNetworkHeatTemplateLookup(new TempNetworkHeatTemplateLookup());
		toscaResourceStructure.setSuccessfulDeployment();
		
		assertEquals("heatTemplateUUID", toscaResourceStructure.getHeatTemplateUUID());
		assertThat(toscaResourceStructure.getAllottedList(), sameBeanAs(new ArrayList<NodeTemplate>()));
		assertEquals(sdcCsarHelper, toscaResourceStructure.getSdcCsarHelper());
		assertThat(toscaResourceStructure.getServiceMetadata(), sameBeanAs(new Metadata(new HashMap<>())));
		assertThat(toscaResourceStructure.getCatalogService(), sameBeanAs(new Service()));
		assertThat(toscaResourceStructure.getNetworkTypes(), sameBeanAs(new ArrayList<>()));
		assertThat(toscaResourceStructure.getVfTypes(), sameBeanAs(new ArrayList<>()));
		assertThat(toscaResourceStructure.getCatalogResourceCustomization(), sameBeanAs(new AllottedResourceCustomization()));
		assertThat(toscaResourceStructure.getCatalogNetworkResourceCustomization(), sameBeanAs(new NetworkResourceCustomization()));
		assertThat(toscaResourceStructure.getCatalogNetworkResource(), sameBeanAs(new NetworkResource()));
		assertThat(toscaResourceStructure.getCatalogVfModule(), sameBeanAs(new VfModule()));
		assertThat(toscaResourceStructure.getVnfResourceCustomization(), sameBeanAs(new VnfResourceCustomization()));
		assertThat(toscaResourceStructure.getVfModuleCustomization(), sameBeanAs(new VfModuleCustomization()));
		assertThat(toscaResourceStructure.getAllottedResource(), sameBeanAs(new AllottedResource()));
		assertThat(toscaResourceStructure.getAllottedResourceCustomization(), sameBeanAs(new AllottedResourceCustomization()));
		assertThat(toscaResourceStructure.getCatalogTempNetworkHeatTemplateLookup(), sameBeanAs(new TempNetworkHeatTemplateLookup()));
		assertEquals("heatFilesUUID", toscaResourceStructure.getHeatFilesUUID());
		assertEquals(artifactInfo, toscaResourceStructure.getToscaArtifact());
		assertThat(toscaResourceStructure.getToscaCsar(), sameBeanAs(new ToscaCsar()));
		assertEquals("volHeatTemplateUUID", toscaResourceStructure.getVolHeatTemplateUUID());
		assertEquals("envHeatTemplateUUID", toscaResourceStructure.getEnvHeatTemplateUUID());
		assertEquals("serviceVersion", toscaResourceStructure.getServiceVersion());
		assertEquals("workloadPerformance", toscaResourceStructure.getWorkloadPerformance());
		assertThat(toscaResourceStructure.getVfModule(), sameBeanAs(new VfModule()));
		assertThat(toscaResourceStructure.getTempNetworkHeatTemplateLookup(), sameBeanAs(new TempNetworkHeatTemplateLookup()));
		assertEquals(true, toscaResourceStructure.isDeployedSuccessfully());
	}
	
	@Test
	public void updateResourceStructureExceptionTest() throws Exception {
		expectedException.expect(ASDCDownloadException.class);
		
		artifactInfo = mock(ArtifactInfoImpl.class);
		toscaResourceStructure = new ToscaResourceStructure();

		doReturn("artifactName").when(artifactInfo).getArtifactName();
		
		toscaResourceStructure.updateResourceStructure(artifactInfo);
	}
}