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 org.apache.maven.surefire.report.ReportEntry;
23  import org.apache.maven.surefire.report.ReporterException;
24  
25  import java.io.File;
26  import java.io.FileWriter;
27  import java.io.IOException;
28  import java.io.PrintWriter;
29  import java.util.List;
30  
31  import static org.apache.maven.plugin.surefire.report.FileReporterUtils.stripIllegalFilenameChars;
32  
33  /**
34   * Base class for file reporters.
35   *
36   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
37   * @author Kristian Rosenvold
38   */
39  public class FileReporter
40  {
41      private final File reportsDirectory;
42  
43      private final boolean deleteOnStarting;
44  
45      private final String reportNameSuffix;
46  
47      public FileReporter( File reportsDirectory, String reportNameSuffix )
48      {
49          this.reportsDirectory = reportsDirectory;
50          this.deleteOnStarting = false;
51          this.reportNameSuffix = reportNameSuffix;
52      }
53  
54      private PrintWriter testSetStarting( ReportEntry report )
55      {
56          File reportFile = getReportFile( reportsDirectory, report.getName(), reportNameSuffix, ".txt" );
57  
58          File reportDir = reportFile.getParentFile();
59  
60          // noinspection ResultOfMethodCallIgnored
61          reportDir.mkdirs();
62  
63          if ( deleteOnStarting && reportFile.exists() )
64          {
65              // noinspection ResultOfMethodCallIgnored
66              reportFile.delete();
67          }
68  
69          try
70          {
71              PrintWriter writer = new PrintWriter( new FileWriter( reportFile ) );
72  
73              writer.println( "-------------------------------------------------------------------------------" );
74  
75              writer.println( "Test set: " + report.getName() );
76  
77              writer.println( "-------------------------------------------------------------------------------" );
78  
79              return writer;
80          }
81          catch ( IOException e )
82          {
83              throw new ReporterException( "Unable to create file for report: " + e.getMessage(), e );
84          }
85      }
86  
87      public static File getReportFile( File reportsDirectory, String reportEntryName, String reportNameSuffix,
88                                        String fileExtension )
89      {
90          File reportFile;
91  
92          if ( reportNameSuffix != null && reportNameSuffix.length() > 0 )
93          {
94              reportFile =
95                  new File( reportsDirectory, stripIllegalFilenameChars( reportEntryName + "-" + reportNameSuffix
96                      + fileExtension ) );
97          }
98          else
99          {
100             reportFile = new File( reportsDirectory, stripIllegalFilenameChars( reportEntryName + fileExtension ) );
101         }
102         return reportFile;
103     }
104 
105     public void testSetCompleted( WrappedReportEntry report, TestSetStats testSetStats, List<String> testResults )
106     {
107         PrintWriter writer = testSetStarting( report );
108         try
109         {
110             writer.print( testSetStats.getTestSetSummary( report ) );
111 
112             if ( testResults != null )
113             {
114                 for ( String testResult : testResults )
115                 {
116                     writer.println( testResult );
117                 }
118             }
119 
120             writer.flush();
121         }
122         finally
123         {
124             writer.close();
125         }
126     }
127 }