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 MavenITmng3811ReportingPluginConfigurationInheritanceTest
34 extends AbstractMavenIntegrationTestCase
35 {
36 public MavenITmng3811ReportingPluginConfigurationInheritanceTest()
37 {
38
39 super( "[2.0.11,2.1.0-M1),[2.1.0,)" );
40 }
41
42
43
44
45
46
47 public void testitMNG3811()
48 throws Exception
49 {
50 File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3811" );
51
52 Verifier verifier = newVerifier( new File( testDir, "child" ).getAbsolutePath() );
53 verifier.setAutoclean( false );
54 verifier.deleteDirectory( "target" );
55 verifier.executeGoal( "validate" );
56 verifier.verifyErrorFreeLog();
57 verifier.resetStreams();
58
59 Properties props = verifier.loadProperties( "target/config.properties" );
60 String p = "project.reporting.plugins.0.configuration.children.";
61
62 assertEquals( "2", props.getProperty( p + "stringParams.0.children" ) );
63 assertEquals( "parentParam", props.getProperty( p + "stringParams.0.children.stringParam.0.value" ) );
64 assertEquals( "childParam", props.getProperty( p + "stringParams.0.children.stringParam.1.value" ) );
65 assertEquals( "true", props.getProperty( p + "booleanParam.0.value" ) );
66 }
67
68 }