blob: 93999da02ca152a2fac68c0dbc178ae6be2e0ae6 [file] [log] [blame]
package org.apache.maven.plugin.assembly.archive.task.testutils;
/*
* 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 java.io.File;
import java.util.List;
import junit.framework.Assert;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.assembly.AssemblerConfigurationSource;
import org.apache.maven.plugin.assembly.testutils.MockManager;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.archiver.Archiver;
import org.codehaus.plexus.archiver.ArchiverException;
import org.easymock.MockControl;
public class MockAndControlForAddArtifactTask
{
public Archiver archiver;
public MockControl archiverCtl;
public AssemblerConfigurationSource configSource;
public MockControl configSourceCtl;
private MavenProject project = null;
public MockAndControlForAddArtifactTask( final MockManager mockManager )
{
this( mockManager, null );
}
public MockAndControlForAddArtifactTask( final MockManager mockManager, final MavenProject project )
{
this.project = project;
archiverCtl = MockControl.createControl( Archiver.class );
mockManager.add( archiverCtl );
archiver = (Archiver) archiverCtl.getMock();
configSourceCtl = MockControl.createControl( AssemblerConfigurationSource.class );
mockManager.add( configSourceCtl );
configSource = (AssemblerConfigurationSource) configSourceCtl.getMock();
enableDefaultExpectations();
}
private void enableDefaultExpectations()
{
configSource.getProject();
configSourceCtl.setReturnValue( project, MockControl.ZERO_OR_MORE );
configSource.getMavenSession();
configSourceCtl.setReturnValue( null, MockControl.ZERO_OR_MORE );
}
public void expectGetFinalName( final String finalName )
{
configSource.getFinalName();
configSourceCtl.setReturnValue( finalName, MockControl.ONE_OR_MORE );
}
public void expectGetDestFile( final File destFile )
{
archiver.getDestFile();
archiverCtl.setReturnValue( destFile, MockControl.ZERO_OR_MORE );
}
public void expectAddArchivedFileSet( final File artifactFile, final String outputLocation,
final String[] includes, final String[] excludes )
{
try
{
archiver.addArchivedFileSet( artifactFile, outputLocation, includes, excludes );
if ( ( includes != null ) || ( excludes != null ) )
{
archiverCtl.setMatcher( MockControl.ARRAY_MATCHER );
}
archiverCtl.setVoidCallable( MockControl.ONE_OR_MORE );
}
catch ( final ArchiverException e )
{
Assert.fail( "Should never happen." );
}
}
public void expectModeChange( final int originalDirMode, final int originalFileMode, final int dirMode,
final int fileMode, final int numberOfChanges )
{
archiver.getOverrideDirectoryMode();
archiverCtl.setReturnValue( originalDirMode );
archiver.getOverrideFileMode();
archiverCtl.setReturnValue( originalFileMode );
// one of the changes will occur below, when we restore the original mode.
if ( numberOfChanges > 1 )
{
for ( int i = 1; i < numberOfChanges; i++ )
{
if ( dirMode > -1 )
{
archiver.setDirectoryMode( dirMode );
}
if ( fileMode > -1 )
{
archiver.setFileMode( fileMode );
}
}
}
if ( dirMode > -1 )
{
archiver.setDirectoryMode( originalDirMode );
}
if ( fileMode > -1 )
{
archiver.setFileMode( originalFileMode );
}
}
public void expectAddFile( final File file, final String outputLocation, final int fileMode )
{
try
{
archiver.addFile( file, outputLocation, fileMode );
archiverCtl.setVoidCallable( MockControl.ONE_OR_MORE );
}
catch ( final ArchiverException e )
{
Assert.fail( "Should never happen." );
}
}
public void expectAddFile( final File file, final String outputLocation )
{
try
{
archiver.addFile( file, outputLocation );
archiverCtl.setVoidCallable( MockControl.ONE_OR_MORE );
}
catch ( final ArchiverException e )
{
Assert.fail( "Should never happen." );
}
}
public void expectGetReactorProjects( final List<MavenProject> projects )
{
configSource.getReactorProjects();
configSourceCtl.setReturnValue( projects, MockControl.ONE_OR_MORE );
}
public void expectGetSession( final MavenSession session )
{
configSource.getMavenSession();
configSourceCtl.setReturnValue( session, MockControl.ONE_OR_MORE );
}
}