]> source.dussan.org Git - sonarqube.git/blob
7514f6da085a5f8cbb98ef4fdca874c02dd1c7f6
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
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.
10  *
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.
15  *
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.
19  */
20 package org.sonar.server.platform.db.migration.version.v101;
21
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;
29
30 import static org.assertj.core.api.Assertions.assertThat;
31
32 public class RemoveReportPropertiesIT {
33
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";
38   @Rule
39   public final MigrationDbTester db = MigrationDbTester.createForMigrationStep(RemoveReportProperties.class);
40
41   private final DataChange underTest = new RemoveReportProperties(db.database());
42
43   private final UuidFactory uuidFactory = UuidFactoryFast.getInstance();
44
45   @Test
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");
52
53     underTest.execute();
54
55     assertThat(db.select("select * from properties")).hasSize(1)
56       .extracting(r->r.get("PROP_KEY")).containsExactly("sonar.other.property");
57   }
58
59   @Test
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");
63
64     underTest.execute();
65     underTest.execute();
66
67     assertThat(db.select("select * from properties")).isEmpty();
68   }
69
70   private void insertProperty(String componentUuid, String userUuid, String propertyKey, String value) {
71     db.executeInsert("properties",
72       "uuid", uuidFactory.create(),
73       "prop_key", propertyKey,
74       "is_empty", false,
75       "text_value", value,
76       "created_at", 1000,
77       "entity_uuid", componentUuid,
78       "user_uuid", userUuid
79     );
80   }
81 }