c7a39c48b361ca40cefbf78c87908da9b5a0c27b
[policy/clamp.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 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  * ============LICENSE_END=========================================================
17  */
18
19 package org.onap.policy.clamp.controlloop.participant.simulator.main.rest;
20
21 import static org.assertj.core.api.Assertions.assertThat;
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.assertNotNull;
24
25 import java.util.UUID;
26 import javax.ws.rs.Produces;
27 import javax.ws.rs.core.MediaType;
28 import javax.ws.rs.core.Response;
29 import javax.ws.rs.core.Response.ResponseBuilder;
30 import org.junit.Before;
31 import org.junit.Test;
32
33 public class RestControllerTest {
34
35     private RestController ctlr;
36     private ResponseBuilder bldr;
37
38     @Before
39     public void setUp() {
40         ctlr = new RestController();
41         bldr = Response.status(Response.Status.OK);
42     }
43
44     @Test
45     public void testProduces() {
46         Produces annotation = RestController.class.getAnnotation(Produces.class);
47         assertNotNull(annotation);
48         assertThat(annotation.value()).contains(MediaType.APPLICATION_JSON)
49                         .contains(RestController.APPLICATION_YAML);
50     }
51
52     @Test
53     public void testAddVersionControlHeaders() {
54         Response resp = ctlr.addVersionControlHeaders(bldr).build();
55         assertEquals("0", resp.getHeaderString(RestController.VERSION_MINOR_NAME));
56         assertEquals("0", resp.getHeaderString(RestController.VERSION_PATCH_NAME));
57         assertEquals("1.0.0", resp.getHeaderString(RestController.VERSION_LATEST_NAME));
58     }
59
60     @Test
61     public void testAddLoggingHeaders_Null() {
62         Response resp = ctlr.addLoggingHeaders(bldr, null).build();
63         assertNotNull(resp.getHeaderString(RestController.REQUEST_ID_NAME));
64     }
65
66     @Test
67     public void testAddLoggingHeaders_NonNull() {
68         UUID uuid = UUID.randomUUID();
69         Response resp = ctlr.addLoggingHeaders(bldr, uuid).build();
70         assertEquals(uuid.toString(), resp.getHeaderString(RestController.REQUEST_ID_NAME));
71     }
72 }