Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

DropIndexProjectsRootUuidInComponentsIT.java 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.v100;
  21. import java.sql.SQLException;
  22. import org.junit.jupiter.api.Test;
  23. import org.junit.jupiter.api.extension.RegisterExtension;
  24. import org.sonar.db.MigrationDbTester;
  25. import org.sonar.server.platform.db.migration.step.DdlChange;
  26. class DropIndexProjectsRootUuidInComponentsIT {
  27. private static final String TABLE_NAME = "components";
  28. private static final String COLUMN_NAME = "root_uuid";
  29. private static final String INDEX_NAME = "projects_root_uuid";
  30. @RegisterExtension
  31. public final MigrationDbTester db = MigrationDbTester.createForMigrationStep(DropIndexProjectsRootUuidInComponents.class);
  32. private final DdlChange underTest = new DropIndexProjectsRootUuidInComponents(db.database());
  33. @Test
  34. void drops_index() throws SQLException {
  35. db.assertIndex(TABLE_NAME, INDEX_NAME, COLUMN_NAME);
  36. underTest.execute();
  37. db.assertIndexDoesNotExist(TABLE_NAME, INDEX_NAME);
  38. }
  39. @Test
  40. void migration_is_reentrant() throws SQLException {
  41. db.assertIndex(TABLE_NAME, INDEX_NAME, COLUMN_NAME);
  42. underTest.execute();
  43. underTest.execute();
  44. db.assertIndexDoesNotExist(TABLE_NAME, INDEX_NAME);
  45. }
  46. }