View Javadoc

1   package org.apache.maven.surefire.util;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *     http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.util.ArrayList;
23  import java.util.Calendar;
24  import java.util.Collections;
25  import java.util.Comparator;
26  import java.util.Iterator;
27  import java.util.List;
28  import org.apache.maven.plugin.surefire.runorder.RunEntryStatisticsMap;
29  import org.apache.maven.surefire.testset.RunOrderParameters;
30  
31  /**
32   * Applies the final runorder of the tests
33   *
34   * @author Kristian Rosenvold
35   */
36  public class DefaultRunOrderCalculator
37      implements RunOrderCalculator
38  {
39      private final Comparator sortOrder;
40  
41      private final RunOrder[] runOrder;
42  
43      private final RunOrderParameters runOrderParameters;
44  
45      private final int threadCount;
46  
47      public DefaultRunOrderCalculator( RunOrderParameters runOrderParameters, int threadCount )
48      {
49          this.runOrderParameters = runOrderParameters;
50          this.threadCount = threadCount;
51          this.runOrder = runOrderParameters.getRunOrder();
52          this.sortOrder = this.runOrder.length > 0 ? getSortOrderComparator( this.runOrder[0] ) : null;
53      }
54  
55      public TestsToRun orderTestClasses( TestsToRun scannedClasses )
56      {
57  
58          List result = new ArrayList( 500 );
59  
60          for ( Iterator it = scannedClasses.iterator(); it.hasNext(); )
61          {
62              result.add( it.next() );
63          }
64  
65          orderTestClasses( result, runOrder.length != 0 ? runOrder[0] : null );
66          return new TestsToRun( result );
67      }
68  
69      private void orderTestClasses( List testClasses, RunOrder runOrder )
70      {
71          if ( RunOrder.RANDOM.equals( runOrder ) )
72          {
73              Collections.shuffle( testClasses );
74          }
75          else if ( RunOrder.FAILEDFIRST.equals( runOrder ) )
76          {
77              RunEntryStatisticsMap runEntryStatisticsMap =
78                  RunEntryStatisticsMap.fromFile( runOrderParameters.getRunStatisticsFile() );
79              final List prioritized = runEntryStatisticsMap.getPrioritizedTestsByFailureFirst( testClasses );
80              testClasses.clear();
81              testClasses.addAll( prioritized );
82  
83          }
84          else if ( RunOrder.BALANCED.equals( runOrder ) )
85          {
86              RunEntryStatisticsMap runEntryStatisticsMap =
87                  RunEntryStatisticsMap.fromFile( runOrderParameters.getRunStatisticsFile() );
88              final List prioritized = runEntryStatisticsMap.getPrioritizedTestsClassRunTime( testClasses, threadCount );
89              testClasses.clear();
90              testClasses.addAll( prioritized );
91  
92          }
93          else if ( sortOrder != null )
94          {
95              Collections.sort( testClasses, sortOrder );
96          }
97      }
98  
99      private Comparator getSortOrderComparator( RunOrder runOrder )
100     {
101         if ( RunOrder.ALPHABETICAL.equals( runOrder ) )
102         {
103             return getAlphabeticalComparator();
104         }
105         else if ( RunOrder.REVERSE_ALPHABETICAL.equals( runOrder ) )
106         {
107             return getReverseAlphabeticalComparator();
108         }
109         else if ( RunOrder.HOURLY.equals( runOrder ) )
110         {
111             final int hour = Calendar.getInstance().get( Calendar.HOUR_OF_DAY );
112             return ( ( hour % 2 ) == 0 ) ? getAlphabeticalComparator() : getReverseAlphabeticalComparator();
113         }
114         else
115         {
116             return null;
117         }
118     }
119 
120     private Comparator getReverseAlphabeticalComparator()
121     {
122         return new Comparator()
123         {
124             public int compare( Object o1, Object o2 )
125             {
126                 return ( (Class) o2 ).getName().compareTo( ( (Class) o1 ).getName() );
127             }
128         };
129     }
130 
131     private Comparator getAlphabeticalComparator()
132     {
133         return new Comparator()
134         {
135             public int compare( Object o1, Object o2 )
136             {
137                 return ( (Class) o1 ).getName().compareTo( ( (Class) o2 ).getName() );
138             }
139         };
140     }
141 
142 }