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