View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.surefire.testng.conf;
20  
21  import java.util.HashMap;
22  import java.util.List;
23  import java.util.Map;
24  
25  import junit.framework.TestCase;
26  import org.apache.maven.surefire.api.testset.TestSetFailedException;
27  
28  import static org.apache.maven.surefire.testng.conf.TestNGMapConfiguratorTest.FIRST_LISTENER;
29  import static org.apache.maven.surefire.testng.conf.TestNGMapConfiguratorTest.LISTENER_PROP;
30  import static org.apache.maven.surefire.testng.conf.TestNGMapConfiguratorTest.SECOND_LISTENER;
31  
32  /**
33   *
34   */
35  public class TestNG5141ConfiguratorTest extends TestCase {
36  
37      public void testListenersOnSeparateLines() {
38          try {
39              String listenersOnSeveralLines = String.format("%s , %n %s", FIRST_LISTENER, SECOND_LISTENER);
40              Map convertedOptions = getConvertedOptions(LISTENER_PROP, listenersOnSeveralLines);
41              List listeners = (List) convertedOptions.get(String.format("-%s", LISTENER_PROP));
42              assertEquals(2, listeners.size());
43              fail();
44          } catch (TestSetFailedException e) {
45              // TODO remove it when surefire will use "configure(CommandLineArgs)"
46          }
47      }
48  
49      public void testListenersOnTheSameLine() {
50          try {
51              String listenersOnSeveralLines = String.format("%s,%s", FIRST_LISTENER, SECOND_LISTENER);
52              Map convertedOptions = getConvertedOptions(LISTENER_PROP, listenersOnSeveralLines);
53              List listeners = (List) convertedOptions.get(String.format("-%s", LISTENER_PROP));
54              assertEquals(2, listeners.size());
55              fail();
56          } catch (TestSetFailedException e) {
57              // TODO remove it when surefire will use "configure(CommandLineArgs)"
58          }
59      }
60  
61      private Map getConvertedOptions(String key, String value) throws TestSetFailedException {
62          TestNGMapConfigurator testNGMapConfigurator = new TestNG5141Configurator();
63          Map<String, String> raw = new HashMap<>();
64          raw.put(key, value);
65          return testNGMapConfigurator.getConvertedOptions(raw);
66      }
67  }