.add(1515, "Unset user root flags", UnsetUserRootFlags.class)
.add(1516, "Add ORGANIZATIONS.USER_ID", AddUserIdToOrganizations.class)
.add(1517, "Delete PROJECT_MEASURES rows having no value", DeleteMeasuresHavingNoValue.class)
+ .add(1518, "Make index on ORGANIZATIONS.KEE unique", MakeIndexOnOrganizationsKeeUnique.class)
;
}
}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2017 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.server.platform.db.migration.version.v63;
+
+import java.sql.SQLException;
+import org.sonar.db.Database;
+import org.sonar.server.platform.db.migration.sql.CreateIndexBuilder;
+import org.sonar.server.platform.db.migration.sql.DropIndexBuilder;
+import org.sonar.server.platform.db.migration.step.DdlChange;
+
+import static org.sonar.server.platform.db.migration.def.VarcharColumnDef.newVarcharColumnDefBuilder;
+
+public class MakeIndexOnOrganizationsKeeUnique extends DdlChange {
+
+ private static final String TABLE_ORGANIZATIONS = "organizations";
+ private static final String INDEX_NAME = "organization_key";
+
+ public MakeIndexOnOrganizationsKeeUnique(Database db) {
+ super(db);
+ }
+
+ @Override
+ public void execute(Context context) throws SQLException {
+ context.execute(new DropIndexBuilder(getDialect())
+ .setTable(TABLE_ORGANIZATIONS)
+ .setName(INDEX_NAME)
+ .build());
+
+ context.execute(new CreateIndexBuilder(getDialect())
+ .setTable(TABLE_ORGANIZATIONS)
+ .setName(INDEX_NAME)
+ .addColumn(newVarcharColumnDefBuilder()
+ .setColumnName("kee")
+ .setLimit(32)
+ .setIsNullable(false)
+ .build())
+ .setUnique(true)
+ .build());
+ }
+}
@Test
public void verify_migration_count() {
- verifyMigrationCount(underTest, 18);
+ verifyMigrationCount(underTest, 19);
}
}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2017 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.server.platform.db.migration.version.v63;
+
+import java.sql.SQLException;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.sonar.api.utils.System2;
+import org.sonar.db.DbTester;
+
+public class MakeIndexOnOrganizationsKeeUniqueReentranceTest {
+ private static final String TABLE_ORGANIZATIONS = "organizations";
+ private static final String INDEX_NAME = "organization_key";
+
+ @Rule
+ public DbTester dbTester = DbTester.createForSchema(System2.INSTANCE, MakeIndexOnOrganizationsKeeUniqueReentranceTest.class, "organizations_with_unique_index.sql");
+ @Rule
+ public ExpectedException expectedException = ExpectedException.none();
+
+ private MakeIndexOnOrganizationsKeeUnique underTest = new MakeIndexOnOrganizationsKeeUnique(dbTester.database());
+
+ @Test
+ public void execute_makes_index_unique_on_empty_table() throws SQLException {
+ dbTester.assertIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+
+ underTest.execute();
+
+ dbTester.assertUniqueIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ }
+
+ @Test
+ public void execute_makes_index_unique_on_non_empty_table_without_duplicates() throws SQLException {
+ dbTester.assertIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ insert("1", "kee_1");
+ insert("2", "kee_2");
+
+ underTest.execute();
+
+ dbTester.assertUniqueIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ }
+
+ @Test
+ public void execute_fails_non_empty_table_with_duplicates() throws SQLException {
+ dbTester.assertIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ insert("1", "kee_1");
+ insert("2", "kee_1");
+
+ expectedException.expect(IllegalStateException.class);
+
+ underTest.execute();
+ }
+
+ private void insert(String uuid, String kee) {
+ dbTester.executeInsert(TABLE_ORGANIZATIONS,
+ "UUID", uuid,
+ "KEE", kee,
+ "NAME", "name",
+ "GUARDED", "false",
+ "CREATED_AT", "1000",
+ "UPDATED_AT", "2000");
+ }
+
+}
--- /dev/null
+/*
+ * SonarQube
+ * Copyright (C) 2009-2017 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.server.platform.db.migration.version.v63;
+
+import java.sql.SQLException;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.sonar.api.utils.System2;
+import org.sonar.db.DbTester;
+
+public class MakeIndexOnOrganizationsKeeUniqueTest {
+ private static final String TABLE_ORGANIZATIONS = "organizations";
+ private static final String INDEX_NAME = "organization_key";
+
+ @Rule
+ public DbTester dbTester = DbTester.createForSchema(System2.INSTANCE, MakeIndexOnOrganizationsKeeUniqueTest.class, "organizations_with_non_unique_index.sql");
+ @Rule
+ public ExpectedException expectedException = ExpectedException.none();
+
+ private MakeIndexOnOrganizationsKeeUnique underTest = new MakeIndexOnOrganizationsKeeUnique(dbTester.database());
+
+ @Test
+ public void execute_makes_index_unique_on_empty_table() throws SQLException {
+ dbTester.assertIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+
+ underTest.execute();
+
+ dbTester.assertUniqueIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ }
+
+ @Test
+ public void execute_makes_index_unique_on_non_empty_table_without_duplicates() throws SQLException {
+ dbTester.assertIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ insert("1", "kee_1");
+ insert("2", "kee_2");
+
+ underTest.execute();
+
+ dbTester.assertUniqueIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ }
+
+ @Test
+ public void execute_fails_non_empty_table_with_duplicates() throws SQLException {
+ dbTester.assertIndex(TABLE_ORGANIZATIONS, INDEX_NAME, "kee");
+ insert("1", "kee_1");
+ insert("2", "kee_1");
+
+ expectedException.expect(IllegalStateException.class);
+
+ underTest.execute();
+ }
+
+ private void insert(String uuid, String kee) {
+ dbTester.executeInsert(TABLE_ORGANIZATIONS,
+ "UUID", uuid,
+ "KEE", kee,
+ "NAME", "name",
+ "GUARDED", "false",
+ "CREATED_AT", "1000",
+ "UPDATED_AT", "2000");
+ }
+}
--- /dev/null
+CREATE TABLE "ORGANIZATIONS" (
+ "UUID" VARCHAR(40) NOT NULL PRIMARY KEY,
+ "KEE" VARCHAR(32) NOT NULL,
+ "NAME" VARCHAR(64) NOT NULL,
+ "DESCRIPTION" VARCHAR(256),
+ "URL" VARCHAR(256),
+ "AVATAR_URL" VARCHAR(256),
+ "GUARDED" BOOLEAN NOT NULL,
+ "USER_ID" INTEGER,
+ "DEFAULT_PERM_TEMPLATE_PROJECT" VARCHAR(40),
+ "DEFAULT_PERM_TEMPLATE_VIEW" VARCHAR(40),
+ "CREATED_AT" BIGINT NOT NULL,
+ "UPDATED_AT" BIGINT NOT NULL
+);
+CREATE UNIQUE INDEX "PK_ORGANIZATIONS" ON "ORGANIZATIONS" ("UUID");
+CREATE INDEX "ORGANIZATION_KEY" ON "ORGANIZATIONS" ("KEE");
--- /dev/null
+CREATE TABLE "ORGANIZATIONS" (
+ "UUID" VARCHAR(40) NOT NULL PRIMARY KEY,
+ "KEE" VARCHAR(32) NOT NULL,
+ "NAME" VARCHAR(64) NOT NULL,
+ "DESCRIPTION" VARCHAR(256),
+ "URL" VARCHAR(256),
+ "AVATAR_URL" VARCHAR(256),
+ "GUARDED" BOOLEAN NOT NULL,
+ "USER_ID" INTEGER,
+ "DEFAULT_PERM_TEMPLATE_PROJECT" VARCHAR(40),
+ "DEFAULT_PERM_TEMPLATE_VIEW" VARCHAR(40),
+ "CREATED_AT" BIGINT NOT NULL,
+ "UPDATED_AT" BIGINT NOT NULL
+);
+CREATE UNIQUE INDEX "PK_ORGANIZATIONS" ON "ORGANIZATIONS" ("UUID");
+CREATE INDEX "ORGANIZATION_KEY" ON "ORGANIZATIONS" ("KEE");
INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1515');
INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1516');
INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1517');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1518');
INSERT INTO USERS(ID, LOGIN, NAME, EMAIL, EXTERNAL_IDENTITY, EXTERNAL_IDENTITY_PROVIDER, USER_LOCAL, CRYPTED_PASSWORD, SALT, IS_ROOT, CREATED_AT, UPDATED_AT) VALUES (1, 'admin', 'Administrator', '', 'admin', 'sonarqube', true, 'a373a0e667abb2604c1fd571eb4ad47fe8cc0878', '48bc4b0d93179b5103fd3885ea9119498e9d161b', false, '1418215735482', '1418215735482');
ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;