blob: 2838cfc2d4dc3dff6c7a53215c04ce1a1225221e [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.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
import java.util.List;
/**
* This is a test set for <a href="https://issues.apache.org/jira/browse/MNG-249">MNG-249</a>.
*
* @author Brett Porter
*
*/
public class MavenITmng0249ResolveDepsFromReactorTest
extends AbstractMavenIntegrationTestCase
{
public MavenITmng0249ResolveDepsFromReactorTest()
{
super( ALL_MAVEN_VERSIONS );
}
/**
* Test that the reactor can establish the artifact location of known projects for dependencies.
*/
public void testitMNG0249()
throws Exception
{
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-0249" );
Verifier verifier = newVerifier( testDir.getAbsolutePath() );
verifier.setAutoclean( false );
verifier.executeGoal( "validate" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
List<String> ccp = verifier.loadLines( "test-component-c/target/compile.txt", "UTF-8" );
assertTrue( ccp.toString(), ccp.contains( "test-component-c/classes" ) );
assertTrue( ccp.toString(), ccp.contains( "test-component-b/classes" ) );
assertTrue( ccp.toString(), ccp.contains( "test-component-a/classes" ) );
List<String> rcp = verifier.loadLines( "test-component-c/target/runtime.txt", "UTF-8" );
assertTrue( rcp.toString(), rcp.contains( "test-component-c/classes" ) );
assertTrue( rcp.toString(), rcp.contains( "test-component-b/classes" ) );
assertTrue( rcp.toString(), rcp.contains( "test-component-a/classes" ) );
List<String> tcp = verifier.loadLines( "test-component-c/target/test.txt", "UTF-8" );
assertTrue( tcp.toString(), tcp.contains( "test-component-c/classes" ) );
assertTrue( tcp.toString(), tcp.contains( "test-component-b/classes" ) );
assertTrue( tcp.toString(), tcp.contains( "test-component-a/classes" ) );
}
}