View Javadoc
1   package org.codehaus.modello.plugin.xsd;
2   
3   /*
4    * Copyright (c) 2005, 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.AbstractModelloGeneratorTest;
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:brett@codehaus.org">Brett Porter</a>
44   */
45  @PlexusTest
46  public class XsdGeneratorTest extends AbstractModelloGeneratorTest {
47  
48      @Inject
49      private ModelloCore modello;
50  
51      public XsdGeneratorTest() {
52          super("xsd");
53      }
54  
55      @Test
56      public void testXsdGenerator() throws Throwable {
57  
58          Model model = modello.loadModel(getXmlResourceReader("/maven.mdo"));
59  
60          // check misc. properties of the model loaded
61          List<ModelClass> classesList = model.getClasses(new Version("4.0.0"));
62  
63          assertEquals(26, 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          // generate XSD file
92          Map<String, Object> parameters = getModelloParameters("4.0.0");
93  
94          modello.generate(model, "xsd", parameters);
95  
96          // addDependency( "modello", "modello-core", "1.0-SNAPSHOT" );
97  
98          // TODO write verfier which compile generated schema : use jaxp
99  
100         // verify( "org.codehaus.modello.generator.xml.xsd.XsdVerifier", "xsd" );
101     }
102 }