--- /dev/null
+#
+# SonarQube, open source software quality management tool.
+# Copyright (C) 2008-2014 SonarSource
+# mailto:contact AT sonarsource DOT com
+#
+# SonarQube 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.
+#
+# SonarQube 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.
+#
+
+#
+# SonarQube 5.4
+# SONAR-7070
+#
+class MigrateQualityGatesConditions < ActiveRecord::Migration
+ def self.up
+ execute_java_migration('org.sonar.db.version.v54.MigrateQualityGatesConditions')
+ end
+end
public class DatabaseVersion {
- public static final int LAST_VERSION = 1012;
+ public static final int LAST_VERSION = 1013;
/**
* The minimum supported version which can be upgraded. Lower
import org.sonar.db.version.v53.UpdateCustomDashboardInLoadedTemplates;
import org.sonar.db.version.v54.AddUsersIdentityColumns;
import org.sonar.db.version.v54.InsertGateAdminPermissionForEachProfileAdmin;
+import org.sonar.db.version.v54.MigrateQualityGatesConditions;
import org.sonar.db.version.v54.MigrateUsersIdentity;
import org.sonar.db.version.v54.RemoveComponentPageProperties;
InsertGateAdminPermissionForEachProfileAdmin.class,
RemoveComponentPageProperties.class,
AddUsersIdentityColumns.class,
- MigrateUsersIdentity.class
+ MigrateUsersIdentity.class,
+ MigrateQualityGatesConditions.class
);
}
}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2016 SonarSource SA
+ * mailto:contact 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.version.v54;
+
+import com.google.common.base.Joiner;
+import java.sql.SQLException;
+import java.util.Date;
+import java.util.LinkedHashSet;
+import java.util.Set;
+import org.sonar.api.utils.System2;
+import org.sonar.api.utils.log.Logger;
+import org.sonar.api.utils.log.Loggers;
+import org.sonar.db.Database;
+import org.sonar.db.version.BaseDataChange;
+import org.sonar.db.version.MassUpdate;
+import org.sonar.db.version.Select;
+import org.sonar.db.version.SqlStatement;
+
+/**
+ * Update all quality gates condition periods to leak period when period is provided
+ */
+public class MigrateQualityGatesConditions extends BaseDataChange {
+ private static final Logger LOG = Loggers.get(MigrateQualityGatesConditions.class);
+
+ private final System2 system2;
+
+ public MigrateQualityGatesConditions(Database db, System2 system2) {
+ super(db);
+ this.system2 = system2;
+ }
+
+ @Override
+ public void execute(Context context) throws SQLException {
+ MassUpdate update = context.prepareMassUpdate().rowPluralName("quality gate conditions");
+ update.select("select qgc.id, qg.name " +
+ "from quality_gate_conditions qgc " +
+ "inner join quality_gates qg on qgc.qgate_id=qg.id " +
+ "where qgc.period is not null and qgc.period <> 1");
+ update.update("update quality_gate_conditions set period=1, updated_at=? where id=?");
+ MigrationHandler migrationHandler = new MigrationHandler(system2.now());
+ update.execute(migrationHandler);
+ if (!migrationHandler.updatedQualityGates.isEmpty()) {
+ LOG.warn("The following Quality Gates have been updated to compare with the leak period: {}.", Joiner.on(", ").join(migrationHandler.updatedQualityGates));
+ }
+ }
+
+ private static class MigrationHandler implements MassUpdate.Handler {
+ private final Date now;
+ private final Set<String> updatedQualityGates;
+
+ public MigrationHandler(long now) {
+ this.updatedQualityGates = new LinkedHashSet<>();
+ this.now = new Date(now);
+ }
+
+ @Override
+ public boolean handle(Select.Row row, SqlStatement update) throws SQLException {
+ update.setDate(1, now);
+ update.setLong(2, row.getLong(1));
+ updatedQualityGates.add(row.getString(2));
+ return true;
+ }
+ }
+}
INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1010');
INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1011');
INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1012');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1013');
INSERT INTO USERS(ID, LOGIN, NAME, EMAIL, CRYPTED_PASSWORD, SALT, CREATED_AT, UPDATED_AT, REMEMBER_TOKEN, REMEMBER_TOKEN_EXPIRES_AT) VALUES (1, 'admin', 'Administrator', '', 'a373a0e667abb2604c1fd571eb4ad47fe8cc0878', '48bc4b0d93179b5103fd3885ea9119498e9d161b', '1418215735482', '1418215735482', null, null);
ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;
public void verify_count_of_added_MigrationStep_types() {
ComponentContainer container = new ComponentContainer();
new MigrationStepModule().configure(container);
- assertThat(container.size()).isEqualTo(47);
+ assertThat(container.size()).isEqualTo(48);
}
}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2016 SonarSource SA
+ * mailto:contact 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.version.v54;
+
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.sonar.api.utils.DateUtils;
+import org.sonar.api.utils.System2;
+import org.sonar.api.utils.log.LogTester;
+import org.sonar.api.utils.log.LoggerLevel;
+import org.sonar.db.DbTester;
+import org.sonar.db.version.MigrationStep;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+public class MigrateQualityGatesConditionsTest {
+ static final String NOW = "1919-12-24";
+ private static final String MSG_WARNING_QG_CONDITIONS_UPDATED = "The following Quality Gates have been updated to compare with the leak period: qg-1, qg-2.";
+ final System2 system2 = mock(System2.class);
+
+ @Rule
+ public DbTester db = DbTester.createForSchema(System2.INSTANCE, MigrateQualityGatesConditionsTest.class, "schema.sql");
+ @Rule
+ public LogTester log = new LogTester();
+
+ MigrationStep migration;
+
+ @Before
+ public void setUp() {
+ db.truncateTables();
+ when(system2.now()).thenReturn(DateUtils.parseDate(NOW).getTime());
+ migration = new MigrateQualityGatesConditions(db.database(), system2);
+ }
+
+ @Test
+ public void migrate_empty_db() throws Exception {
+ migration.execute();
+ }
+
+ @Test
+ public void migrate() throws Exception {
+ db.prepareDbUnit(this.getClass(), "migrate.xml");
+
+ migration.execute();
+
+ db.assertDbUnit(getClass(), "migrate-result.xml", "quality_gates", "quality_gate_conditions");
+ assertThat(log.logs(LoggerLevel.WARN)).contains(MSG_WARNING_QG_CONDITIONS_UPDATED);
+ }
+
+ @Test
+ public void nothing_to_do_on_already_migrated_data() throws Exception {
+ db.prepareDbUnit(this.getClass(), "migrate-result.xml");
+
+ migration.execute();
+
+ db.assertDbUnit(getClass(), "migrate-result.xml", "quality_gates", "quality_gate_conditions");
+ assertThat(log.logs(LoggerLevel.WARN)).doesNotContain(MSG_WARNING_QG_CONDITIONS_UPDATED);
+ }
+}
--- /dev/null
+<dataset>
+ <quality_gates id="1" name="qg-1"/>
+ <quality_gates id="2" name="qg-2"/>
+ <quality_gates id="3" name="qg-3"/>
+ <quality_gate_conditions id="1" qgate_id="1" period="[null]" updated_at="1900-12-01"/>
+ <quality_gate_conditions id="2" qgate_id="1" period="1" updated_at="1919-12-24"/>
+ <quality_gate_conditions id="3" qgate_id="2" period="1" updated_at="1919-12-24"/>
+ <!-- quality gate 3 conditions don't need to be updated -->
+ <quality_gate_conditions id="4" qgate_id="3" period="[null]" updated_at="1900-12-01"/>
+ <quality_gate_conditions id="5" qgate_id="3" period="1" updated_at="1900-12-01"/>
+</dataset>
--- /dev/null
+<dataset>
+ <quality_gates id="1" name="qg-1"/>
+ <quality_gates id="2" name="qg-2"/>
+ <quality_gates id="3" name="qg-3"/>
+ <quality_gate_conditions id="1" qgate_id="1" period="[null]" updated_at="1900-12-01"/>
+ <quality_gate_conditions id="2" qgate_id="1" period="2" updated_at="1900-12-01"/>
+ <quality_gate_conditions id="3" qgate_id="2" period="2" updated_at="1900-12-01"/>
+ <!-- quality gate 3 conditions don't need to be updated -->
+ <quality_gate_conditions id="4" qgate_id="3" period="[null]" updated_at="1900-12-01"/>
+ <quality_gate_conditions id="5" qgate_id="3" period="1" updated_at="1900-12-01"/>
+</dataset>
--- /dev/null
+CREATE TABLE "QUALITY_GATES" (
+ "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
+ "NAME" VARCHAR(100) NOT NULL
+);
+
+CREATE TABLE "QUALITY_GATE_CONDITIONS" (
+ "ID" INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
+ "QGATE_ID" INTEGER,
+ "PERIOD" INTEGER,
+ "UPDATED_AT" TIMESTAMP
+);