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 java.io.File;
23 import java.util.Properties;
24
25 import org.apache.maven.it.util.ResourceExtractor;
26
27
28
29
30
31
32
33 public class MavenITmng2605BogusProfileActivationTest
34 extends AbstractMavenIntegrationTestCase
35 {
36
37 public MavenITmng2605BogusProfileActivationTest()
38 {
39 super( "(2.0.10,2.1.0-M1),(2.1.0-M1,3.0-alpha-1),(3.0-alpha-1,)" );
40 }
41
42
43
44
45
46
47
48 public void testitMNG2605()
49 throws Exception
50 {
51 File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-2605" );
52
53 Verifier verifier = newVerifier( testDir.getAbsolutePath() );
54 verifier.setAutoclean( false );
55 verifier.deleteDirectory( "target" );
56 verifier.addCliOption( "--settings" );
57 verifier.addCliOption( "settings.xml" );
58 verifier.executeGoal( "validate" );
59 verifier.verifyErrorFreeLog();
60 verifier.resetStreams();
61
62 Properties props = verifier.loadProperties( "target/profile.properties" );
63 assertNull( props.getProperty( "project.properties.pomProperty" ) );
64 assertNull( props.getProperty( "project.properties.settingsProperty" ) );
65 assertNull( props.getProperty( "project.properties.profilesProperty" ) );
66 }
67
68 }