Skip to content

Commit

Permalink
[SUREFIRE-1057] Surefire doesn't detect TestNG test method which fail…
Browse files Browse the repository at this point in the history
…s because of exception in @dataProvider method
  • Loading branch information
mbocek committed Dec 16, 2014
1 parent 58d88c0 commit c681b86
Show file tree
Hide file tree
Showing 4 changed files with 338 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,207 @@
package org.apache.maven.surefire.its.jiras;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.nullValue;
import static org.junit.Assert.assertThat;

import java.io.FileNotFoundException;

import org.apache.maven.shared.utils.xml.Xpp3Dom;
import org.apache.maven.shared.utils.xml.Xpp3DomBuilder;
import org.apache.maven.surefire.its.fixture.OutputValidator;
import org.apache.maven.surefire.its.fixture.SurefireJUnit4IntegrationTestCase;
import org.junit.Test;

/**
* Test surefire-report on TestNG test
*
* @author <a href="mailto:[email protected]">Michal Bocek</a>
*/
public class Surefire1057DataProviderExceptionIT
extends SurefireJUnit4IntegrationTestCase
{

private enum ResultType
{
SKIPPED( "skipped" ), FAILURE( "failure" );

private String type;

private ResultType(String type)
{
this.type = type;
}

public String getType() {
return type;
}
}

@Test
public void testNgReport688() throws Exception {
testNgReport( "6.8.8", ResultType.SKIPPED,
"java.lang.RuntimeException: Exception in data provider",
"java.lang.RuntimeException" );
}


@Test
public void testNgReport60() throws Exception {
testNgReport( "6.0", ResultType.SKIPPED,
"java.lang.RuntimeException: Exception in data provider",
"java.lang.RuntimeException" );
}

@Test
public void testNgReport51410() throws Exception {
testNgReport( "5.14.10", ResultType.SKIPPED,
"java.lang.RuntimeException: Exception in data provider",
"java.lang.RuntimeException" );
}

@Test
public void testNgReport5148() throws Exception {
testNgReport( "5.14.9", ResultType.SKIPPED,
"java.lang.RuntimeException: Exception in data provider",
"java.lang.RuntimeException" );
}

@Test
public void testNgReport5147() throws Exception {
testNgReport( "5.14.7", ResultType.SKIPPED,
"java.lang.RuntimeException: Exception in data provider",
"java.lang.RuntimeException" );
}


@Test
public void testNgReport5146() throws Exception {
testNgReport( "5.14.6", ResultType.SKIPPED,
null,
null );
}

@Test
public void testNgReport5141() throws Exception {
testNgReport( "5.14.1", ResultType.SKIPPED,
null,
null );
}

@Test
public void testNgReport514() throws Exception {
testNgReport( "5.14", ResultType.SKIPPED,
null,
null );
}

@Test
public void testNgReport5131() throws Exception {
testNgReport( "5.13.1", ResultType.FAILURE,
"java.lang.reflect.InvocationTargetException",
"org.testng.TestNGException" );
}

@Test
public void testNgReport513() throws Exception {
testNgReport( "5.13", ResultType.FAILURE,
"java.lang.reflect.InvocationTargetException",
"org.testng.TestNGException" );
}

@Test
public void testNgReport5121() throws Exception {
testNgReport( "5.12.1", ResultType.FAILURE,
"java.lang.reflect.InvocationTargetException",
"org.testng.TestNGException" );
}

@Test
public void testNgReport57() throws Exception {
testNgReport( "5.7", ResultType.FAILURE,
"java.lang.reflect.InvocationTargetException",
"org.testng.TestNGException" );
}

private void testNgReport( String version, ResultType resultType, String message, String type )
throws Exception
{
final OutputValidator outputValidator = runTest( version, resultType );

Xpp3Dom[] children = readTests( outputValidator, "testng.DataProviderExceptionReportTest" );
assertThat( "Report should contains only one test case", children.length, is( equalTo( 1 ) ));

Xpp3Dom test = children[0];
assertThat( "Not expected classname", test.getAttribute( "classname" ),
is( equalTo( "testng.DataProviderExceptionReportTest" ) ) );
assertThat( "Not expected test name", test.getAttribute( "name" ),
is( equalTo( "testDataProvider" ) ) );

children = test.getChildren( resultType.getType() );
assertThat( "Test should contains only one " + resultType.getType() + " element", children.length,
is( equalTo( 1 ) ) );

Xpp3Dom result = children[0];
if ( message == null )
{
assertThat( "Subelement message attribute must be null", result.getAttribute( "message" ), is( nullValue() ) );
}
else
{
assertThat( "Subelement should contains message attribute", result.getAttribute( "message" ),
is( equalTo( message ) ) );
}

if ( type == null )
{
assertThat( "Subelement type attribute must be null", result.getAttribute( "type" ), is( nullValue() ) );
} else {
assertThat( "Subelement should contains type attribute", result.getAttribute( "type" ),
is( equalTo( type ) ) );
}
}

private OutputValidator runTest( String version, ResultType resultType )
{
int skipped = ResultType.SKIPPED.equals( resultType ) ? 1 : 0;
int failure = ResultType.FAILURE.equals( resultType ) ? 1 : 0;

final OutputValidator outputValidator = unpack( "/surefire-1057-dataprovider-exception" )
.resetInitialGoals( version )
.addSurefireReportGoal()
.executeCurrentGoals()
.assertTestSuiteResults( 1, 0, failure, skipped );
return outputValidator;
}

private Xpp3Dom[] readTests( OutputValidator validator, String className )
throws FileNotFoundException
{
Xpp3Dom testResult =
Xpp3DomBuilder.build( validator.getSurefireReportsXmlFile( "TEST-" + className + ".xml" ).getFileInputStream(),
"UTF-8" );
Xpp3Dom[] children = testResult.getChildren( "testcase" );
return children;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->


<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.apache.maven.plugins.surefire</groupId>
<artifactId>surefire-1057-dataprovider-exception</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Surefire 1057</name>

<profiles>
<profile>
<id>testng-old</id>
<activation>
<property><name>testNgClassifier</name></property>
</activation>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testNgVersion}</version>
<classifier>${testNgClassifier}</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>testng-new</id>
<activation>
<property><name>!testNgClassifier</name></property>
</activation>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testNgVersion}</version>
</dependency>
</dependencies>
</profile>
</profiles>

<properties>
<testNgVersion>5.7</testNgVersion>
<testNgClassifier>jdk15</testNgClassifier>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<test>DataProviderExceptionReportTest</test>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package testng;

import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import org.testng.SkipException;

public class DataProviderExceptionReportTest
{

@DataProvider( name = "provider" )
public Object[][] dataProvider()
{
throw new RuntimeException("Exception in data provider");
}

@Test( dataProvider = "provider" )
public void testDataProvider()
{
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,12 @@ private static String getUserFriendlyTestName( ITestResult result )

public void onTestSkipped( ITestResult result )
{
ReportEntry report = new SimpleReportEntry( getSource( result ), getUserFriendlyTestName( result ) );

ReportEntry report = SimpleReportEntry.withException( getSource( result ), getUserFriendlyTestName( result ),
new PojoStackTraceWriter(
result.getTestClass().getRealClass().getName(),
result.getMethod().getMethodName(),
result.getThrowable() ) );

reporter.testSkipped( report );
}

Expand Down

0 comments on commit c681b86

Please sign in to comment.