PNF ingestion in SO catalogdb
[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
25 import org.junit.Test;
26 import org.onap.so.db.catalog.BaseTest;
27 import org.onap.so.db.catalog.beans.PnfResource;
28 import org.onap.so.db.catalog.beans.PnfResourceCustomization;
29 import org.onap.so.db.catalog.exceptions.NoEntityFoundException;
30 import org.springframework.beans.factory.annotation.Autowired;
31
32 public class PnfCustomizationRepositoryTest extends BaseTest {
33
34     @Autowired
35     private PnfCustomizationRepository pnfCustomizationRepository;
36
37     @Test
38     public void findById_ValidUuid_ExpectedOutput() throws Exception {
39         PnfResourceCustomization pnfResourceCustomization = pnfCustomizationRepository
40             .findById("68dc9a92-214c-11e7-93ae-92361f002680")
41             .orElseThrow(() -> new NoEntityFoundException("Cannot Find Operation"));
42         checkPnfResourceCustomization(pnfResourceCustomization);
43     }
44
45     private void checkPnfResourceCustomization(PnfResourceCustomization pnfResourceCustomization) {
46         assertEquals("modelInstanceName", "PNF routing", pnfResourceCustomization.getModelInstanceName());
47         assertEquals("blueprintName", "test_configuration_restconf", pnfResourceCustomization.getBlueprintName());
48         assertEquals("blueprintVersion", "1.0.0", pnfResourceCustomization.getBlueprintVersion());
49         PnfResource pnfResource = pnfResourceCustomization.getPnfResources();
50         assertNotNull(pnfResource);
51
52         assertEquals("PNFResource modelUUID", "ff2ae348-214a-11e7-93ae-92361f002680", pnfResource.getModelUUID());
53         assertEquals("PNFResource modelInvariantUUID", "2fff5b20-214b-11e7-93ae-92361f002680",
54             pnfResource.getModelInvariantUUID());
55         assertEquals("PNFResource modelVersion", "1.0", pnfResource.getModelVersion());
56         assertEquals("PNFResource orchestration mode", "", pnfResource.getOrchestrationMode());
57     }
58 }