Search in sources :

Example 6 with TransformWork

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

the class SequenceTest method testSequence_nestedSequences_missOnFourthCache.

@Test
public void testSequence_nestedSequences_missOnFourthCache() throws Exception {
    TransformWork work = cachedTreeStateTransformWork();
    MockTransform t1 = new MockTransform("t1").setUseTreeState(true).setExpectCacheHit(true);
    MockTransform t2 = new MockTransform("t2").setUseTreeState(true).setExpectCacheHit(true);
    MockTransform t3 = new MockTransform("t3").setUseTreeState(false);
    MockTransform t4 = new MockTransform("t4").setUseTreeState(true).setExpectCacheHit(false);
    Transformation t = sequence(sequence(t1, t2), sequence(t3, t4));
    t.transform(work);
    assertThat(t1.wasRun).isTrue();
    assertThat(t2.wasRun).isTrue();
    assertThat(t3.wasRun).isTrue();
    assertThat(t4.wasRun).isTrue();
}
Also used : Transformation(com.google.copybara.Transformation) TransformWork(com.google.copybara.TransformWork) Test(org.junit.Test)

Example 7 with TransformWork

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

the class SequenceTest method testSequence_noopIfAllNoop_someChildNoops.

@Test
public void testSequence_noopIfAllNoop_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_ALL_NOOP, t1, t2, t3);
    TransformationStatus status = t.transform(work);
    assertThat(t1.wasRun).isTrue();
    assertThat(t2.wasRun).isTrue();
    assertThat(t3.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 8 with TransformWork

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

the class SequenceTest method cachedTreeStateTransformWork.

private TransformWork cachedTreeStateTransformWork() throws IOException {
    TransformWork work = TransformWorks.of(checkoutDir, "foo", console);
    // Force a cached tree-state
    work.getTreeState().find(Glob.ALL_FILES.relativeTo(checkoutDir));
    assertThat(work.getTreeState().isCached()).isTrue();
    return work;
}
Also used : TransformWork(com.google.copybara.TransformWork)

Example 9 with TransformWork

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

the class SequenceTest method testSequence_treeStateCacheInvalidation.

@Test
public void testSequence_treeStateCacheInvalidation() throws Exception {
    TransformWork work = cachedTreeStateTransformWork();
    // The first transform does not use/notify the TreeState...
    Transformation t1 = new MockTransform("t1").setUseTreeState(false);
    // ...so the second transform should not have a cache available
    Transformation t2 = new MockTransform("t2").setUseTreeState(true).setExpectCacheHit(false);
    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 10 with TransformWork

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

the class SequenceTest method testSequence_nestedSequences_missOnThirdCache.

@Test
public void testSequence_nestedSequences_missOnThirdCache() throws Exception {
    TransformWork work = cachedTreeStateTransformWork();
    MockTransform t1 = new MockTransform("t1").setUseTreeState(true).setExpectCacheHit(true);
    MockTransform t2 = new MockTransform("t2").setUseTreeState(false);
    MockTransform t3 = new MockTransform("t3").setUseTreeState(true).setExpectCacheHit(false);
    MockTransform t4 = new MockTransform("t4").setUseTreeState(true).setExpectCacheHit(true);
    Transformation t = sequence(sequence(t1, t2), sequence(t3, t4));
    t.transform(work);
    assertThat(t1.wasRun).isTrue();
    assertThat(t2.wasRun).isTrue();
    assertThat(t3.wasRun).isTrue();
    assertThat(t4.wasRun).isTrue();
}
Also used : 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