All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.predic8.membrane.test.WSDLUtil Maven / Gradle / Ivy

/* Copyright 2012 predic8 GmbH, www.predic8.com

   Licensed 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 com.predic8.membrane.test;

import java.io.IOException;
import java.io.StringReader;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;

import javax.xml.namespace.QName;
import javax.xml.stream.XMLEventReader;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.events.Attribute;
import javax.xml.stream.events.XMLEvent;

import org.apache.http.ParseException;

public class WSDLUtil {
	private static final XMLInputFactory xmlInputFactory = XMLInputFactory.newInstance();
	static {
		xmlInputFactory.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, false);
		xmlInputFactory.setProperty(XMLInputFactory.IS_SUPPORTING_EXTERNAL_ENTITIES, false);
	}

	public static List getXSDs(String wsdl) throws XMLStreamException {
		List result = new ArrayList<>();

		XMLEventReader parser;
		synchronized(xmlInputFactory) {
			parser = xmlInputFactory.createXMLEventReader(new StringReader(wsdl));
		}

		while (parser.hasNext()) {
			XMLEvent event = parser.nextEvent();
			if (event.isStartElement()) {
				String name = event.asStartElement().getName().getLocalPart();
				if (name.equals("import") || name.equals("include")) {
					Attribute a = event.asStartElement().getAttributeByName(new QName("schemaLocation"));
					if (a != null)
						result.add(a.getValue());
				}
			}
		}

		return result;
	}

	public static int countWSDLandXSDs(String url) throws ParseException, XMLStreamException, IOException {
		int sum = 1;
		List xsds = WSDLUtil.getXSDs(AssertUtils.getAndAssert200(url));
		for (String xsd : xsds)
			sum += countWSDLandXSDs(new URL(new URL(url), xsd).toString());
		return sum;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy