"internal_component_props",
"internal_properties",
"issues",
+ "issues_fixed",
"issues_impacts",
"issue_changes",
"live_measures",
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2023 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.sonar.db.issue;
+
+import org.junit.Rule;
+import org.junit.Test;
+import org.sonar.api.utils.System2;
+import org.sonar.db.DbSession;
+import org.sonar.db.DbTester;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+public class IssueFixedDaoIT {
+ @Rule
+ public DbTester db = DbTester.create(System2.INSTANCE);
+
+ private final IssueFixedDao underTest = db.getDbClient().issueFixedDao();
+
+ @Test
+ public void insert_shouldPersistFixedIssue() {
+ IssueFixedDto fixedIssue = new IssueFixedDto("PR-1", "ISSUE-1");
+ underTest.insert(db.getSession(), fixedIssue);
+ assertThat(underTest.selectByPullRequest(db.getSession(), "PR-1")).containsOnly(fixedIssue);
+ }
+
+ @Test
+ public void insert_shouldThrowException_whenDuplicateRecord() {
+ IssueFixedDto fixedIssue = new IssueFixedDto("PR-1", "ISSUE-1");
+ DbSession session = db.getSession();
+ underTest.insert(session, fixedIssue);
+
+ assertThatThrownBy(() -> underTest.insert(session, fixedIssue))
+ .isInstanceOf(RuntimeException.class);
+ }
+
+ @Test
+ public void selectByPullRequest_shouldReturnAllFixedIssuesOfPullRequest() {
+ IssueFixedDto fixedIssue1 = new IssueFixedDto("PR-1", "ISSUE-1");
+ IssueFixedDto fixedIssue2 = new IssueFixedDto("PR-1", "ISSUE-2");
+ IssueFixedDto fixedIssue3 = new IssueFixedDto("PR-2", "ISSUE-3");
+ underTest.insert(db.getSession(), fixedIssue1);
+ underTest.insert(db.getSession(), fixedIssue2);
+ underTest.insert(db.getSession(), fixedIssue3);
+
+ assertThat(underTest.selectByPullRequest(db.getSession(), "PR-1")).containsOnly(fixedIssue1, fixedIssue2);
+ }
+
+}
import org.sonar.db.issue.AnticipatedTransitionDao;
import org.sonar.db.issue.IssueChangeDao;
import org.sonar.db.issue.IssueDao;
+import org.sonar.db.issue.IssueFixedDao;
import org.sonar.db.measure.LiveMeasureDao;
import org.sonar.db.measure.MeasureDao;
import org.sonar.db.metric.MetricDao;
InternalPropertiesDao.class,
IssueChangeDao.class,
IssueDao.class,
+ IssueFixedDao.class,
LiveMeasureDao.class,
MeasureDao.class,
MetricDao.class,
import org.sonar.db.issue.AnticipatedTransitionDao;
import org.sonar.db.issue.IssueChangeDao;
import org.sonar.db.issue.IssueDao;
+import org.sonar.db.issue.IssueFixedDao;
import org.sonar.db.measure.LiveMeasureDao;
import org.sonar.db.measure.MeasureDao;
import org.sonar.db.metric.MetricDao;
private final GithubPermissionsMappingDao githubPermissionsMappingDao;
private final RuleChangeDao ruleChangeDao;
private final ProjectExportDao projectExportDao;
+ private final IssueFixedDao issueFixedDao;
public DbClient(Database database, MyBatis myBatis, DBSessions dbSessions, Dao... daos) {
this.database = database;
anticipatedTransitionDao = getDao(map, AnticipatedTransitionDao.class);
ruleChangeDao = getDao(map, RuleChangeDao.class);
projectExportDao = getDao(map, ProjectExportDao.class);
+ issueFixedDao = getDao(map, IssueFixedDao.class);
}
public DbSession openSession(boolean batch) {
return issueChangeDao;
}
+ public IssueFixedDao issueFixedDao() {
+ return issueFixedDao;
+ }
+
public QualityProfileDao qualityProfileDao() {
return qualityProfileDao;
}
import org.sonar.db.issue.IssueChangeDto;
import org.sonar.db.issue.IssueChangeMapper;
import org.sonar.db.issue.IssueDto;
+import org.sonar.db.issue.IssueFixedMapper;
import org.sonar.db.issue.IssueMapper;
import org.sonar.db.issue.NewCodeReferenceIssueDto;
import org.sonar.db.issue.PrIssueDto;
IsAliveMapper.class,
IssueChangeMapper.class,
IssueMapper.class,
+ IssueFixedMapper.class,
MeasureMapper.class,
MetricMapper.class,
NewCodePeriodMapper.class,
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2023 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.sonar.db.issue;
+
+import java.util.List;
+import org.apache.ibatis.annotations.Param;
+import org.sonar.db.Dao;
+import org.sonar.db.DbSession;
+
+public class IssueFixedDao implements Dao {
+
+ public void insert(DbSession dbSession, IssueFixedDto fixedIssue) {
+ mapper(dbSession).insert(fixedIssue);
+ }
+
+ private static IssueFixedMapper mapper(DbSession session) {
+ return session.getMapper(IssueFixedMapper.class);
+ }
+
+ public List<IssueFixedDto> selectByPullRequest(DbSession dbSession, @Param("pullRequestUuid") String pullRequestUuid) {
+ return mapper(dbSession).selectByPullRequest(pullRequestUuid);
+ }
+}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2023 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.sonar.db.issue;
+
+public record IssueFixedDto(String pullRequestUuid, String issueKey) {
+}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2023 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+package org.sonar.db.issue;
+
+import java.util.List;
+
+public interface IssueFixedMapper {
+ void insert(IssueFixedDto dto);
+
+ List<IssueFixedDto> selectByPullRequest(String pullRequestUuid);
+}
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "mybatis-3-mapper.dtd">
+
+<mapper namespace="org.sonar.db.issue.IssueFixedMapper">
+ <insert id="insert" parameterType="org.sonar.db.issue.IssueFixedDto">
+ INSERT INTO issues_fixed (
+ pull_request_uuid,
+ issue_key
+ ) VALUES (
+ #{pullRequestUuid,jdbcType=VARCHAR},
+ #{issueKey,jdbcType=VARCHAR}
+ )
+ </insert>
+ <select id="selectByPullRequest" resultType="org.sonar.db.issue.IssueFixedDto">
+ SELECT
+ pull_request_uuid as pullRequestUuid,
+ issue_key as issueKey
+ FROM issues_fixed
+ WHERE pull_request_uuid = #{pullRequestUuid,jdbcType=VARCHAR}
+ </select>
+</mapper>