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.AfterClass;
31 import org.junit.Before;
32 import org.junit.BeforeClass;
33 import org.junit.Test;
34 import org.mockito.Mockito;
35 import org.onap.policy.clamp.controlloop.participant.simulator.simulation.SimulationHandler;
36 import org.onap.policy.common.utils.services.Registry;
38 public class RestControllerTest {
40 private RestController ctlr;
41 private ResponseBuilder bldr;
44 * Setup before class, instantiate SimulationHandler.
48 public static void setUpBeforeClass() throws Exception {
49 Registry.newRegistry();
50 Registry.register(SimulationHandler.class.getName(), Mockito.mock(SimulationHandler.class));
54 public static void teardownAfterClass() throws Exception {
55 Registry.unregister(SimulationHandler.class.getName());
63 ctlr = new RestController();
64 bldr = Response.status(Response.Status.OK);
68 public void testProduces() {
69 Produces annotation = RestController.class.getAnnotation(Produces.class);
70 assertNotNull(annotation);
71 assertThat(annotation.value()).contains(MediaType.APPLICATION_JSON)
72 .contains(RestController.APPLICATION_YAML);
76 public void testAddVersionControlHeaders() {
77 Response resp = ctlr.addVersionControlHeaders(bldr).build();
78 assertEquals("0", resp.getHeaderString(RestController.VERSION_MINOR_NAME));
79 assertEquals("0", resp.getHeaderString(RestController.VERSION_PATCH_NAME));
80 assertEquals("1.0.0", resp.getHeaderString(RestController.VERSION_LATEST_NAME));
84 public void testAddLoggingHeaders_Null() {
85 Response resp = ctlr.addLoggingHeaders(bldr, null).build();
86 assertNotNull(resp.getHeaderString(RestController.REQUEST_ID_NAME));
90 public void testAddLoggingHeaders_NonNull() {
91 UUID uuid = UUID.randomUUID();
92 Response resp = ctlr.addLoggingHeaders(bldr, uuid).build();
93 assertEquals(uuid.toString(), resp.getHeaderString(RestController.REQUEST_ID_NAME));