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.Properties;
26
27
28
29
30
31
32
33 public class MavenITmng3900ProfilePropertiesInterpolationTest
34 extends AbstractMavenIntegrationTestCase
35 {
36
37 public MavenITmng3900ProfilePropertiesInterpolationTest()
38 {
39 super( ALL_MAVEN_VERSIONS );
40 }
41
42
43
44
45
46
47 public void testitMNG3900()
48 throws Exception
49 {
50 File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3900" );
51
52 Verifier verifier = newVerifier( testDir.getAbsolutePath() );
53 verifier.setAutoclean( false );
54 verifier.deleteDirectory( "target" );
55 verifier.addCliOption( "-Pinterpolation-profile" );
56 verifier.executeGoal( "validate" );
57 verifier.verifyErrorFreeLog();
58 verifier.resetStreams();
59
60 Properties props = verifier.loadProperties( "target/pom.properties" );
61 assertEquals( "PASSED", props.getProperty( "project.properties.test" ) );
62 assertEquals( "PASSED", props.getProperty( "project.properties.property" ) );
63 assertEquals( "http://maven.apache.org/PASSED", props.getProperty( "project.url" ) );
64 }
65
66 }