Coverage Report - org.apache.maven.surefire.report.ConsoleOutputCapture
 
Classes in this File Line Coverage Branch Coverage Complexity
ConsoleOutputCapture
0%
0/9
N/A
1
ConsoleOutputCapture$ForwardingPrintStream
0%
0/10
N/A
1
 
 1  
 package org.apache.maven.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.ByteArrayOutputStream;
 23  
 import java.io.IOException;
 24  
 import java.io.PrintStream;
 25  
 
 26  
 /**
 27  
  * Deals with system.out/err.
 28  
  * <p/>
 29  
  */
 30  
 public class ConsoleOutputCapture
 31  
 {
 32  
 
 33  0
     private static final PrintStream oldOut = System.out;
 34  
 
 35  0
     private static final PrintStream oldErr = System.err;
 36  
 
 37  
     public ConsoleOutputCapture( ConsoleOutputReceiver target )
 38  0
     {
 39  0
         System.setOut( new ForwardingPrintStream( true, target ) );
 40  
 
 41  0
         System.setErr( new ForwardingPrintStream( false, target ) );
 42  0
     }
 43  
 
 44  
     public void restoreStreams()
 45  
     {
 46  0
         System.setOut( oldOut );
 47  0
         System.setErr( oldErr );
 48  0
     }
 49  
 
 50  
     static class ForwardingPrintStream
 51  
         extends PrintStream
 52  
     {
 53  
         private final boolean isStdout;
 54  
 
 55  
         private final ConsoleOutputReceiver target;
 56  
 
 57  
         ForwardingPrintStream( boolean stdout, ConsoleOutputReceiver target )
 58  
         {
 59  0
             super( new ByteArrayOutputStream() );
 60  0
             isStdout = stdout;
 61  0
             this.target = target;
 62  0
         }
 63  
 
 64  
         public void write( byte[] buf, int off, int len )
 65  
         {
 66  0
             target.writeTestOutput( buf, off, len, isStdout );
 67  0
         }
 68  
 
 69  
         public void write( byte[] b )
 70  
             throws IOException
 71  
         {
 72  0
             target.writeTestOutput( b, 0, b.length, isStdout );
 73  0
         }
 74  
 
 75  
         public void close()
 76  
         {
 77  0
         }
 78  
 
 79  
         public void flush()
 80  
         {
 81  0
         }
 82  
     }
 83  
 
 84  
 }