Fixed the CLM Issues
[holmes/common.git] / holmes-actions / src / test / java / org / onap / holmes / common / dmaap / store / ClosedLoopControlNameCacheTest.java
1 /*
2  * Copyright 2020 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.holmes.common.dmaap.store;
17
18 import org.junit.Before;
19 import org.junit.Test;
20
21 import static org.hamcrest.CoreMatchers.equalTo;
22 import static org.hamcrest.CoreMatchers.nullValue;
23 import static org.junit.Assert.assertThat;
24
25 public class ClosedLoopControlNameCacheTest {
26
27     private ClosedLoopControlNameCache cache = new ClosedLoopControlNameCache();
28
29     @Before
30     public void setUp() {
31         cache.clear();
32     }
33
34     @Test
35     public void put() {
36         cache.put("org.onap.holmes.test", "control-loop-1");
37         assertThat(cache.get("org.onap.holmes.test"), equalTo("control-loop-1"));
38     }
39
40     @Test
41     public void remove() {
42         cache.put("org.onap.holmes.test", "control-loop-1");
43         assertThat(cache.get("org.onap.holmes.test"), equalTo("control-loop-1"));
44         cache.remove("org.onap.holmes.test");
45         assertThat(cache.get("org.onap.holmes.test"), nullValue());
46     }
47 }