depot/third_party/copybara/javatests/com/google/copybara/BaselinesWithoutLabelVisitorTest.java
Default email dfee7b6196 Project import generated by Copybara.
GitOrigin-RevId: b578e69f18a543889ded9c57a8f0dffacdb103d8
2020-05-15 16:19:19 -04:00

99 lines
3.5 KiB
Java

/*
* Copyright (C) 2018 Google Inc.
*
* 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.copybara;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import com.google.copybara.ChangeVisitable.VisitResult;
import com.google.copybara.authoring.Author;
import com.google.copybara.testing.DummyRevision;
import com.google.copybara.util.Glob;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.util.stream.Collectors;
import javax.annotation.Nullable;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class BaselinesWithoutLabelVisitorTest {
@Test
public void testResults() {
BaselinesWithoutLabelVisitor<DummyRevision> visitor = new BaselinesWithoutLabelVisitor<>(
Glob.createGlob(ImmutableList.of("foo/**"), ImmutableList.of("foo/bar")), 10,
/*skipFirst=*/false);
visit(visitor, "one", ImmutableSet.of("foo/aa"));
visit(visitor, "two", ImmutableSet.of("excluded/aaa"));
visit(visitor, "three", ImmutableSet.of("foo/bar"));
assertThat(
visitor.getResult().stream().map(DummyRevision::asString).collect(Collectors.toList()))
.containsExactly("one", "three")
.inOrder();
}
@Test
public void testSkipFirst() {
BaselinesWithoutLabelVisitor<DummyRevision> visitor = new BaselinesWithoutLabelVisitor<>(
Glob.createGlob(ImmutableList.of("foo/**"), ImmutableList.of("foo/bar")), 10,
/*skipFirst=*/true);
visit(visitor, "one", ImmutableSet.of("foo/aa"));
visit(visitor, "two", ImmutableSet.of("excluded/aaa"));
visit(visitor, "three", ImmutableSet.of("foo/bar"));
assertThat(
visitor.getResult().stream().map(DummyRevision::asString).collect(Collectors.toList()))
.containsExactly("three");
}
@Test
public void testLimit() {
BaselinesWithoutLabelVisitor<DummyRevision> visitor = new BaselinesWithoutLabelVisitor<>(
Glob.createGlob(ImmutableList.of("foo/**"), ImmutableList.of("foo/bar")), 3,
/*skipFirst=*/false);
visit(visitor, "one", ImmutableSet.of("foo/aa"));
visit(visitor, "two", ImmutableSet.of("excluded/aaa"));
visit(visitor, "three", ImmutableSet.of("foo/aa"));
assertThat(visit(visitor, "four", ImmutableSet.of("foo/aa")))
.isEqualTo(VisitResult.TERMINATE);
assertThat(
visitor.getResult().stream().map(DummyRevision::asString).collect(Collectors.toList()))
.containsExactly("one", "three", "four")
.inOrder();
}
private VisitResult visit(BaselinesWithoutLabelVisitor<DummyRevision> visitor, String rev,
@Nullable ImmutableSet<String> files) {
DummyRevision dummyRevision = new DummyRevision(rev);
return visitor.visit(new Change<>(
dummyRevision,
new Author("a", "foo@example.com"),
dummyRevision.getMessage(),
ZonedDateTime.now(ZoneId.systemDefault()),
dummyRevision.getLabels(),
files));
}
}