View Javadoc

1   package org.apache.maven.plugin.surefire.booterclient.output;
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.StringWriter;
23  
24  /**
25   * Test for {@link PrintWriterOutputConsumer}
26   *
27   * @author <a href="mailto:carlos@apache.org">Carlos Sanchez</a>
28   * @version $Id: PrintWriterOutputConsumerTest.java 1039320 2010-11-26 11:48:24Z krosenvold $
29   */
30  public class PrintWriterOutputConsumerTest
31      extends AbstractOutputConsumerTestCase
32  {
33      private StringWriter writer;
34  
35      private static final String LINE_SEPARATOR = System.getProperty( "line.separator" );
36  
37      protected void setUp()
38          throws Exception
39      {
40          super.setUp();
41          writer = new StringWriter();
42          setOutputConsumer( new PrintWriterOutputConsumer( writer ) );
43      }
44  
45      public void testConsumeFooterLine()
46      {
47          super.testConsumeFooterLine();
48          assertEquals( this.getLine() + LINE_SEPARATOR, writer.toString() );
49      }
50  
51      public void testConsumeHeaderLine()
52      {
53          super.testConsumeHeaderLine();
54          assertEquals( getLine() + LINE_SEPARATOR, writer.toString() );
55      }
56  
57      public void testConsumeMessageLine()
58      {
59          super.testConsumeMessageLine();
60          assertEquals( getLine() + LINE_SEPARATOR, writer.toString() );
61      }
62  
63      public void testConsumeOutputLine()
64          throws Exception
65      {
66          super.testConsumeOutputLine();
67          assertEquals( getLine() + LINE_SEPARATOR, writer.toString() );
68      }
69  
70      public void testTestSetCompleted()
71      {
72          super.testTestSetCompleted();
73          assertEquals( "", writer.toString() );
74      }
75  
76      public void testTestSetStarting()
77      {
78          super.testTestSetStarting();
79          assertEquals( "", writer.toString() );
80      }
81  
82  }