add alarm synchronization related operation
[holmes/engine-management.git] / engine-d / src / test / java / org / onap / holmes / engine / db / AlarmInfoDaoTest.java
1 /**\r
2  * Copyright 2017 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.db;\r
18 \r
19 import org.easymock.EasyMock;\r
20 import org.hamcrest.core.IsNot;\r
21 import org.hamcrest.core.IsNull;\r
22 import org.junit.Assert;\r
23 import org.junit.Before;\r
24 import org.junit.Rule;\r
25 import org.junit.Test;\r
26 import org.junit.rules.ExpectedException;\r
27 import org.onap.holmes.common.api.entity.AlarmInfo;\r
28 import org.onap.holmes.common.exception.AlarmInfoException;\r
29 import org.powermock.api.easymock.PowerMock;\r
30 \r
31 import java.util.ArrayList;\r
32 import java.util.List;\r
33 \r
34 public class AlarmInfoDaoTest {\r
35 \r
36 \r
37     private AlarmInfoDao alarmInfoDao;\r
38 \r
39     @Before\r
40     public void setUp() {\r
41         alarmInfoDao  = PowerMock.createMock(AlarmInfoDao.class);\r
42     }\r
43 \r
44     @Test\r
45     public void queryAllAlarm() throws Exception {\r
46 \r
47         EasyMock.expect(alarmInfoDao.queryAllAlarm()).andReturn(new ArrayList<AlarmInfo>());\r
48         PowerMock.replayAll();\r
49 \r
50         List<AlarmInfo> alarmInfoList = alarmInfoDao.queryAllAlarm();\r
51         PowerMock.verifyAll();\r
52         Assert.assertThat(alarmInfoList, IsNull.<List<AlarmInfo>>notNullValue());\r
53     }\r
54 }\r