blob: 2649dea36dbbe9e5029eb2ff404cf3d05329963f [file] [log] [blame]
// Copyright (C) 2018 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.gerrit.acceptance.testsuite.project;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import com.google.gerrit.acceptance.testsuite.ThrowingFunction;
import com.google.gerrit.entities.Project;
import com.google.gerrit.extensions.client.SubmitType;
import java.util.Optional;
import java.util.Set;
import org.eclipse.jgit.lib.Constants;
@AutoValue
public abstract class TestProjectCreation {
public abstract Optional<String> name();
public abstract Optional<Project.NameKey> parent();
public abstract ImmutableSet<String> branches();
public abstract Optional<Boolean> createEmptyCommit();
public abstract Optional<SubmitType> submitType();
abstract ThrowingFunction<TestProjectCreation, Project.NameKey> projectCreator();
public static Builder builder(
ThrowingFunction<TestProjectCreation, Project.NameKey> projectCreator) {
return new AutoValue_TestProjectCreation.Builder()
.branches(Constants.R_HEADS + Constants.MASTER)
.projectCreator(projectCreator);
}
@AutoValue.Builder
public abstract static class Builder {
public abstract TestProjectCreation.Builder name(String name);
public abstract TestProjectCreation.Builder parent(Project.NameKey parent);
public abstract TestProjectCreation.Builder submitType(SubmitType submitType);
/**
* Branches which should be created in the repository (with an empty root commit). The
* "refs/heads/" prefix of the branch name can be omitted. The specified branches are ignored if
* {@link #noEmptyCommit()} is used.
*/
public TestProjectCreation.Builder branches(String branch1, String... otherBranches) {
return branches(Sets.union(ImmutableSet.of(branch1), ImmutableSet.copyOf(otherBranches)));
}
abstract TestProjectCreation.Builder branches(Set<String> branches);
public abstract TestProjectCreation.Builder createEmptyCommit(boolean value);
/** Skips the empty commit on creation. This means that project's branches will not exist. */
public TestProjectCreation.Builder noEmptyCommit() {
return createEmptyCommit(false);
}
abstract TestProjectCreation.Builder projectCreator(
ThrowingFunction<TestProjectCreation, Project.NameKey> projectCreator);
abstract TestProjectCreation autoBuild();
/**
* Executes the project creation as specified.
*
* @return the name of the created project
*/
public Project.NameKey create() {
TestProjectCreation creation = autoBuild();
return creation.projectCreator().applyAndThrowSilently(creation);
}
}
}