1 package org.apache.maven.it;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import org.apache.maven.it.util.ResourceExtractor;
23
24 import java.io.File;
25 import java.util.List;
26
27
28
29
30
31
32
33 public class MavenITmng0507ArtifactRelocationTest
34 extends AbstractMavenIntegrationTestCase
35 {
36 public MavenITmng0507ArtifactRelocationTest()
37 {
38 super( ALL_MAVEN_VERSIONS );
39 }
40
41
42
43
44
45
46 public void testitMNG507()
47 throws Exception
48 {
49 File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-0507" );
50
51 Verifier verifier = newVerifier( testDir.getAbsolutePath(), "remote" );
52 verifier.setAutoclean( false );
53 verifier.deleteDirectory( "target" );
54 verifier.deleteArtifacts( "org.apache.maven", "maven-core-it-support", "1.1" );
55 verifier.deleteArtifacts( "org.apache.maven", "maven-core-it-support-old-location", "1.1" );
56 verifier.addCliOption( "--settings" );
57 verifier.addCliOption( "settings.xml" );
58 verifier.executeGoal( "validate" );
59 verifier.verifyErrorFreeLog();
60 verifier.resetStreams();
61
62 verifier.assertArtifactPresent( "org.apache.maven", "maven-core-it-support", "1.1", "jar" );
63 verifier.assertArtifactPresent( "org.apache.maven", "maven-core-it-support", "1.1", "pom" );
64 verifier.assertArtifactPresent( "org.apache.maven", "maven-core-it-support-old-location", "1.1", "pom" );
65 verifier.assertArtifactNotPresent( "org.apache.maven", "maven-core-it-support-old-location", "1.1", "jar" );
66
67 List<String> artifacts = verifier.loadLines( "target/artifacts.txt", "UTF-8" );
68 assertTrue( artifacts.toString(), artifacts.contains( "org.apache.maven:maven-core-it-support:jar:1.1" ) );
69 }
70
71 }