mirror of https://github.com/apache/maven.git
o Deleted broken IT that is now superseded by IT for MNG-4745
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@980968 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e39fe99fa1
commit
3e5a7a6f52
|
@ -79,7 +79,6 @@ public class IntegrationTestSuite
|
|||
// -------------------------------------------------------------------------------------------------------------
|
||||
// Tests that don't run stable and need to be fixed
|
||||
// -------------------------------------------------------------------------------------------------------------
|
||||
// suite.addTestSuite( MavenIT0109ReleaseUpdateTest.class );
|
||||
// suite.addTestSuite( MavenIT0108SnapshotUpdateTest.class ); -- MNG-3137
|
||||
|
||||
suite.addTestSuite( MavenITmng4745PluginVersionUpdateTest.class );
|
||||
|
|
|
@ -1,140 +0,0 @@
|
|||
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.FileUtils;
|
||||
import org.apache.maven.it.util.ResourceExtractor;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Test to verify that a release can be updated.
|
||||
*/
|
||||
public class MavenIT0109ReleaseUpdateTest
|
||||
extends AbstractMavenIntegrationTestCase
|
||||
{
|
||||
public MavenIT0109ReleaseUpdateTest()
|
||||
{
|
||||
super( ALL_MAVEN_VERSIONS );
|
||||
}
|
||||
|
||||
private static final String GROUPID = "org.apache.maven.it";
|
||||
|
||||
private static final String ARTIFACTID = "maven-it-release-update";
|
||||
|
||||
private static final String TYPE = "jar";
|
||||
|
||||
private static final String POM_TYPE = "pom";
|
||||
|
||||
private static final String OLD_VERSION = "1.0";
|
||||
|
||||
private static final String NEW_VERSION = "1.1";
|
||||
|
||||
public void testReleaseUpdated()
|
||||
throws Exception
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0109" );
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.deleteArtifact( GROUPID, ARTIFACTID, OLD_VERSION, TYPE );
|
||||
verifier.deleteArtifact( GROUPID, ARTIFACTID, OLD_VERSION, POM_TYPE );
|
||||
verifier.deleteArtifact( GROUPID, ARTIFACTID, NEW_VERSION, TYPE );
|
||||
verifier.deleteArtifact( GROUPID, ARTIFACTID, NEW_VERSION, POM_TYPE );
|
||||
|
||||
writeMetadata( new File( verifier.localRepo ), "maven-metadata-it.releases.xml", OLD_VERSION,
|
||||
"20051230031110" );
|
||||
|
||||
// create a repository (TODO: into verifier)
|
||||
File repository = new File( testDir, "repo" );
|
||||
repository.mkdirs();
|
||||
|
||||
// create artifact in repository (TODO: into verifier)
|
||||
writeArtifact( repository, OLD_VERSION );
|
||||
writeArtifact( repository, NEW_VERSION );
|
||||
|
||||
writeMetadata( repository, "maven-metadata.xml", NEW_VERSION, "20061230031110" );
|
||||
|
||||
verifier.assertArtifactNotPresent( GROUPID, ARTIFACTID, OLD_VERSION, TYPE );
|
||||
verifier.assertArtifactNotPresent( GROUPID, ARTIFACTID, NEW_VERSION, TYPE );
|
||||
|
||||
Map m = new HashMap();
|
||||
/*
|
||||
m.put( "MAVEN_OPTS",
|
||||
"-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005" );
|
||||
*/
|
||||
verifier.executeGoal( "package", m );
|
||||
|
||||
verifier.assertArtifactNotPresent( GROUPID, ARTIFACTID, OLD_VERSION, TYPE );
|
||||
verifier.assertArtifactPresent( GROUPID, ARTIFACTID, NEW_VERSION, TYPE );
|
||||
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
}
|
||||
|
||||
private static void writeMetadata( File repository, String fileName, String version, String timestamp )
|
||||
throws IOException
|
||||
{
|
||||
File metadata = new File( repository, GROUPID.replace( '.', '/' ) + "/" + ARTIFACTID + "/" + fileName );
|
||||
metadata.getParentFile().mkdirs();
|
||||
|
||||
StringBuffer content = new StringBuffer();
|
||||
content.append( "<?xml version=\"1.0\"?><metadata>\n" );
|
||||
content.append( " <groupId>" + GROUPID + "</groupId>\n" );
|
||||
content.append( " <artifactId>" + ARTIFACTID + "</artifactId>\n" );
|
||||
content.append( " <versioning>\n" );
|
||||
content.append( " <latest>" + version + "</latest>\n" );
|
||||
content.append( " <release>" + version + "</release>\n" );
|
||||
content.append( " <versions>\n" );
|
||||
content.append( " <version>" + OLD_VERSION + "</version>\n" );
|
||||
content.append( " <version>" + NEW_VERSION + "</version>\n" );
|
||||
content.append( " </versions>\n" );
|
||||
content.append( " <lastUpdated>" + timestamp + "</lastUpdated>\n" );
|
||||
content.append( " </versioning>\n" );
|
||||
content.append( "</metadata>" );
|
||||
|
||||
FileUtils.fileWrite( metadata.getAbsolutePath(), content.toString() );
|
||||
}
|
||||
|
||||
private static void writeArtifact( File repository, String version )
|
||||
throws IOException
|
||||
{
|
||||
/*
|
||||
File artifact = new File( repository, GROUPID.replace( '.', '/' ) + "/" + ARTIFACTID + "/" + version + "/" +
|
||||
ARTIFACTID + "-" + version + "." + TYPE );
|
||||
artifact.getParentFile().mkdirs();
|
||||
FileUtils.fileWrite( artifact.getAbsolutePath(), version );
|
||||
|
||||
StringBuffer content = new StringBuffer();
|
||||
content.append( "<?xml version=\"1.0\"?><project>\n" );
|
||||
content.append( " <modelVersion>4.0.0</modelVersion>\n" );
|
||||
content.append( " <groupId>" + GROUPID + "</groupId>\n" );
|
||||
content.append( " <artifactId>" + ARTIFACTID + "</artifactId>\n" );
|
||||
content.append( " <version>" + version + "</version>\n" );
|
||||
content.append( " <packaging>maven-plugin</packaging>\n" );
|
||||
content.append( "</project>" );
|
||||
|
||||
artifact = new File( artifact.getParentFile(), ARTIFACTID + "-" + version + "." + POM_TYPE );
|
||||
FileUtils.fileWrite( artifact.getAbsolutePath(), content.toString() );
|
||||
*/
|
||||
}
|
||||
}
|
|
@ -1,47 +0,0 @@
|
|||
<!--
|
||||
~ 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.
|
||||
-->
|
||||
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<name>Maven Integration Test :: releaseUpdate</name>
|
||||
<groupId>org.apache.maven.its.releaseUpdate</groupId>
|
||||
<artifactId>maven-it-release-update</artifactId>
|
||||
<version>1.0</version>
|
||||
<description>
|
||||
Test to verify that a plugin can be successfully updated to the latest release. See MNG-1908.
|
||||
</description>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.it</groupId>
|
||||
<artifactId>maven-it-release-update</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>it.releases</id>
|
||||
<url>file:///${basedir}/repo</url>
|
||||
<releases>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
</project>
|
Binary file not shown.
Loading…
Reference in New Issue