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
9 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
19 package org.onap.policy.clamp.controlloop.participant.simulator.main.rest;
21 import static org.assertj.core.api.Assertions.assertThat;
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.assertNotNull;
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;
33 public class RestControllerTest {
35 private RestController ctlr;
36 private ResponseBuilder bldr;
40 ctlr = new RestController();
41 bldr = Response.status(Response.Status.OK);
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);
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));
61 public void testAddLoggingHeaders_Null() {
62 Response resp = ctlr.addLoggingHeaders(bldr, null).build();
63 assertNotNull(resp.getHeaderString(RestController.REQUEST_ID_NAME));
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));