View Javadoc
1   package org.codehaus.modello.generator.xml.xpp3;
2   
3   /*
4    * Copyright (c) 2004, Codehaus.org
5    *
6    * Permission is hereby granted, free of charge, to any person obtaining a copy of
7    * this software and associated documentation files (the "Software"), to deal in
8    * the Software without restriction, including without limitation the rights to
9    * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10   * of the Software, and to permit persons to whom the Software is furnished to do
11   * so, subject to the following conditions:
12   *
13   * The above copyright notice and this permission notice shall be included in all
14   * copies or substantial portions of the Software.
15   *
16   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22   * SOFTWARE.
23   */
24  
25  import javax.inject.Inject;
26  
27  import java.util.List;
28  import java.util.Map;
29  
30  import org.codehaus.modello.AbstractModelloJavaGeneratorTest;
31  import org.codehaus.modello.core.ModelloCore;
32  import org.codehaus.modello.model.Model;
33  import org.codehaus.modello.model.ModelClass;
34  import org.codehaus.modello.model.ModelField;
35  import org.codehaus.modello.model.Version;
36  import org.codehaus.modello.plugins.xml.metadata.XmlFieldMetadata;
37  import org.codehaus.plexus.testing.PlexusTest;
38  import org.junit.jupiter.api.Test;
39  
40  import static org.junit.jupiter.api.Assertions.*;
41  
42  /**
43   * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
44   * @author <a href="mailto:evenisse@codehaus.org">Emmanuel Venisse</a>
45   */
46  @PlexusTest
47  public class Xpp3GeneratorTest extends AbstractModelloJavaGeneratorTest {
48      public Xpp3GeneratorTest() {
49          super("xpp3");
50      }
51  
52      @Inject
53      private ModelloCore modello;
54  
55      @Test
56      public void testXpp3Generator() throws Throwable {
57  
58          Model model = modello.loadModel(getXmlResourceReader("/maven.mdo"));
59  
60          // check some elements read from the model
61          List<ModelClass> classesList = model.getClasses(new Version("4.0.0"));
62  
63          assertEquals(28, classesList.size());
64  
65          ModelClass clazz = (ModelClass) classesList.get(0);
66  
67          assertEquals("Model", clazz.getName());
68  
69          ModelField extend = clazz.getField("extend", new Version("4.0.0"));
70  
71          assertTrue(extend.hasMetadata(XmlFieldMetadata.ID));
72  
73          XmlFieldMetadata xml = (XmlFieldMetadata) extend.getMetadata(XmlFieldMetadata.ID);
74  
75          assertNotNull(xml);
76  
77          assertTrue(xml.isAttribute());
78  
79          assertEquals("extender", xml.getTagName());
80  
81          ModelField build = clazz.getField("build", new Version("4.0.0"));
82  
83          assertTrue(build.hasMetadata(XmlFieldMetadata.ID));
84  
85          xml = (XmlFieldMetadata) build.getMetadata(XmlFieldMetadata.ID);
86  
87          assertNotNull(xml);
88  
89          assertEquals("builder", xml.getTagName());
90  
91          // now generate sources and test them
92          Map<String, Object> parameters = getModelloParameters("4.0.0", 8);
93  
94          modello.generate(model, "java", parameters);
95          modello.generate(model, "xpp3-writer", parameters);
96          modello.generate(model, "xpp3-reader", parameters);
97  
98          addDependency("org.xmlunit", "xmlunit-core");
99          compileGeneratedSources(8);
100 
101         // TODO: see why without this, version system property is set to "2.4.1" value after verify
102         System.setProperty("version", getModelloVersion());
103 
104         verifyCompiledGeneratedSources("org.codehaus.modello.generator.xml.xpp3.Xpp3Verifier");
105     }
106 }