1311eee35d2b0bec3df1da9bc71b758545bc6b5b
[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.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;
37
38 public class RestControllerTest {
39
40     private RestController ctlr;
41     private ResponseBuilder bldr;
42
43     /**
44      * Setup before class, instantiate SimulationHandler.
45      *
46      */
47     @BeforeClass
48     public static void setUpBeforeClass() throws Exception {
49         Registry.newRegistry();
50         Registry.register(SimulationHandler.class.getName(), Mockito.mock(SimulationHandler.class));
51     }
52
53     @AfterClass
54     public static void teardownAfterClass() throws Exception {
55         Registry.unregister(SimulationHandler.class.getName());
56     }
57
58     /**
59      * set Up.
60      */
61     @Before
62     public void setUp() {
63         ctlr = new RestController();
64         bldr = Response.status(Response.Status.OK);
65     }
66
67     @Test
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);
73     }
74
75     @Test
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));
81     }
82
83     @Test
84     public void testAddLoggingHeaders_Null() {
85         Response resp = ctlr.addLoggingHeaders(bldr, null).build();
86         assertNotNull(resp.getHeaderString(RestController.REQUEST_ID_NAME));
87     }
88
89     @Test
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));
94     }
95 }