Policy-agent skeleton
[nonrtric.git] / policy-agent / src / test / java / org / oransc / policyagent / ApplicationTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.policyagent;
21
22 import static org.assertj.core.api.Assertions.assertThat;
23
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.springframework.boot.test.context.SpringBootTest;
27 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
28 import org.springframework.boot.web.server.LocalServerPort;
29 import org.springframework.test.context.junit4.SpringRunner;
30 import org.springframework.web.client.RestTemplate;
31
32 @RunWith(SpringRunner.class)
33 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
34 public class ApplicationTest {
35
36     @LocalServerPort
37     private int port;
38
39     private RestTemplate restTemplate = new RestTemplate();
40
41     @Test
42     public void getPolicy() throws Exception {
43         String cmd = "/policy?type=type3&instance=xxx";
44         String rsp = this.restTemplate.getForObject("http://localhost:" + port + cmd, String.class);
45         System.out.println("*** rsp " + rsp);
46         assertThat(rsp).contains("type3");
47     }
48
49 }