Adding customer and serive subscription handling
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / src / test / java / org / onap / so / aai / simulator / controller / AaiSimulatorControllerTest.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  *
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.aai.simulator.controller;
21
22 import static org.junit.Assert.assertEquals;
23 import org.junit.Test;
24 import org.junit.runner.RunWith;
25 import org.onap.so.aai.simulator.utils.Constant;
26 import org.springframework.beans.factory.annotation.Autowired;
27 import org.springframework.boot.test.context.SpringBootTest;
28 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
29 import org.springframework.boot.test.web.client.TestRestTemplate;
30 import org.springframework.boot.web.server.LocalServerPort;
31 import org.springframework.context.annotation.Configuration;
32 import org.springframework.http.ResponseEntity;
33 import org.springframework.test.context.ActiveProfiles;
34 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
35
36 /**
37  * @author waqas.ikram@ericsson.com
38  *
39  */
40 @RunWith(SpringJUnit4ClassRunner.class)
41 @ActiveProfiles("test")
42 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
43 @Configuration
44 public class AaiSimulatorControllerTest {
45
46     @LocalServerPort
47     private int port;
48
49     @Autowired
50     private TestRestTemplate restTemplate;
51
52     @Test
53     public void test_healthCheck_matchContent() {
54         final String url = getBaseUrl() + "/healthcheck";
55         final ResponseEntity<String> object = restTemplate.getForEntity(url, String.class);
56
57         assertEquals(Constant.HEALTHY, object.getBody());
58     }
59
60     private String getBaseUrl() {
61         return "http://localhost:" + port + Constant.BASE_URL;
62     }
63
64 }