Unit test coverage
[appc.git] / appc-dispatcher / appc-dispatcher-common / domain-model-lib / src / test / java / org / onap / appc / domainmodel / lcm / TestRequestContext.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : APPC
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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 package org.onap.appc.domainmodel.lcm;
21
22 import static org.junit.Assert.*;
23
24 import org.junit.Assert;
25 import org.junit.Before;
26 import org.junit.Test;
27
28 import java.util.HashMap;
29 import java.util.Map;
30
31 public class TestRequestContext {
32     private RequestContext requestContext;
33     private Map<String, String> testadditionalContext;
34
35     @Before
36     public void setUp() {
37         requestContext = new RequestContext();
38     }
39
40     @Test
41     public void testGetActionLevel_ValidEnumConstant() {
42         requestContext.setActionLevel(ActionLevel.VM);
43         Assert.assertNotNull(requestContext. getActionLevel());
44         Assert.assertEquals(requestContext. getActionLevel(),ActionLevel.VM);
45     }
46
47     @Test
48     public void testgetAdditionalContext() {
49         testadditionalContext=new HashMap<String, String>();
50         testadditionalContext.put("A", "a");
51         requestContext.setAdditionalContext(testadditionalContext);
52         Assert.assertNotNull(requestContext.getAdditionalContext());
53         Assert.assertTrue(requestContext.getAdditionalContext().containsKey("A"));
54         Assert.assertTrue(requestContext.getAdditionalContext().containsValue("a"));
55     }
56
57     @Test
58     public void testGetPayload() {
59         requestContext.setPayload("ABC:2000");
60         Assert.assertNotNull(requestContext.getPayload());
61         Assert.assertEquals(requestContext.getPayload(), "ABC:2000");
62     }
63
64     @Test
65     public void testToString_ReturnNonEmptyString() {
66         assertNotEquals(requestContext.toString(), "");
67         assertNotEquals(requestContext.toString(), null);
68     }
69
70     @Test
71     public void testToString_ContainsString() {
72         assertTrue(requestContext.toString().contains("RequestContext{commonHeader"));
73     }
74
75 }