View Javadoc
1   package org.apache.maven.lifecycle.internal;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
5    * agreements. See the NOTICE file distributed with this work for additional information regarding
6    * copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance with the License. You may obtain a
8    * copy of the License at
9    *
10   * http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software distributed under the License
13   * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14   * or implied. See the License for the specific language governing permissions and limitations under
15   * the License.
16   */
17  
18  import static org.hamcrest.Matchers.greaterThanOrEqualTo;
19  import static org.hamcrest.Matchers.is;
20  import static org.junit.Assert.assertEquals;
21  import static org.junit.Assert.assertThat;
22  
23  import org.apache.maven.execution.MavenSession;
24  import org.apache.maven.lifecycle.internal.stub.ProjectDependencyGraphStub;
25  import org.junit.Test;
26  
27  /**
28   * @author Kristian Rosenvold
29   */
30  public class ProjectBuildListTest
31  {
32      @Test
33      public void testGetByTaskSegment()
34          throws Exception
35      {
36          final MavenSession session = ProjectDependencyGraphStub.getMavenSession();
37          ProjectBuildList projectBuildList = ProjectDependencyGraphStub.getProjectBuildList( session );
38          TaskSegment taskSegment = projectBuildList.get( 0 ).getTaskSegment();
39          assertThat( "This test assumes there are at least 6 elements in projectBuilds", 
40                      projectBuildList.size(), is( greaterThanOrEqualTo( 6 ) ) );
41  
42          final ProjectBuildList byTaskSegment = projectBuildList.getByTaskSegment( taskSegment );
43          assertEquals( projectBuildList.size(),
44                        byTaskSegment.size() ); // TODO Make multiple segments on projectBuildList
45      }
46  
47  }