Browse Source
* [DS-9204][feat][alert,dao] Implement alert send status - implement alert send status - add alert send status entity、mapper - modify alert dao - modify alert sender - add test - add sql This closes #9204 * [DS-9204][feat][alert,dao] Implement alert send status - add license header This closes #92043.0.0/version-upgrade
worry
3 years ago
committed by
GitHub
10 changed files with 318 additions and 4 deletions
@ -0,0 +1,145 @@ |
|||||||
|
/* |
||||||
|
* 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.dao.entity; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.common.enums.AlertStatus; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
import java.util.StringJoiner; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import com.google.common.base.Objects; |
||||||
|
|
||||||
|
@TableName("t_ds_alert_send_status") |
||||||
|
public class AlertSendStatus { |
||||||
|
/** |
||||||
|
* primary key |
||||||
|
*/ |
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private int id; |
||||||
|
|
||||||
|
/** |
||||||
|
* alert id |
||||||
|
*/ |
||||||
|
@TableField(value = "alert_id") |
||||||
|
private int alertId; |
||||||
|
|
||||||
|
/** |
||||||
|
* alert plugin instance id |
||||||
|
*/ |
||||||
|
@TableField(value = "alert_plugin_instance_id") |
||||||
|
private int alertPluginInstanceId; |
||||||
|
|
||||||
|
/** |
||||||
|
* alert send status |
||||||
|
*/ |
||||||
|
@TableField(value = "send_status") |
||||||
|
private AlertStatus sendStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* log |
||||||
|
*/ |
||||||
|
@TableField(value = "log") |
||||||
|
private String log; |
||||||
|
|
||||||
|
/** |
||||||
|
* create_time |
||||||
|
*/ |
||||||
|
@TableField("create_time") |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
public int getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(int id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public int getAlertId() { |
||||||
|
return alertId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setAlertId(int alertId) { |
||||||
|
this.alertId = alertId; |
||||||
|
} |
||||||
|
|
||||||
|
public int getAlertPluginInstanceId() { |
||||||
|
return alertPluginInstanceId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setAlertPluginInstanceId(int alertPluginInstanceId) { |
||||||
|
this.alertPluginInstanceId = alertPluginInstanceId; |
||||||
|
} |
||||||
|
|
||||||
|
public AlertStatus getSendStatus() { |
||||||
|
return sendStatus; |
||||||
|
} |
||||||
|
|
||||||
|
public void setSendStatus(AlertStatus sendStatus) { |
||||||
|
this.sendStatus = sendStatus; |
||||||
|
} |
||||||
|
|
||||||
|
public String getLog() { |
||||||
|
return log; |
||||||
|
} |
||||||
|
|
||||||
|
public void setLog(String log) { |
||||||
|
this.log = log; |
||||||
|
} |
||||||
|
|
||||||
|
public Date getCreateTime() { |
||||||
|
return createTime; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCreateTime(Date createTime) { |
||||||
|
this.createTime = createTime; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean equals(Object o) { |
||||||
|
if (this == o) { |
||||||
|
return true; |
||||||
|
} |
||||||
|
if (o == null || getClass() != o.getClass()) { |
||||||
|
return false; |
||||||
|
} |
||||||
|
AlertSendStatus that = (AlertSendStatus) o; |
||||||
|
return alertId == that.alertId && alertPluginInstanceId == that.alertPluginInstanceId; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int hashCode() { |
||||||
|
return Objects.hashCode(alertId, alertPluginInstanceId); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String toString() { |
||||||
|
return new StringJoiner(", ", AlertSendStatus.class.getSimpleName() + "[", "]") |
||||||
|
.add("id=" + id) |
||||||
|
.add("alertId=" + alertId) |
||||||
|
.add("alertPluginInstanceId=" + alertPluginInstanceId) |
||||||
|
.add("sendStatus=" + sendStatus) |
||||||
|
.add("log='" + log + "'") |
||||||
|
.add("createTime=" + createTime) |
||||||
|
.toString(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
/* |
||||||
|
* 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.dao.mapper; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.dao.entity.AlertSendStatus; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
|
||||||
|
public interface AlertSendStatusMapper extends BaseMapper<AlertSendStatus> { |
||||||
|
} |
@ -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.dao.mapper; |
||||||
|
|
||||||
|
import static org.hamcrest.Matchers.greaterThan; |
||||||
|
import static org.junit.Assert.assertThat; |
||||||
|
|
||||||
|
import org.apache.dolphinscheduler.common.enums.AlertStatus; |
||||||
|
import org.apache.dolphinscheduler.common.utils.DateUtils; |
||||||
|
import org.apache.dolphinscheduler.dao.BaseDaoTest; |
||||||
|
import org.apache.dolphinscheduler.dao.entity.AlertSendStatus; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
|
||||||
|
/** |
||||||
|
* AlertSendStatus mapper test |
||||||
|
*/ |
||||||
|
public class AlertSendStatusMapperTest extends BaseDaoTest { |
||||||
|
@Autowired |
||||||
|
private AlertSendStatusMapper alertSendStatusMapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* test insert |
||||||
|
*/ |
||||||
|
@Test |
||||||
|
public void testInsert() { |
||||||
|
AlertSendStatus alertSendStatus = new AlertSendStatus(); |
||||||
|
alertSendStatus.setAlertId(1); |
||||||
|
alertSendStatus.setAlertPluginInstanceId(1); |
||||||
|
alertSendStatus.setSendStatus(AlertStatus.EXECUTION_SUCCESS); |
||||||
|
alertSendStatus.setLog("success"); |
||||||
|
alertSendStatus.setCreateTime(DateUtils.getCurrentDate()); |
||||||
|
|
||||||
|
alertSendStatusMapper.insert(alertSendStatus); |
||||||
|
assertThat(alertSendStatus.getId(), greaterThan(0)); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue