Merge "Drools-apps CSIT randomly fails deploying policies"
[integration/csit.git] / plans / usecases-pnf-sw-upgrade / pnf-sw-upgrade / sorch / simulator / aai-simulator / src / test / java / org / onap / so / aaisimulator / controller / PnfsControllerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 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  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.aaisimulator.controller;
21
22 import org.junit.After;
23 import org.junit.Test;
24 import org.onap.aai.domain.yang.v15.Pnf;
25 import org.onap.so.aaisimulator.service.providers.PnfCacheServiceProvider;
26 import org.onap.so.aaisimulator.utils.TestUtils;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.http.HttpStatus;
29 import org.springframework.http.ResponseEntity;
30
31 import static org.junit.Assert.assertEquals;
32 import static org.junit.Assert.assertTrue;
33
34
35 /**
36  * @author Raj Gumma (raj.gumma@est.tech)
37  *
38  */
39 public class PnfsControllerTest extends AbstractSpringBootTest {
40
41     @Autowired
42     private PnfCacheServiceProvider cacheServiceProvider;
43
44     private final String PNF="test-008";
45     private final String PNF_URL= "/aai/v15/network/pnfs/pnf/";
46
47
48     @After
49     public void after() {
50         cacheServiceProvider.clearAll();
51     }
52
53     @Test
54     public void test_pnf_successfullyAddedToCache() throws Exception {
55
56         final String url = getUrl(PNF_URL, PNF);
57         final ResponseEntity<Void> pnfResponse =
58                 testRestTemplateService.invokeHttpPut(url, TestUtils.getPnf(), Void.class);
59         assertEquals(HttpStatus.ACCEPTED, pnfResponse.getStatusCode());
60
61         final ResponseEntity<Pnf> response =
62                 testRestTemplateService.invokeHttpGet(url, Pnf.class);
63         assertEquals(HttpStatus.OK, response.getStatusCode());
64
65         assertTrue(response.hasBody());
66
67         final Pnf actualPnf = response.getBody();
68         assertEquals("test-008", actualPnf.getPnfName());
69         assertEquals("5f2602dc-f647-4535-8f1d-9ec079e68a49", actualPnf.getPnfId());
70
71     }
72 }