Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.wsdl.tests/src/org/eclipse/wst/wsdl/tests/InlineSchemaTest.java')
-rw-r--r--tests/org.eclipse.wst.wsdl.tests/src/org/eclipse/wst/wsdl/tests/InlineSchemaTest.java226
1 files changed, 0 insertions, 226 deletions
diff --git a/tests/org.eclipse.wst.wsdl.tests/src/org/eclipse/wst/wsdl/tests/InlineSchemaTest.java b/tests/org.eclipse.wst.wsdl.tests/src/org/eclipse/wst/wsdl/tests/InlineSchemaTest.java
deleted file mode 100644
index 587facfac..000000000
--- a/tests/org.eclipse.wst.wsdl.tests/src/org/eclipse/wst/wsdl/tests/InlineSchemaTest.java
+++ /dev/null
@@ -1,226 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2001, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.wst.wsdl.tests;
-
-import java.io.FileInputStream;
-import java.io.IOException;
-import java.net.URL;
-import java.util.Iterator;
-
-import javax.wsdl.xml.WSDLReader;
-
-import junit.framework.Assert;
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-import org.eclipse.core.runtime.IPluginDescriptor;
-import org.eclipse.core.runtime.Platform;
-import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.wst.wsdl.Definition;
-import org.eclipse.wst.wsdl.Import;
-import org.eclipse.wst.wsdl.Types;
-import org.eclipse.wst.wsdl.WSDLPackage;
-import org.eclipse.wst.wsdl.internal.impl.wsdl4j.WSDLFactoryImpl;
-import org.eclipse.wst.wsdl.internal.util.WSDLResourceFactoryImpl;
-import org.eclipse.wst.wsdl.tests.util.DefinitionLoader;
-import org.eclipse.xsd.XSDElementDeclaration;
-import org.eclipse.xsd.XSDModelGroup;
-import org.eclipse.xsd.XSDPackage;
-import org.eclipse.xsd.XSDParticle;
-import org.eclipse.xsd.XSDParticleContent;
-import org.eclipse.xsd.XSDSchema;
-import org.eclipse.xsd.XSDSimpleTypeDefinition;
-import org.eclipse.xsd.XSDTypeDefinition;
-import org.eclipse.xsd.util.XSDResourceFactoryImpl;
-import org.xml.sax.InputSource;
-
-/**
- * @author Kihup Boo
- */
-public class InlineSchemaTest extends TestCase
-{
- private String PLUGIN_ABSOLUTE_PATH = WSDLTestsPlugin.getInstallURL();
-
- public InlineSchemaTest(String name)
- {
- super(name);
- }
-
- public static void main(String[] args)
- {
- //junit.textui.TestRunner.run(InlineSchemaTest.class);
- junit.textui.TestRunner.run(suite());
- }
-
- public static Test suite()
- {
- TestSuite suite = new TestSuite();
-
- suite.addTest
- (new InlineSchemaTest("InlineSchema")
- {
- protected void runTest()
- {
- testInlineSchema();
- }
- }
- );
-
- suite.addTest
- (new InlineSchemaTest("InlineSchemaWithWSDL4J")
- {
- protected void runTest()
- {
- testInlineSchemaWithWSDL4J();
- }
- }
- );
-
- return suite;
- }
-
- protected void setUp() throws Exception
- {
- super.setUp();
-
- Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap().put("wsdl", new WSDLResourceFactoryImpl());
- WSDLPackage pkg = WSDLPackage.eINSTANCE;
-
- // We need this for XSD <import>.
- Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap().put("xsd", new XSDResourceFactoryImpl());
- XSDPackage xsdpkg = XSDPackage.eINSTANCE;
- }
-
- protected void tearDown() throws Exception
- {
- super.tearDown();
- }
-
- public void testInlineSchema()
- {
- try
- {
- Definition definition = DefinitionLoader.load(PLUGIN_ABSOLUTE_PATH +"samples/LoadAndPrintTest.wsdl");
- traverseDefinition(definition);
- }
- catch (Exception e)
- {
- Assert.fail("Test failed due to an exception: " + e.getLocalizedMessage());
- }
- }
-
- public void testInlineSchemaWithWSDL4J()
- {
- try
- {
- Definition definition = loadDefinitionForWSDL4J("./samples/LoadAndPrintTest.wsdl");
- traverseDefinition(definition);
- }
- catch (Exception e)
- {
- Assert.fail("Test failed due to an exception: " + e.getLocalizedMessage());
- }
- }
-
- public void traverseDefinition(Definition definition) throws Exception
- {
- Assert.assertNotNull(definition);
-
- Iterator iter = definition.getEImports().iterator();
- while (iter.hasNext())
- {
- Import myImport = (Import)iter.next();
- //traverseImport(myImport);
- }
-
- // Get Inline Schema
- Types types = (org.eclipse.wst.wsdl.Types)definition.getTypes();
- Assert.assertNotNull("<types> is null",types);
- if (types != null)
- {
- Iterator iterator = types.getSchemas().iterator();
- Assert.assertTrue("<types> does not have inline <schema>s",iterator.hasNext());
- while (iterator.hasNext())
- {
- XSDSchema schema = (XSDSchema)iterator.next();
- traverseSchema(schema);
- }
- }
- }
-
- private void traverseImport(Import myImport) throws Exception
- {
- Definition def = myImport.getEDefinition();
- traverseDefinition(def);
- }
-
- private void traverseSchema(XSDSchema schema)
- {
- Iterator iterator = schema.getElementDeclarations().iterator();
- XSDElementDeclaration elementDecl = null;
- Assert.assertTrue("No <element>s are found",iterator.hasNext());
- while (iterator.hasNext())
- {
- elementDecl = (XSDElementDeclaration)iterator.next();
-
- if (elementDecl.getName().equals("NewOperationResponse"))
- traverseElementDecl(elementDecl);
- else if (elementDecl.getName().equals("NewOperationRequest"))
- traverseElementDecl(elementDecl);
- }
- }
-
- private void traverseElementDecl(XSDElementDeclaration elementDecl)
- {
- XSDTypeDefinition type = elementDecl.getTypeDefinition();
- Assert.assertTrue("<element> does not have <simpleType>",type instanceof XSDSimpleTypeDefinition);
- if (type.getComplexType() == null) // simple type
- return; // TBD - Currently this always returns at this point.
- XSDParticleContent content = type.getComplexType().getContent();
- traverseModelGroup((XSDModelGroup)content);
- }
-
- private void traverseModelGroup(XSDModelGroup modelGroup)
- {
- Iterator iterator = modelGroup.getContents().iterator();
- XSDParticleContent particleContent = null;
- while (iterator.hasNext())
- {
- particleContent = ((XSDParticle)iterator.next()).getContent();
- if (particleContent instanceof XSDElementDeclaration)
- {
- if (((XSDElementDeclaration)particleContent).isElementDeclarationReference())
- traverseElementDecl(((XSDElementDeclaration)particleContent).getResolvedElementDeclaration());
- else
- traverseElementDecl((XSDElementDeclaration)particleContent);
- }
- }
- }
-
- private Definition loadDefinition(String wsdlFile) throws IOException
- {
- return DefinitionLoader.load(wsdlFile);
- }
-
- private Definition loadDefinitionForWSDL4J(String wsdlFile) throws Exception
- {
- WSDLReader reader = (new WSDLFactoryImpl()).newWSDLReader();
- IPluginDescriptor pd = Platform.getPluginRegistry().getPluginDescriptor("org.eclipse.wst.wsdl.tests");
- URL url = pd.getInstallURL();
- url = new URL(url,wsdlFile);
- String s = Platform.resolve(url).getFile();
- Definition definition = (org.eclipse.wst.wsdl.Definition)reader.readWSDL(s,new InputSource(new FileInputStream(s)));
- return definition;
- }
-
-}

Back to the top