Sonar Fixes - MusicDataStoreHandle.java
[music.git] / src / test / java / org / onap / music / unittests / jsonobjects / JsonDeleteTest.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.unittests.jsonobjects;
24
25 import static org.junit.Assert.*;
26 import java.util.ArrayList;
27 import java.util.HashMap;
28 import java.util.Map;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.onap.music.datastore.jsonobjects.JsonDelete;
32
33 public class JsonDeleteTest {
34     
35     JsonDelete jd = null;
36     
37     @Before
38     public void init() {
39         jd = new JsonDelete();
40     }
41     
42     
43     @Test
44     public void testGetConditions() {
45         Map<String,Object>  mapSo = new HashMap<>();
46         mapSo = new HashMap<>();
47         mapSo.put("key1","one");
48         mapSo.put("key2","two");
49         jd.setConditions(mapSo);
50         assertEquals("one",jd.getConditions().get("key1"));
51     }
52
53     @Test
54     public void testGetConsistencyInfo() {
55         Map<String,String>  mapSs = new HashMap<>();
56         mapSs = new HashMap<>();
57         mapSs.put("key3","three");
58         mapSs.put("key4","four");
59         jd.setConsistencyInfo(mapSs);
60         assertEquals("three",jd.getConsistencyInfo().get("key3"));
61     }
62
63     @Test
64     public void testGetColumns() {
65         ArrayList<String> ary = new ArrayList<>();
66         ary = new ArrayList<>();
67         ary.add("e1");
68         ary.add("e2");
69         ary.add("e3");
70         jd.setColumns(ary);
71         assertEquals("e1",jd.getColumns().get(0));
72     }
73
74     @Test
75     public void testGetTtl() {
76         jd.setTtl("2000");
77         assertEquals("2000",jd.getTtl());
78     }
79
80     @Test
81     public void testGetTimestamp() {
82         jd.setTimestamp("20:00");
83         assertEquals("20:00",jd.getTimestamp());
84
85     }
86
87 }