blob: 57e50c156e92f31d61000d2031192b3615f68334 [file] [log] [blame]
package org.apache.maven.it;
/*
* 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.shared.verifier.util.ResourceExtractor;
import org.apache.maven.shared.verifier.Verifier;
import org.apache.maven.shared.verifier.VerificationException;
import java.io.File;
import java.util.List;
import org.junit.jupiter.api.Test;
public class MavenITmng6981ProjectListShouldIncludeChildrenTest
extends AbstractMavenIntegrationTestCase
{
private static final String RESOURCE_PATH = "/mng-6981-pl-should-include-children";
public MavenITmng6981ProjectListShouldIncludeChildrenTest()
{
super( "[4.0.0-alpha-1,)" );
}
@Test
public void testProjectListShouldIncludeChildrenByDefault()
throws Exception
{
final File testDir = ResourceExtractor.simpleExtractResources( getClass(), RESOURCE_PATH );
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
verifier.addCliOption( "-pl" );
verifier.addCliOption( ":module-a" );
verifier.addCliArgument( "compile" );
verifier.execute();
verifier.verifyTextInLog( "Building module-a-1 1.0" );
}
/**
* Since --pl's behavior is changed, make sure the alternative for building a pom without its children still works.
*
* @throws Exception in case of failure
*/
@Test
public void testFileSwitchAllowsExcludeOfChildren()
throws Exception
{
final File testDir = ResourceExtractor.simpleExtractResources( getClass(), RESOURCE_PATH );
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
verifier.addCliOption( "-f" );
verifier.addCliOption( "module-a" );
verifier.addCliOption( "--non-recursive" );
verifier.setLogFileName( "log-non-recursive.txt" );
verifier.addCliArgument( "compile" );
verifier.execute();
verifyTextNotInLog( verifier, "Building module-a-1 1.0" );
}
/**
* Throws an exception if the text <strong>is</strong> present in the log.
*
* @param verifier the verifier to use
* @param text the text to assert present
* @throws VerificationException if text is not found in log
*/
private void verifyTextNotInLog( Verifier verifier, String text )
throws VerificationException
{
List<String> lines = verifier.loadFile( verifier.getBasedir(), verifier.getLogFileName(), false );
for ( String line : lines )
{
if ( Verifier.stripAnsi( line ).contains( text ) )
{
throw new VerificationException( "Text found in log: " + text );
}
}
}
}