Search in sources :

Example 26 with Node

use of com.thoughtworks.go.domain.valuestreammap.Node in project gocd by gocd.

the class RunStagesPopulatorTest method shouldPopulateOnlyLatestRunOfEachStageForEachPipelineNode.

@Test
public void shouldPopulateOnlyLatestRunOfEachStageForEachPipelineNode() throws Exception {
    /*
            git --> p1 --> p2 --> p3
         */
    ValueStreamMap graph = new ValueStreamMap("p2", new PipelineRevision("p2", 1, ""));
    graph.addUpstreamNode(new PipelineDependencyNode("p1", "p1"), new PipelineRevision("p1", 1, "1"), "p2");
    graph.addUpstreamMaterialNode(new SCMDependencyNode("g1", "g1", "git"), new CaseInsensitiveString("git"), "p1", new MaterialRevision(null));
    Node p3_node = graph.addDownstreamNode(new PipelineDependencyNode("p3", "p3"), "p2");
    p3_node.addRevision(new PipelineRevision("p3", 1, "1"));
    Stages stagesForP1_1 = stages("s1_p1");
    Stages stagesForP2_1 = stages("s1_p2");
    Stages stagesForP3_1 = stages("s1_p3");
    stagesForP1_1.first().setLatestRun(false);
    Stage latestStage = StageMother.createPassedStage("p1", 1, "s1_p1", 2, "sample", new Date());
    stagesForP1_1.add(latestStage);
    when(stageDao.findAllStagesFor("p1", 1)).thenReturn(stagesForP1_1);
    when(stageDao.findAllStagesFor("p2", 1)).thenReturn(stagesForP2_1);
    when(stageDao.findAllStagesFor("p3", 1)).thenReturn(stagesForP3_1);
    runStagesPopulator.apply(graph);
    VSMTestHelper.assertStageDetailsOf(graph, "p1", "1", new Stages(latestStage));
    VSMTestHelper.assertStageDetailsOf(graph, "p2", "1", stagesForP2_1);
    VSMTestHelper.assertStageDetailsOf(graph, "p3", "1", stagesForP3_1);
}
Also used : ValueStreamMap(com.thoughtworks.go.domain.valuestreammap.ValueStreamMap) PipelineDependencyNode(com.thoughtworks.go.domain.valuestreammap.PipelineDependencyNode) SCMDependencyNode(com.thoughtworks.go.domain.valuestreammap.SCMDependencyNode) PipelineRevision(com.thoughtworks.go.domain.valuestreammap.PipelineRevision) PipelineDependencyNode(com.thoughtworks.go.domain.valuestreammap.PipelineDependencyNode) SCMDependencyNode(com.thoughtworks.go.domain.valuestreammap.SCMDependencyNode) Node(com.thoughtworks.go.domain.valuestreammap.Node) Stages(com.thoughtworks.go.domain.Stages) Stage(com.thoughtworks.go.domain.Stage) MaterialRevision(com.thoughtworks.go.domain.MaterialRevision) CaseInsensitiveString(com.thoughtworks.go.config.CaseInsensitiveString) Date(java.util.Date) Test(org.junit.Test)

Aggregations

Node (com.thoughtworks.go.domain.valuestreammap.Node)26 PipelineDependencyNode (com.thoughtworks.go.domain.valuestreammap.PipelineDependencyNode)11 SCMDependencyNode (com.thoughtworks.go.domain.valuestreammap.SCMDependencyNode)11 ValueStreamMap (com.thoughtworks.go.domain.valuestreammap.ValueStreamMap)11 Test (org.junit.Test)11 MaterialRevision (com.thoughtworks.go.domain.MaterialRevision)8 PipelineRevision (com.thoughtworks.go.domain.valuestreammap.PipelineRevision)8 CaseInsensitiveString (com.thoughtworks.go.config.CaseInsensitiveString)7 NodeLevelMap (com.thoughtworks.go.domain.valuestreammap.NodeLevelMap)7 GitMaterial (com.thoughtworks.go.config.materials.git.GitMaterial)5 ScheduleTestUtil (com.thoughtworks.go.server.service.ScheduleTestUtil)4 MaterialInstance (com.thoughtworks.go.domain.MaterialInstance)2 PipelineIdentifier (com.thoughtworks.go.domain.PipelineIdentifier)2 Stages (com.thoughtworks.go.domain.Stages)2 Modification (com.thoughtworks.go.domain.materials.Modification)2 DummyNode (com.thoughtworks.go.domain.valuestreammap.DummyNode)2 Revision (com.thoughtworks.go.domain.valuestreammap.Revision)2 Stage (com.thoughtworks.go.domain.Stage)1 ArrayList (java.util.ArrayList)1 Date (java.util.Date)1