View Javadoc
1   package org.apache.maven.plugins.shade.resource;
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 java.util.Locale;
23  
24  import org.junit.Before;
25  import org.junit.Test;
26  
27  import static org.junit.Assert.assertFalse;
28  import static org.junit.Assert.assertTrue;
29  
30  /**
31   * Test for {@link ApacheLicenseResourceTransformer}.
32   * 
33   * @author Benjamin Bentmann
34   */
35  public class ApacheLicenseResourceTransformerTest
36  {
37  
38      private ApacheLicenseResourceTransformer transformer;
39  
40      static
41      {
42          /*
43           * NOTE: The Turkish locale has an usual case transformation for the letters "I" and "i", making it a prime
44           * choice to test for improper case-less string comparisions.
45           */
46          Locale.setDefault( new Locale( "tr" ) );
47      }
48  
49      @Before
50      public void setUp()
51      {
52          transformer = new ApacheLicenseResourceTransformer();
53      }
54  
55      @Test
56      public void testCanTransformResource()
57      {
58          assertTrue( transformer.canTransformResource( "META-INF/LICENSE" ) );
59          assertTrue( transformer.canTransformResource( "META-INF/LICENSE.TXT" ) );
60          assertTrue( transformer.canTransformResource( "META-INF/LICENSE.md" ) );
61          assertTrue( transformer.canTransformResource( "META-INF/License.txt" ) );
62          assertFalse( transformer.canTransformResource( "META-INF/MANIFEST.MF" ) );
63      }
64  
65  }