View Javadoc
1   package org.apache.maven.it;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.it.util.ResourceExtractor;
23  
24  import java.io.File;
25  import java.util.Properties;
26  
27  /**
28   * This is a test set for <a href="https://issues.apache.org/jira/browse/MNG-5011">MNG-5011</a>.
29   */
30  public class MavenITmng5011ConfigureCollectionArrayFromSystemPropTest
31      extends AbstractMavenIntegrationTestCase
32  {
33  
34      public MavenITmng5011ConfigureCollectionArrayFromSystemPropTest()
35      {
36          super( "[3.0.3,)" );
37      }
38  
39      /**
40       * Verify that plugin parameters of type array/collection can be configured using system properties from the CLI.
41       *
42       * @throws Exception in case of failure
43       */
44      public void testit()
45          throws Exception
46      {
47          File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-5011" );
48  
49          Verifier verifier = newVerifier( testDir.getAbsolutePath() );
50          verifier.setAutoclean( false );
51          verifier.deleteDirectory( "target" );
52          verifier.setSystemProperty( "config.stringParams", "" );
53          verifier.setSystemProperty( "config.fileParams", "foo,bar" );
54          verifier.setSystemProperty( "config.listParam", ",two,,four," );
55          verifier.executeGoal( "validate" );
56          verifier.verifyErrorFreeLog();
57          verifier.resetStreams();
58  
59          Properties props = verifier.loadProperties( "target/config.properties" );
60  
61          assertEquals( "0", props.getProperty( "stringParams" ) );
62  
63          assertEquals( "2", props.getProperty( "fileParams" ) );
64          assertEquals( new File( testDir, "foo" ).getCanonicalFile(),
65                        new File( props.getProperty( "fileParams.0" ) ).getCanonicalFile() );
66          assertEquals( new File( testDir, "bar" ).getCanonicalFile(),
67                        new File( props.getProperty( "fileParams.1" ) ).getCanonicalFile() );
68  
69          assertEquals( "5", props.getProperty( "listParam" ) );
70          assertEquals( "", props.getProperty( "listParam.0", "" ) );
71          assertEquals( "two", props.getProperty( "listParam.1", "" ) );
72          assertEquals( "", props.getProperty( "listParam.2", "" ) );
73          assertEquals( "four", props.getProperty( "listParam.3", "" ) );
74          assertEquals( "", props.getProperty( "listParam.4", "" ) );
75      }
76  
77  }