blob: 2130e9973eef07aa33d466b055cd1b0c7a29ef11 [file] [log] [blame]
package npanday.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.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
public class NPANDAY_459_MsBuildProjectReferences
extends AbstractNPandayIntegrationTestCase
{
public NPANDAY_459_MsBuildProjectReferences()
{
super( "[1.4.1-incubating,)" );
}
public void testMsBuildWithProjectReferences()
throws Exception
{
Verifier verifier = getDefaultVerifier();
String testDir = verifier.getBasedir();
// TODO: would be better to ensure each IT has unique IDs for required test artifacts in a better namespace for deleting
verifier.deleteArtifacts( "test" );
verifier.executeGoal( "install" );
verifier.assertFileNotPresent(
new File( testDir, "ClassLibrary1/.references/test/test-snapshot-1.0-SNAPSHOT/test-snapshot.dll" ).getAbsolutePath() );
verifier.assertFilePresent(
new File( testDir, "ConsoleApplication1/.references/test/test-snapshot-1.0-SNAPSHOT/test-snapshot.dll" ).getAbsolutePath() );
// copy to bin directory manually for msbuild
verifier.assertFilePresent( new File( testDir, "ClassLibrary1/bin/Debug/ClassLibrary1.dll" ).getAbsolutePath() );
// TODO: The bin directory is currently deleted by "install" (though perhaps shouldn't be) - unrelated to this issue, though
//verifier.assertFilePresent( new File( testDir, "ConsoleApplication1/bin/Debug/ConsoleApplication1.exe" ).getAbsolutePath() );
//verifier.assertFilePresent( new File( testDir, "ConsoleApplication1/bin/Debug/ClassLibrary1.dll" ).getAbsolutePath() );
// TODO: need to properly support transitive dependencies in the projects that copy files
//verifier.assertFilePresent( new File( testDir, "ConsoleApplication1/bin/Debug/test-snapshot.dll" ).getAbsolutePath() );
verifier.verifyErrorFreeLog();
}
}