Merge "switch drools pdp image to new one"
[integration.git] / test / mocks / mass-pnf-sim / pnf-sim-lightweight / src / test / java / org / onap / pnfsimulator / rest / util / ResponseBuilderTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * PNF-REGISTRATION-HANDLER
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.pnfsimulator.rest.util;
22
23 import static org.junit.jupiter.api.Assertions.assertAll;
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.junit.jupiter.api.Assertions.assertNull;
26
27 import java.util.Map;
28 import org.junit.jupiter.api.Test;
29 import org.springframework.http.HttpStatus;
30 import org.springframework.http.ResponseEntity;
31
32 public class ResponseBuilderTest {
33
34
35     private static final HttpStatus SAMPLE_STATUS = HttpStatus.OK;
36
37     @Test
38     void response_should_have_empty_body_when_built_immediately() {
39         ResponseEntity responseEntity = ResponseBuilder.status(SAMPLE_STATUS).build();
40
41         assertAll(
42             () -> assertEquals(responseEntity.getStatusCode(), SAMPLE_STATUS),
43             () -> assertNull(responseEntity.getBody())
44         );
45     }
46
47     @Test
48     void builder_should_set_response_status_and_body() {
49         String key = "key";
50         String value = "value";
51         ResponseEntity response = ResponseBuilder
52             .status(SAMPLE_STATUS)
53             .put(key, value)
54             .build();
55
56         Map<String, Object> body = (Map<String, Object>) response.getBody();
57
58         assertAll(
59             () -> assertEquals(SAMPLE_STATUS, response.getStatusCode()),
60             () -> assertEquals(value, body.get(key))
61         );
62     }
63
64
65 }