View Javadoc

1   package org.apache.maven.surefire.its;
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  
23  import java.io.File;
24  
25  /**
26   * JUnit4 RunListener Integration Test.
27   * 
28   * @author <a href="mailto:matthew.gilliard@gmail.com">Matthew Gilliard</a>
29   */
30  public class JUnit4RunListenerIT
31      extends SurefireVerifierTestClass
32  {
33      public JUnit4RunListenerIT()
34      {
35          super( "/junit4-runlistener" );
36      }
37  
38      public void testJUnit4RunListener()
39          throws Exception
40      {
41          addGoal( "-Dprovider=surefire-junit4" );
42          addGoal( "-DjunitVersion=4.4" );
43          executeTest();
44          verifyErrorFreeLog();
45          assertResults();
46          verifyTextInLog( "testRunStarted null" );
47          verifyTextInLog( "testFinished simpleTest" );
48          verifyTextInLog( "testRunFinished org.junit.runner.Result" );
49      }
50  
51      private void assertResults()
52      {
53          assertTestSuiteResults( 1, 0, 0, 0 );
54          final File targetDir = getSubFile( "target" );
55  
56          assertFileExists( new File( targetDir, "runlistener-output-1.txt" ) );
57          assertFileExists( new File( targetDir, "runlistener-output-2.txt" ) );
58      }
59  
60      public void testRunlistenerJunitCoreProvider()
61          throws Exception
62      {
63          addGoal( "-Dprovider=surefire-junit47" );
64          addGoal( "-DjunitVersion=4.8.1" );
65          executeTest();
66          verifyErrorFreeLog();
67          assertResults();
68          verifyTextInLog( "testRunStarted null" );
69          verifyTextInLog( "testFinished simpleTest" );
70          verifyTextInLog( "testRunFinished org.junit.runner.Result" );
71      }
72  
73      private void assertFileExists( final File file )
74      {
75          assertTrue( "File doesn't exist: " + file.getAbsolutePath(), file.exists() );
76      }
77  
78  }