Switched from Dropwizard to Springboot
[holmes/engine-management.git] / engine-d / src / test / java / org / onap / holmes / engine / wrapper / RuleMgtWrapperTest.java
1 /**\r
2  * Copyright 2017-2021 ZTE Corporation.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.holmes.engine.wrapper;\r
18 \r
19 import org.junit.Before;\r
20 import org.junit.Rule;\r
21 import org.junit.Test;\r
22 import org.junit.rules.ExpectedException;\r
23 import org.onap.holmes.common.exception.CorrelationException;\r
24 import org.onap.holmes.engine.db.CorrelationRuleDaoService;\r
25 import org.powermock.api.easymock.PowerMock;\r
26 \r
27 import java.util.ArrayList;\r
28 \r
29 import static org.easymock.EasyMock.anyInt;\r
30 import static org.easymock.EasyMock.expect;\r
31 \r
32 public class RuleMgtWrapperTest {\r
33 \r
34     @Rule\r
35     public ExpectedException thrown = ExpectedException.none();\r
36     private CorrelationRuleDaoService correlationRuleDaoService;\r
37     private RuleMgtWrapper ruleMgtWrapper;\r
38 \r
39     @Before\r
40     public void setUp() {\r
41         correlationRuleDaoService = PowerMock.createMock(CorrelationRuleDaoService.class);\r
42         ruleMgtWrapper = new RuleMgtWrapper(correlationRuleDaoService);\r
43 \r
44         PowerMock.resetAll();\r
45     }\r
46 \r
47     @Test\r
48     public void queryRuleByEnable_normal() throws CorrelationException {\r
49         int enable = 3;\r
50         expect(correlationRuleDaoService.queryRuleByRuleEnable(anyInt())).andReturn(new ArrayList());\r
51         PowerMock.replayAll();\r
52         ruleMgtWrapper.queryRuleByEnable(enable);\r
53         PowerMock.verifyAll();\r
54     }\r
55 }\r