blob: 4e584c73b15cf3424b3568f05cbb91f3c689adbb [file] [log] [blame]
package org.apache.maven.plugins.repository.it;
import static org.apache.maven.plugins.repository.it.support.IntegrationTestUtils.getTestDir;
import static org.apache.maven.plugins.repository.testutil.Assertions.assertZipContents;
import static junit.framework.Assert.fail;
import org.apache.maven.it.VerificationException;
import org.apache.maven.it.Verifier;
import org.apache.maven.plugins.repository.it.support.IntegrationTestUtils;
import org.apache.maven.plugins.repository.testutil.Assertions;
import org.junit.Test;
import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class BundleCreateIT
{
@SuppressWarnings( "unchecked" )
@Test
public void createWithSCMInfoProvided()
throws IOException, URISyntaxException, VerificationException
{
File dir = getTestDir( "bundle-create" );
Verifier verifier = new Verifier( dir.getAbsolutePath() );
verifier.getCliOptions().add( "--settings ../settings.xml" );
String prefix = IntegrationTestUtils.getCliPluginPrefix();
verifier.executeGoal( prefix + "bundle-create" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
File bundleSource = new File( dir, "target/test-1.0-bundle.jar" );
Set<String> requiredEntries = new HashSet<String>();
requiredEntries.add( "pom.xml" );
requiredEntries.add( "test-1.0.jar" );
requiredEntries.add( "test-1.0-sources.jar" );
assertZipContents( requiredEntries, Assertions.EMPTY_ENTRY_NAMES, bundleSource );
}
@SuppressWarnings( "unchecked" )
@Test
public void createWithSCMInfoMissing()
throws IOException, URISyntaxException, VerificationException
{
File dir = getTestDir( "bundle-create-no-scm" );
Verifier verifier = new Verifier( dir.getAbsolutePath() );
List<String> cliOptions = verifier.getCliOptions();
cliOptions.add( "--settings ../settings.xml" );
String prefix = IntegrationTestUtils.getCliPluginPrefix();
try
{
verifier.executeGoal( prefix + "bundle-create" );
verifier.verifyErrorFreeLog();
fail( "No SCM Section provided, build should fail." );
}
catch( VerificationException e )
{
// expected, since POM doesn't supply a SCM section.
}
finally
{
verifier.resetStreams();
}
}
}