blob: fdb56f79cc8e5e77d7269838449a85a06d38a5f3 [file] [log] [blame]
package org.apache.maven.surefire.its;
/*
* 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 org.apache.maven.surefire.its.fixture.SurefireJUnit4IntegrationTestCase;
import org.apache.maven.surefire.its.fixture.SurefireLauncher;
import org.junit.Test;
/**
* Test project using "groups" support
*
* @author <a href="mailto:todd@apache.org">Todd Lipcon</a>
* @author <a href="mailto:krosenvold@apache.org">Kristian Rosenvold</a>
*/
public class JUnit48TestCategoriesIT
extends SurefireJUnit4IntegrationTestCase
{
@Test
public void testCategoriesAB()
{
runAB( unpacked() );
}
@Test
public void testCategoriesABForkAlways()
{
runAB( unpacked().forkAlways() );
}
@Test
public void testCategoriesACFullyQualifiedClassName()
{
runACFullyQualifiedClassName( unpacked() );
}
@Test
public void testCategoriesACFullyQualifiedClassNameForkAlways()
{
runACFullyQualifiedClassName( unpacked().forkAlways() );
}
@Test
public void testCategoriesACClassNameSuffix()
{
runACClassNameSuffix( unpacked() );
}
@Test
public void testCategoriesACClassNameSuffixForkAlways()
{
runACClassNameSuffix( unpacked().forkAlways() );
}
@Test
public void testCategoriesBadCategory()
{
runBadCategory( unpacked() );
}
@Test
public void testBadCategoryForkAlways()
{
runBadCategory( unpacked().forkAlways() );
}
private static void runAB( SurefireLauncher unpacked )
{
unpacked.executeTest()
.verifyErrorFreeLog()
.assertTestSuiteResults( 3, 0, 0, 0 )
.verifyTextInLog( "catA: 1" )
.verifyTextInLog( "catB: 1" )
.verifyTextInLog( "catC: 0" )
.verifyTextInLog( "catNone: 0" );
}
private static void runACClassNameSuffix( SurefireLauncher unpacked )
{
unpacked.groups( "CategoryA,CategoryC" )
.executeTest()
.verifyErrorFreeLog()
.assertTestSuiteResults( 6, 0, 0, 0 )
.verifyTextInLog( "catA: 1" )
.verifyTextInLog( "catB: 0" )
.verifyTextInLog( "catC: 1" )
.verifyTextInLog( "catNone: 0" )
.verifyTextInLog( "mA: 1" )
// This seems questionable !? The class is annotated with category C and method with B
.verifyTextInLog( "mB: 1" )
.verifyTextInLog( "mC: 1" )
.verifyTextInLog( "CatNone: 1" );
}
private static void runACFullyQualifiedClassName( SurefireLauncher unpacked )
{
unpacked.groups( "junit4.CategoryA,junit4.CategoryC" )
.executeTest()
.verifyErrorFreeLog()
.assertTestSuiteResults( 6, 0, 0, 0 )
.verifyTextInLog( "catA: 1" )
.verifyTextInLog( "catB: 0" )
.verifyTextInLog( "catC: 1" )
.verifyTextInLog( "catNone: 0" )
.verifyTextInLog( "mA: 1" )
// This seems questionable !? The class is annotated with category C and method with B
.verifyTextInLog( "mB: 1" )
.verifyTextInLog( "mC: 1" )
.verifyTextInLog( "CatNone: 1" );
}
private static void runBadCategory( SurefireLauncher unpacked )
{
unpacked.failIfNoTests( false )
.groups( "BadCategory" )
.executeTest()
.verifyErrorFreeLog();
}
private SurefireLauncher unpacked()
{
return unpack( "/junit48-categories" );
// .debugSurefireFork();
}
}