Search in sources :

Example 26 with TransformWork

use of com.google.copybara.TransformWork in project copybara by google.

the class SequenceTest method testSequence_noopIfAnyNoop_insideIgnoreNoop.

@Test
public void testSequence_noopIfAnyNoop_insideIgnoreNoop() throws Exception {
    TransformWork work = uncachedTreeStateTransformWork();
    MockTransform t1 = new MockTransform("t1").setNoop(true);
    Transformation t = sequence(Sequence.NoopBehavior.IGNORE_NOOP, sequence(Sequence.NoopBehavior.NOOP_IF_ANY_NOOP, t1));
    TransformationStatus status = t.transform(work);
    assertThat(t1.wasRun).isTrue();
    assertThat(status.isSuccess()).isTrue();
}
Also used : TransformationStatus(com.google.copybara.TransformationStatus) Transformation(com.google.copybara.Transformation) TransformWork(com.google.copybara.TransformWork) Test(org.junit.Test)

Example 27 with TransformWork

use of com.google.copybara.TransformWork in project copybara by google.

the class SequenceTest method testSequence_noopIfAnyNoop_noChildNoops.

@Test
public void testSequence_noopIfAnyNoop_noChildNoops() throws Exception {
    TransformWork work = uncachedTreeStateTransformWork();
    MockTransform t1 = new MockTransform("t1");
    MockTransform t2 = new MockTransform("t2");
    Transformation t = sequence(Sequence.NoopBehavior.NOOP_IF_ANY_NOOP, t1, t2);
    TransformationStatus status = t.transform(work);
    assertThat(t1.wasRun).isTrue();
    assertThat(t2.wasRun).isTrue();
    assertThat(status.isSuccess()).isTrue();
}
Also used : TransformationStatus(com.google.copybara.TransformationStatus) Transformation(com.google.copybara.Transformation) TransformWork(com.google.copybara.TransformWork) Test(org.junit.Test)

Example 28 with TransformWork

use of com.google.copybara.TransformWork in project copybara by google.

the class SequenceTest method testSequence_failIfAnyNoop_causesFailure.

@Test
public void testSequence_failIfAnyNoop_causesFailure() throws Exception {
    TransformWork work = uncachedTreeStateTransformWork();
    MockTransform t1 = new MockTransform("t1").setNoop(true);
    Transformation t = sequence(Sequence.NoopBehavior.FAIL_IF_ANY_NOOP, t1);
    assertThrows(VoidOperationException.class, () -> t.transform(work));
    assertThat(t1.wasRun).isTrue();
}
Also used : Transformation(com.google.copybara.Transformation) TransformWork(com.google.copybara.TransformWork) Test(org.junit.Test)

Example 29 with TransformWork

use of com.google.copybara.TransformWork in project copybara by google.

the class SequenceTest method testSequence_treeStateBeginsUncached.

/**
 * A Sequence should automatically validate the cache in between each child Transformation that it
 * runs.
 */
@Test
public void testSequence_treeStateBeginsUncached() throws Exception {
    TransformWork work = uncachedTreeStateTransformWork();
    // No cache for the first transform to use...
    Transformation t1 = new MockTransform("t1").setUseTreeState(true).setExpectCacheHit(false);
    // ...but it should have created one for the second transform
    Transformation t2 = new MockTransform("t2").setUseTreeState(true).setExpectCacheHit(true);
    Transformation t = sequence(t1, t2);
    t.transform(work);
}
Also used : Transformation(com.google.copybara.Transformation) TransformWork(com.google.copybara.TransformWork) Test(org.junit.Test)

Example 30 with TransformWork

use of com.google.copybara.TransformWork in project copybara by google.

the class SequenceTest method testSequence_noopIfAnyNoop_someChildNoops.

@Test
public void testSequence_noopIfAnyNoop_someChildNoops() throws Exception {
    TransformWork work = uncachedTreeStateTransformWork();
    MockTransform t1 = new MockTransform("t1");
    MockTransform t2 = new MockTransform("t2").setNoop(true);
    MockTransform t3 = new MockTransform("t3");
    Transformation t = sequence(Sequence.NoopBehavior.NOOP_IF_ANY_NOOP, t1, t2, t3);
    TransformationStatus status = t.transform(work);
    assertThat(t1.wasRun).isTrue();
    assertThat(t2.wasRun).isTrue();
    assertThat(t3.wasRun).isFalse();
    assertThat(status.isNoop()).isTrue();
}
Also used : TransformationStatus(com.google.copybara.TransformationStatus) Transformation(com.google.copybara.Transformation) TransformWork(com.google.copybara.TransformWork) Test(org.junit.Test)

Aggregations

TransformWork (com.google.copybara.TransformWork)41 Test (org.junit.Test)33 Transformation (com.google.copybara.Transformation)23 TransformationStatus (com.google.copybara.TransformationStatus)9 DummyRevision (com.google.copybara.testing.DummyRevision)6 Changes (com.google.copybara.Changes)5 Author (com.google.copybara.authoring.Author)5 ValidationException (com.google.copybara.exception.ValidationException)4 Change (com.google.copybara.Change)3 ProcessedChange (com.google.copybara.testing.RecordsProcessCallDestination.ProcessedChange)3 EmptyChangeException (com.google.copybara.exception.EmptyChangeException)2 NonReversibleValidationException (com.google.copybara.exception.NonReversibleValidationException)2 RepoException (com.google.copybara.exception.RepoException)2 TransformWorks.toChange (com.google.copybara.testing.TransformWorks.toChange)2 Strings (com.google.common.base.Strings)1 ImmutableList (com.google.common.collect.ImmutableList)1 ImmutableMultimap (com.google.common.collect.ImmutableMultimap)1 ImmutableSet (com.google.common.collect.ImmutableSet)1 Iterables (com.google.common.collect.Iterables)1 Lists (com.google.common.collect.Lists)1