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