/* * 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.db.component; import java.util.Arrays; import java.util.function.Consumer; import javax.annotation.Nullable; import org.sonar.db.DbClient; import org.sonar.db.DbSession; import org.sonar.db.DbTester; import org.sonar.db.organization.OrganizationDto; import static com.google.common.base.Preconditions.checkState; import static java.util.Arrays.asList; import static org.sonar.db.component.ComponentTesting.newPrivateProjectDto; import static org.sonar.db.component.ComponentTesting.newPublicProjectDto; import static org.sonar.db.component.ComponentTesting.newView; import static org.sonar.db.component.SnapshotTesting.newAnalysis; public class ComponentDbTester { private final DbTester db; private final DbClient dbClient; private final DbSession dbSession; public ComponentDbTester(DbTester db) { this.db = db; this.dbClient = db.getDbClient(); this.dbSession = db.getSession(); } public SnapshotDto insertProjectAndSnapshot(ComponentDto component) { return insertComponentAndSnapshot(component); } public SnapshotDto insertViewAndSnapshot(ComponentDto component) { return insertComponentAndSnapshot(component); } private SnapshotDto insertComponentAndSnapshot(ComponentDto component) { dbClient.componentDao().insert(dbSession, component); SnapshotDto snapshot = dbClient.snapshotDao().insert(dbSession, newAnalysis(component)); db.commit(); return snapshot; } public ComponentDto insertComponent(ComponentDto component) { return insertComponentImpl(component, null, noExtraConfiguration()); } public ComponentDto insertPrivateProject() { return insertComponentImpl(ComponentTesting.newPrivateProjectDto(db.getDefaultOrganization()), true, noExtraConfiguration()); } public ComponentDto insertPublicProject() { return insertComponentImpl(ComponentTesting.newPublicProjectDto(db.getDefaultOrganization()), false, noExtraConfiguration()); } @SafeVarargs public final ComponentDto insertPrivateProject(Consumer<ComponentDto>... dtoPopulators) { return insertComponentImpl(ComponentTesting.newPrivateProjectDto(db.getDefaultOrganization()), true, dtoPopulators); } @SafeVarargs public final ComponentDto insertPublicProject(Consumer<ComponentDto>... dtoPopulators) { return insertComponentImpl(newPublicProjectDto(db.getDefaultOrganization()), false, dtoPopulators); } @SafeVarargs public final ComponentDto insertPrivateProject(OrganizationDto organizationDto, Consumer<ComponentDto>... dtoPopulators) { return insertComponentImpl(ComponentTesting.newPrivateProjectDto(organizationDto), true, dtoPopulators); } @SafeVarargs public final ComponentDto insertPublicProject(OrganizationDto organizationDto, Consumer<ComponentDto>... dtoPopulators) { return insertComponentImpl(newPublicProjectDto(organizationDto), false, dtoPopulators); } public ComponentDto insertPrivateProject(OrganizationDto organizationDto) { return insertComponentImpl(ComponentTesting.newPrivateProjectDto(organizationDto), true, noExtraConfiguration()); } public ComponentDto insertPublicProject(OrganizationDto organizationDto) { return insertComponentImpl(newPublicProjectDto(organizationDto), false, noExtraConfiguration()); } public ComponentDto insertPrivateProject(OrganizationDto organizationDto, String uuid) { return insertComponentImpl(newPrivateProjectDto(organizationDto, uuid), true, noExtraConfiguration()); } public ComponentDto insertPublicProject(OrganizationDto organizationDto, String uuid) { return insertComponentImpl(newPublicProjectDto(organizationDto, uuid), false, noExtraConfiguration()); } public ComponentDto insertView() { return insertComponentImpl(newView(db.getDefaultOrganization()), false, noExtraConfiguration()); } public ComponentDto insertView(Consumer<ComponentDto> dtoPopulator) { return insertComponentImpl(newView(db.getDefaultOrganization()), false, dtoPopulator); } public ComponentDto insertView(OrganizationDto organizationDto) { return insertComponentImpl(newView(organizationDto), false, noExtraConfiguration()); } public ComponentDto insertView(OrganizationDto organizationDto, Consumer<ComponentDto> dtoPopulator) { return insertComponentImpl(newView(organizationDto), false, dtoPopulator); } public ComponentDto insertView(String uuid) { return insertComponentImpl(newView(db.getDefaultOrganization(), uuid), false, noExtraConfiguration()); } public ComponentDto insertView(OrganizationDto organizationDto, String uuid) { return insertComponentImpl(newView(organizationDto, uuid), false, noExtraConfiguration()); } private static <T> Consumer<T> noExtraConfiguration() { return (t) -> { }; } @SafeVarargs private final ComponentDto insertComponentImpl(ComponentDto component, @Nullable Boolean isPrivate, Consumer<ComponentDto>... dtoPopulators) { Arrays.stream(dtoPopulators) .forEach(dtoPopulator -> dtoPopulator.accept(component)); checkState(isPrivate == null || component.isPrivate() == isPrivate, "Illegal modification of private flag"); dbClient.componentDao().insert(dbSession, component); db.commit(); return component; } public void insertComponents(ComponentDto... components) { dbClient.componentDao().insert(dbSession, asList(components)); db.commit(); } public SnapshotDto insertSnapshot(SnapshotDto snapshotDto) { SnapshotDto snapshot = dbClient.snapshotDao().insert(dbSession, snapshotDto); db.commit(); return snapshot; } public SnapshotDto insertSnapshot(ComponentDto componentDto) { return insertSnapshot(componentDto, noExtraConfiguration()); } public SnapshotDto insertSnapshot(ComponentDto componentDto, Consumer<SnapshotDto> consumer) { SnapshotDto snapshotDto = SnapshotTesting.newAnalysis(componentDto); consumer.accept(snapshotDto); SnapshotDto snapshot = dbClient.snapshotDao().insert(dbSession, snapshotDto); db.commit(); return snapshot; } }