jin
5 years ago
committed by
gaojun2048
6 changed files with 151 additions and 55 deletions
@ -0,0 +1,38 @@ |
|||||||
|
/* |
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
* contributor license agreements. See the NOTICE file distributed with |
||||||
|
* this work for additional information regarding copyright ownership. |
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
* (the "License"); you may not use this file except in compliance with |
||||||
|
* the License. You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
package org.apache.dolphinscheduler.api.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import org.apache.dolphinscheduler.dao.entity.UserAlertGroup; |
||||||
|
import org.apache.dolphinscheduler.dao.mapper.UserAlertGroupMapper; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class UserAlertGroupService extends ServiceImpl<UserAlertGroupMapper, UserAlertGroup> { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private UserAlertGroupMapper userAlertGroupMapper; |
||||||
|
|
||||||
|
boolean deleteByAlertGroupId(Integer groupId) { |
||||||
|
return userAlertGroupMapper.deleteByAlertgroupId(groupId) >= 1; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,53 @@ |
|||||||
|
/* |
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
* contributor license agreements. See the NOTICE file distributed with |
||||||
|
* this work for additional information regarding copyright ownership. |
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
* (the "License"); you may not use this file except in compliance with |
||||||
|
* the License. You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
package org.apache.dolphinscheduler.api.service; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.dao.mapper.UserAlertGroupMapper; |
||||||
|
import static org.junit.Assert.assertEquals; |
||||||
|
import org.junit.Test; |
||||||
|
import org.junit.runner.RunWith; |
||||||
|
import org.mockito.ArgumentCaptor; |
||||||
|
import org.mockito.InjectMocks; |
||||||
|
import org.mockito.Mock; |
||||||
|
import org.mockito.Mockito; |
||||||
|
import org.mockito.junit.MockitoJUnitRunner; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
@RunWith(MockitoJUnitRunner.class) |
||||||
|
public class UserAlertGroupServiceTest { |
||||||
|
|
||||||
|
@InjectMocks |
||||||
|
UserAlertGroupService userAlertGroupService; |
||||||
|
|
||||||
|
@Mock |
||||||
|
UserAlertGroupMapper userAlertGroupMapper; |
||||||
|
|
||||||
|
@Test |
||||||
|
public void deleteByAlertGroupId() { |
||||||
|
|
||||||
|
Integer groupId = 1; |
||||||
|
userAlertGroupService.deleteByAlertGroupId(groupId); |
||||||
|
ArgumentCaptor<Integer> argumentCaptor = ArgumentCaptor.forClass(Integer.class); |
||||||
|
|
||||||
|
Mockito.verify(userAlertGroupMapper).deleteByAlertgroupId(argumentCaptor.capture()); |
||||||
|
assertEquals(argumentCaptor.getValue(), groupId); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue