blob: 9d587f9bee5f4a8d65c58cc65b1994ab6ed09115 [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 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.plugin.assembly.testutils.TestFileManager;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.archiver.Archiver;
import org.codehaus.plexus.archiver.ArchiverException;
import org.easymock.MockControl;
public class MockAndControlForAddFileSetsTask
{
public AssemblerConfigurationSource configSource;
public MockControl configSourceCtl;
public Archiver archiver;
public MockControl archiverCtl;
public TestFileManager fileManager;
public File archiveBaseDir;
public MockAndControlForAddFileSetsTask( MockManager mockManager, TestFileManager fileManager )
{
this.fileManager = fileManager;
configSourceCtl = MockControl.createControl( AssemblerConfigurationSource.class );
mockManager.add( configSourceCtl );
configSource = (AssemblerConfigurationSource) configSourceCtl.getMock();
archiverCtl = MockControl.createControl( Archiver.class );
mockManager.add( archiverCtl );
archiver = (Archiver) archiverCtl.getMock();
archiveBaseDir = fileManager.createTempDir();
configSource.getMavenSession();
configSourceCtl.setReturnValue( null, MockControl.ZERO_OR_MORE );
}
public void expectGetArchiveBaseDirectory()
{
configSource.getArchiveBaseDirectory();
configSourceCtl.setReturnValue( archiveBaseDir, MockControl.ONE_OR_MORE );
}
public void expectGetBasedir( File basedir )
{
configSource.getBasedir();
configSourceCtl.setReturnValue( basedir, MockControl.ONE_OR_MORE );
}
public void expectModeChanges( int[] modes, int modeChangeCount )
{
archiver.getOverrideDirectoryMode();
archiverCtl.setReturnValue( modes[0] );
archiver.getOverrideFileMode();
archiverCtl.setReturnValue( modes[1] );
if ( modeChangeCount > 1 )
{
for ( int i = 1; i < modeChangeCount; i++ )
{
if ( modes[2] > -1 )
{
archiver.setDirectoryMode( modes[2] );
}
if ( modes[3] > -1 )
{
archiver.setFileMode( modes[3] );
}
}
}
if ( modes[2] > -1 )
{
archiver.setDirectoryMode( modes[0] );
}
if ( modes[3] > -1 )
{
archiver.setFileMode( modes[1] );
}
}
public void expectAdditionOfSingleFileSet( MavenProject project, File basedir, String finalName,
boolean shouldAddDir, int[] modes, int modeChangeCount,
boolean isDebugEnabled )
{
expectAdditionOfSingleFileSet( project, basedir, finalName, shouldAddDir, modes, modeChangeCount,
isDebugEnabled, true );
}
public void expectAdditionOfSingleFileSet( MavenProject project, File basedir, String finalName,
boolean shouldAddDir, int[] modes, int modeChangeCount,
boolean isDebugEnabled, boolean isProjectUsed )
{
// the logger sends a debug message with this info inside the addFileSet(..) method..
if ( isDebugEnabled )
{
archiver.getOverrideDirectoryMode();
archiverCtl.setReturnValue( modes[0] );
archiver.getOverrideFileMode();
archiverCtl.setReturnValue( modes[1] );
}
if ( isProjectUsed )
{
configSource.getProject();
configSourceCtl.setReturnValue( project, MockControl.ONE_OR_MORE );
}
configSource.getFinalName();
configSourceCtl.setReturnValue( finalName, MockControl.ONE_OR_MORE );
if ( shouldAddDir )
{
expectModeChanges( modes, modeChangeCount );
try
{
archiver.addFileSet( null );
archiverCtl.setMatcher( MockControl.ALWAYS_MATCHER );
archiverCtl.setVoidCallable( MockControl.ONE_OR_MORE );
}
catch ( ArchiverException e )
{
Assert.fail( "Should never happen." );
}
}
}
public void expectGetProject( MavenProject project )
{
configSource.getProject();
configSourceCtl.setReturnValue( project, MockControl.ONE_OR_MORE );
}
public void expectGetSession( MavenSession session )
{
configSource.getMavenSession();
configSourceCtl.setReturnValue( session, MockControl.ONE_OR_MORE );
}
public void expectGetFinalName( String finalName )
{
configSource.getFinalName();
configSourceCtl.setReturnValue( finalName, MockControl.ONE_OR_MORE );
}
}