View Javadoc
1   package org.codehaus.modello.plugin.sax;
2   
3   /*
4    * Copyright (c) 2013, 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:simonetripodi@apache.org">Simone Tripodi</a>
44   */
45  @PlexusTest
46  public class SaxGeneratorTest extends AbstractModelloJavaGeneratorTest {
47      @Inject
48      private ModelloCore modello;
49  
50      public SaxGeneratorTest() {
51          super("sax");
52      }
53  
54      @Test
55      public void testXpp3Generator() throws Throwable {
56          Model model = modello.loadModel(getXmlResourceReader("/maven.mdo"));
57  
58          // check some elements read from the model
59          List<ModelClass> classesList = model.getClasses(new Version("4.0.0"));
60  
61          assertEquals(28, classesList.size());
62  
63          ModelClass clazz = (ModelClass) classesList.get(0);
64  
65          assertEquals("Model", clazz.getName());
66  
67          ModelField extend = clazz.getField("extend", new Version("4.0.0"));
68  
69          assertTrue(extend.hasMetadata(XmlFieldMetadata.ID));
70  
71          XmlFieldMetadata xml = (XmlFieldMetadata) extend.getMetadata(XmlFieldMetadata.ID);
72  
73          assertNotNull(xml);
74  
75          assertTrue(xml.isAttribute());
76  
77          assertEquals("extender", xml.getTagName());
78  
79          ModelField build = clazz.getField("build", new Version("4.0.0"));
80  
81          assertTrue(build.hasMetadata(XmlFieldMetadata.ID));
82  
83          xml = (XmlFieldMetadata) build.getMetadata(XmlFieldMetadata.ID);
84  
85          assertNotNull(xml);
86  
87          assertEquals("builder", xml.getTagName());
88  
89          // now generate sources and test them
90          Map<String, Object> parameters = getModelloParameters("4.0.0");
91  
92          modello.generate(model, "java", parameters);
93          modello.generate(model, "sax-writer", parameters);
94  
95          addDependency("org.xmlunit", "xmlunit-core");
96          compileGeneratedSources();
97  
98          // TODO: see why without this, version system property is set to "2.4.1" value after verify
99          System.setProperty("version", getModelloVersion());
100 
101         verifyCompiledGeneratedSources("org.codehaus.modello.generator.xml.sax.SaxVerifier");
102     }
103 }