PNF WF post instantiation configuration
[so.git] / mso-catalog-db / src / test / java / org / onap / so / db / catalog / data / repository / PnfCustomizationRepositoryTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.so.db.catalog.data.repository;
21
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.assertTrue;
25
26 import java.util.List;
27 import org.junit.Test;
28 import org.onap.so.db.catalog.BaseTest;
29 import org.onap.so.db.catalog.beans.PnfResource;
30 import org.onap.so.db.catalog.beans.PnfResourceCustomization;
31 import org.onap.so.db.catalog.exceptions.NoEntityFoundException;
32 import org.springframework.beans.factory.annotation.Autowired;
33
34 public class PnfCustomizationRepositoryTest extends BaseTest {
35
36     @Autowired
37     private PnfCustomizationRepository pnfCustomizationRepository;
38
39     @Test
40     public void findById_ValidUuid_ExpectedOutput() throws Exception {
41         PnfResourceCustomization pnfResourceCustomization = pnfCustomizationRepository
42             .findById("68dc9a92-214c-11e7-93ae-92361f002680")
43             .orElseThrow(() -> new NoEntityFoundException("Cannot Find Operation"));
44         checkPnfResourceCustomization(pnfResourceCustomization);
45     }
46
47     @Test
48     public void findPnfResourceCustomizationByModelUuid_ValidServiceUuidAndCustomizationUuid_ExpectedOutput() {
49         List<PnfResourceCustomization> pnfResourceCustomizationList = pnfCustomizationRepository
50             .findPnfResourceCustomizationByModelUuid("5df8b6de-2083-11e7-93ae-92361f002676");
51         assertEquals("Found the matching resource entity", 1, pnfResourceCustomizationList.size());
52         checkPnfResourceCustomization(pnfResourceCustomizationList.get(0));
53     }
54
55     private void checkPnfResourceCustomization(PnfResourceCustomization pnfResourceCustomization) {
56         assertEquals("modelInstanceName", "PNF routing", pnfResourceCustomization.getModelInstanceName());
57         assertEquals("blueprintName", "test_configuration_restconf", pnfResourceCustomization.getBlueprintName());
58         assertEquals("blueprintVersion", "1.0.0", pnfResourceCustomization.getBlueprintVersion());
59         assertTrue("skip post instantiation configuration", pnfResourceCustomization.isSkipPostInstConf());
60         PnfResource pnfResource = pnfResourceCustomization.getPnfResources();
61         assertNotNull(pnfResource);
62
63         assertEquals("PNFResource modelUUID", "ff2ae348-214a-11e7-93ae-92361f002680", pnfResource.getModelUUID());
64         assertEquals("PNFResource modelInvariantUUID", "2fff5b20-214b-11e7-93ae-92361f002680",
65             pnfResource.getModelInvariantUUID());
66         assertEquals("PNFResource modelVersion", "1.0", pnfResource.getModelVersion());
67         assertEquals("PNFResource orchestration mode", "", pnfResource.getOrchestrationMode());
68     }
69 }