3 * Copyright (C) 2009-2024 SonarSource SA
4 * mailto:info AT sonarsource DOT com
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 package org.sonar.server.platform.db.migration.version.v101;
22 import java.sql.SQLException;
23 import org.junit.Rule;
24 import org.junit.Test;
25 import org.sonar.core.util.UuidFactory;
26 import org.sonar.core.util.UuidFactoryFast;
27 import org.sonar.db.MigrationDbTester;
28 import org.sonar.server.platform.db.migration.step.DataChange;
30 import static org.assertj.core.api.Assertions.assertThat;
32 public class RemoveReportPropertiesIT {
34 private static final String SONAR_GOVERNANCE_REPORT_USER_NOTIFICATION = "sonar.governance.report.userNotification";
35 private static final String SONAR_GOVERNANCE_REPORT_PROJECT_BRANCH_USER_NOTIFICATION = "sonar.governance.report.project.branch.userNotification";
36 private static final String SONAR_GOVERNANCE_REPORT_LAST_SEND_TIME_IN_MS = "sonar.governance.report.lastSendTimeInMs";
37 private static final String SONAR_GOVERNANCE_REPORT_PROJECT_BRANCH_LAST_SEND_TIME_IN_MS = "sonar.governance.report.project.branch.lastSendTimeInMs";
39 public final MigrationDbTester db = MigrationDbTester.createForMigrationStep(RemoveReportProperties.class);
41 private final DataChange underTest = new RemoveReportProperties(db.database());
43 private final UuidFactory uuidFactory = UuidFactoryFast.getInstance();
46 public void execute_shouldRemoveRelevantPropertiesFromTable() throws SQLException {
47 insertProperty( "branch_uuid", "user_uuid", SONAR_GOVERNANCE_REPORT_USER_NOTIFICATION, "true");
48 insertProperty( "portfolio_uuid", "user_uuid", SONAR_GOVERNANCE_REPORT_PROJECT_BRANCH_USER_NOTIFICATION, "true");
49 insertProperty( "branch_uuid", "user_uuid", SONAR_GOVERNANCE_REPORT_LAST_SEND_TIME_IN_MS, "12");
50 insertProperty( "portfolio_uuid", "user_uuid", SONAR_GOVERNANCE_REPORT_PROJECT_BRANCH_LAST_SEND_TIME_IN_MS, "123");
51 insertProperty( "portfolio_uuid", "user_uuid", "sonar.other.property", "123");
55 assertThat(db.select("select * from properties")).hasSize(1)
56 .extracting(r->r.get("PROP_KEY")).containsExactly("sonar.other.property");
60 public void execute_shouldBeIdempotent() throws SQLException {
61 insertProperty( "branch_uuid", "user_uuid", SONAR_GOVERNANCE_REPORT_USER_NOTIFICATION, "true");
62 insertProperty( "portfolio_uuid", "user_uuid", SONAR_GOVERNANCE_REPORT_PROJECT_BRANCH_USER_NOTIFICATION, "true");
67 assertThat(db.select("select * from properties")).isEmpty();
70 private void insertProperty(String componentUuid, String userUuid, String propertyKey, String value) {
71 db.executeInsert("properties",
72 "uuid", uuidFactory.create(),
73 "prop_key", propertyKey,
77 "entity_uuid", componentUuid,