View Javadoc
1   package org.apache.maven.plugin.surefire.report;
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.io.BufferedOutputStream;
23  import java.io.OutputStreamWriter;
24  import java.io.PrintStream;
25  import java.io.PrintWriter;
26  import java.util.List;
27  import org.apache.maven.surefire.report.ReportEntry;
28  
29  /**
30   * Base class for console reporters.
31   *
32   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
33   * @author Kristian Rosenvold
34   */
35  public class ConsoleReporter
36  {
37      public static final String BRIEF = "brief";
38  
39      public static final String PLAIN = "plain";
40  
41      private static final String TEST_SET_STARTING_PREFIX = "Running ";
42  
43      private static final int BUFFER_SIZE = 4096;
44  
45      private final PrintWriter writer;
46  
47      public ConsoleReporter( PrintStream originalSystemOut )
48      {
49          OutputStreamWriter out = new OutputStreamWriter( new BufferedOutputStream( originalSystemOut, BUFFER_SIZE ) );
50          writer = new PrintWriter( out );
51      }
52  
53      public void testSetStarting( ReportEntry report )
54      {
55          writeMessage( getTestSetStartingMessage( report ) );
56      }
57  
58      public void writeMessage( String message )
59      {
60          writer.print( message );
61          writer.flush();
62      }
63  
64      public void writeLnMessage( String message )
65      {
66          writer.println( message );
67          writer.flush();
68      }
69  
70      public void testSetCompleted( WrappedReportEntry report, TestSetStats testSetStats, List<String> testResults )
71      {
72          writeMessage( testSetStats.getTestSetSummary( report ) );
73  
74          if ( testResults != null )
75          {
76              for ( String testResult : testResults )
77              {
78                  writeLnMessage( testResult );
79              }
80          }
81      }
82  
83  
84      public void reset()
85      {
86          writer.flush();
87      }
88  
89      /**
90       * Get the test set starting message for a report.
91       * eg. "Running org.foo.BarTest ( of group )"
92       *
93       * @param report report whose test set is starting
94       * @return the message
95       */
96      static String getTestSetStartingMessage( ReportEntry report )
97      {
98          return TEST_SET_STARTING_PREFIX + report.getNameWithGroup() + "\n";
99      }
100 
101 
102 }