blob: 5e619ad285eabcdd9c32e37b42719c4159df4744 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.xml.axi;
import javax.swing.text.Document;
import junit.framework.*;
import org.netbeans.modules.xml.schema.model.AttributeGroupReference;
import org.netbeans.modules.xml.schema.model.Choice;
import org.netbeans.modules.xml.schema.model.GlobalAttributeGroup;
import org.netbeans.modules.xml.schema.model.GlobalComplexType;
import org.netbeans.modules.xml.schema.model.GlobalElement;
import org.netbeans.modules.xml.schema.model.LocalAttribute;
import org.netbeans.modules.xml.schema.model.LocalComplexType;
import org.netbeans.modules.xml.schema.model.LocalElement;
import org.netbeans.modules.xml.schema.model.SchemaModel;
import org.netbeans.modules.xml.schema.model.SimpleExtension;
import org.netbeans.modules.xml.xam.dom.AbstractDocumentModel;
/**
*
* @author Ayub Khan
*/
public class SchemaGeneratorPerfTest extends AbstractTestCase {
public static final String TEST_XSD = "resources/OTA_TI_simple.xsd";//"resources/OTA_TravelItinerary.xsd";
public static final String GLOBAL_ELEMENT = "OTA_TravelItineraryRS";
private Document doc = null;
public SchemaGeneratorPerfTest(String testName) {
super(testName, TEST_XSD, GLOBAL_ELEMENT);
}
protected void setUp() throws Exception {
super.setUp();
}
public static Test suite() {
TestSuite suite = new TestSuite(SchemaGeneratorPerfTest.class);
return suite;
}
public void testGenerateSchema() throws Exception {
generateSchema();
}
/**
* Test of createElement method, of class org.netbeans.modules.xml.axi.XAMFactory.
*/
public void generateSchema() throws Exception {
Element element = globalElement;
assertNotNull(element);
SchemaModel sm = null;
sm = getSchemaModel();
doc = ((AbstractDocumentModel)sm).getBaseDocument();
//DefaultSchemaGenerator schemaGenerator = new DefaultSchemaGenerator(getAXIModel());
//global element name change
axiModel.startTransaction();
for(Element e:axiModel.getRoot().getElements())
if(e.getName().equals("CancellationStatus"))
e.setName(e.getName()+"_");
long startTime = System.currentTimeMillis();
axiModel.endTransaction();
long endTime = System.currentTimeMillis();
print("Time taken to flush: "+(endTime-startTime)+" ms");
// for(GlobalElement ge:sm.getSchema().getElements()) {
// if(ge.getName().startsWith("CancellationStatus")) {
// assertEquals("updated schemamodel", ge.getName(), "CancellationStatus_");
// assertEquals("updated schemamodel type", ge.getType().getQName().getLocalPart(), "boolean");
// }
// }
//print("doc: "+doc.getText(0, doc.getLength()));
//Local element name change
/*axiModel.startTransaction();
for(Element e:axiModel.getElements()) {
if(e.getName().equals("OTA_TravelItineraryRS")) {
for(AXIComponent e2: e.getCompositor().getChildren()) {
if(e2 instanceof Element) {
if(((Element)e2).getName().equals("Errors"))
((Element)e2).setName(((Element)e2).getName()+"_");
}
}
}
}
axiModel.endTransaction();
boolean found = false;
for(GlobalElement ge:sm.getSchema().getElements()) {
if(ge.getName().startsWith("OTA_TravelItineraryRS")) {
assertEquals("updated schemamodel",
((LocalElement)ge.getChildren().get(0).getChildren().get(0).
getChildren().get(1)).getName(), "Errors_");
found = true;
}
}
assertTrue("Should have verified updated element", found);*/
//check an attribute change is flushed to schema
axiModel.startTransaction();
for(Element e:axiModel.getRoot().getElements()) {
if(e.getName().equals(GLOBAL_ELEMENT)) {
for(AXIComponent e2: e.getCompositor().getChildren()) {
if(e2 instanceof Element) {
if(((Element)e2).getName().equals("Errors")) {
AbstractAttribute attr = ((Element)((Element)e2).getChildren().get(0).getChildren().get(0)).getAttributes().get(0);
if(attr instanceof Attribute) {
((Attribute)attr).setName("XYZ");
}
}
}
}
}
}
startTime = System.currentTimeMillis();
axiModel.endTransaction();
endTime = System.currentTimeMillis();
print("Time taken to flush: "+(endTime-startTime)+" ms");
boolean found = false;
for(GlobalElement ge:sm.getSchema().getElements()) {
if(ge.getName().startsWith(GLOBAL_ELEMENT)) {
LocalComplexType lct = (LocalComplexType) ge.getChildren().get(1);
Choice choice = (Choice) lct.getChildren().get(0);
LocalElement le = (LocalElement) choice.getChildren().get(1);
GlobalComplexType gct = (GlobalComplexType) le.getType().get();
le = (LocalElement) gct.getChildren().get(1).getChildren().get(0);
gct = (GlobalComplexType) le.getType().get();
SimpleExtension se = (SimpleExtension) gct.getChildren().get(1).getChildren().get(0);
gct = (GlobalComplexType)se.getBase().get();
AttributeGroupReference agr = (AttributeGroupReference)gct.getChildren().get(1).getChildren().get(0).getChildren().get(0);
GlobalAttributeGroup gag = agr.getGroup().get();
LocalAttribute la = (LocalAttribute)gag.getChildren().get(1);
assertEquals("updated schemamodel", "XYZ", la.getName());
found = true;
}
}
assertTrue("Should have verified updated element", found);
validateSchema(axiModel.getSchemaModel());
}
public void testGenerateSchema2() {
assertEquals("global elements",SchemaGeneratorTest.GE_SIZE,getSchemaModel().getSchema().getElements().size());
Element element = axiModel.getComponentFactory().createElement();
element.setName("NewElement"+axiModel.getRoot().getElements().size());
axiModel.startTransaction();
try {
axiModel.getRoot().addElement(element);
} finally {
axiModel.endTransaction();
}
assertEquals("global elements",SchemaGeneratorTest.GE_SIZE+1,getSchemaModel().getSchema().getElements().size());
// try {
// SchemaModel sm = getSchemaModel();
// doc = ((AbstractDocumentModel)sm).getBaseDocument();
// print("doc: "+doc.getText(0, doc.getLength()));
// } catch (BadLocationException ex) {
// ex.printStackTrace();
// }
axiModel.startTransaction();
try {
axiModel.getRoot().removeElement(element);
} finally {
axiModel.endTransaction();
}
assertEquals("global elements",SchemaGeneratorTest.GE_SIZE,getSchemaModel().getSchema().getElements().size());
validateSchema(axiModel.getSchemaModel());
// try {
// SchemaModel sm = getSchemaModel();
// doc = ((AbstractDocumentModel)sm).getBaseDocument();
// print("doc: "+doc.getText(0, doc.getLength()));
// } catch (BadLocationException ex) {
// ex.printStackTrace();
// }
}
}