Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

CreateIndexWebhookUuidCreatedAtInWebhookDeliveriesIT.java 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.v102;
  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 CreateIndexWebhookUuidCreatedAtInWebhookDeliveriesIT {
  27. public static final String TABLE_NAME = "webhook_deliveries";
  28. public static final String INDEX_NAME = "wd_webhook_uuid_created_at";
  29. @RegisterExtension
  30. public final MigrationDbTester db = MigrationDbTester.createForMigrationStep(CreateIndexWebhookUuidCreatedAtInWebhookDeliveries.class);
  31. private final DdlChange createIndex = new CreateIndexWebhookUuidCreatedAtInWebhookDeliveries(db.database());
  32. @Test
  33. void migration_should_create_index() throws SQLException {
  34. db.assertIndexDoesNotExist(TABLE_NAME, INDEX_NAME);
  35. createIndex.execute();
  36. db.assertIndex(TABLE_NAME, INDEX_NAME, "webhook_uuid", "created_at");
  37. }
  38. @Test
  39. void migration_should_be_reentrant() throws SQLException {
  40. createIndex.execute();
  41. createIndex.execute();
  42. db.assertIndex(TABLE_NAME, INDEX_NAME, "webhook_uuid", "created_at");
  43. }
  44. }