Coverage Report - org.apache.maven.plugin.surefire.report.ConsoleOutputFileReporter
 
Classes in this File Line Coverage Branch Coverage Complexity
ConsoleOutputFileReporter
68%
17/25
50%
3/6
2,2
 
 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.File;
 23  
 import java.io.FileOutputStream;
 24  
 import java.io.IOException;
 25  
 
 26  
 import org.apache.maven.surefire.report.ReportEntry;
 27  
 import org.apache.maven.surefire.report.ReporterException;
 28  
 import org.apache.maven.surefire.util.NestedRuntimeException;
 29  
 
 30  
 /**
 31  
  * Surefire output consumer proxy that writes test output to a {@link java.io.File} for each test suite.
 32  
  * <p/>
 33  
  * This class is not threadsafe, but can be serially handed off from thread to thread.
 34  
  *
 35  
  * @author Kristian Rosenvold
 36  
  * @author Carlos Sanchez
 37  
  */
 38  
 public class ConsoleOutputFileReporter
 39  
     implements TestcycleConsoleOutputReceiver
 40  
 {
 41  
     private final File reportsDirectory;
 42  
 
 43  
     private final String reportNameSuffix;
 44  
 
 45  
     private String reportEntryName;
 46  
 
 47  
     private FileOutputStream fileOutputStream;
 48  
 
 49  
     public ConsoleOutputFileReporter( File reportsDirectory, String reportNameSuffix )
 50  2
     {
 51  2
         this.reportsDirectory = reportsDirectory;
 52  2
         this.reportNameSuffix = reportNameSuffix;
 53  2
     }
 54  
 
 55  
     public void testSetStarting( ReportEntry reportEntry )
 56  
     {
 57  2
         close();
 58  2
         this.reportEntryName = reportEntry.getName();
 59  2
     }
 60  
 
 61  
     public void testSetCompleted( ReportEntry report )
 62  
         throws ReporterException
 63  
     {
 64  2
     }
 65  
 
 66  
     public void close()
 67  
     {
 68  2
         if ( fileOutputStream != null )
 69  
         {
 70  
             try
 71  
             {
 72  0
                 fileOutputStream.flush();
 73  0
                 fileOutputStream.close();
 74  
             }
 75  0
             catch ( IOException e )
 76  
             {
 77  
                 ;
 78  0
             }
 79  0
             fileOutputStream = null;
 80  
         }
 81  2
     }
 82  
 
 83  
     public void writeTestOutput( byte[] buf, int off, int len, boolean stdout )
 84  
     {
 85  
         try
 86  
         {
 87  2
             if ( fileOutputStream == null )
 88  
             {
 89  2
                 if ( !reportsDirectory.exists() )
 90  
                 {
 91  
                     //noinspection ResultOfMethodCallIgnored
 92  0
                     reportsDirectory.mkdirs();
 93  
                 }
 94  2
                 File file =
 95  
                     FileReporter.getReportFile( reportsDirectory, reportEntryName, reportNameSuffix, "-output.txt" );
 96  2
                 fileOutputStream = new FileOutputStream( file );
 97  
             }
 98  2
             fileOutputStream.write( buf, off, len );
 99  
         }
 100  0
         catch ( IOException e )
 101  
         {
 102  0
             throw new NestedRuntimeException( e );
 103  2
         }
 104  2
     }
 105  
 }