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.plugins.shade.resource;
20  
21  import java.io.InputStream;
22  import java.util.Collections;
23  
24  import org.apache.maven.plugins.shade.relocation.Relocator;
25  import org.codehaus.plexus.util.IOUtil;
26  import org.custommonkey.xmlunit.Diff;
27  import org.custommonkey.xmlunit.XMLAssert;
28  import org.custommonkey.xmlunit.XMLUnit;
29  import org.junit.Before;
30  import org.junit.Test;
31  
32  /**
33   * Test for {@link ComponentsXmlResourceTransformer}.
34   *
35   * @author Brett Porter
36   *
37   */
38  public class ComponentsXmlResourceTransformerTest {
39      private ComponentsXmlResourceTransformer transformer;
40  
41      @Before
42      public void setUp() {
43          this.transformer = new ComponentsXmlResourceTransformer();
44      }
45  
46      @Test
47      public void testConfigurationMerging() throws Exception {
48  
49          XMLUnit.setNormalizeWhitespace(true);
50  
51          InputStream resourceAsStream = getClass().getResourceAsStream("/components-1.xml");
52          transformer.processResource("components-1.xml", resourceAsStream, Collections.<Relocator>emptyList(), 0);
53          resourceAsStream.close();
54          InputStream resourceAsStream1 = getClass().getResourceAsStream("/components-2.xml");
55          transformer.processResource("components-1.xml", resourceAsStream1, Collections.<Relocator>emptyList(), 0);
56          resourceAsStream1.close();
57          final InputStream resourceAsStream2 = getClass().getResourceAsStream("/components-expected.xml");
58          Diff diff = XMLUnit.compareXML(
59                  IOUtil.toString(resourceAsStream2, "UTF-8"),
60                  IOUtil.toString(transformer.getTransformedResource(), "UTF-8"));
61          // assertEquals( IOUtil.toString( getClass().getResourceAsStream( "/components-expected.xml" ), "UTF-8" ),
62          //              IOUtil.toString( transformer.getTransformedResource(), "UTF-8" ).replaceAll("\r\n", "\n") );
63          resourceAsStream2.close();
64          XMLAssert.assertXMLIdentical(diff, true);
65      }
66  }