blob: 072602657fe3dc3f3dc274b244adcab48752cb79 [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.apache.axis2.wsdl.codegen;
import org.apache.axis2.util.XMLPrettyPrinter;
import org.apache.ws.commons.schema.XmlSchema;
import org.apache.ws.commons.schema.XmlSchemaCollection;
import org.custommonkey.xmlunit.Diff;
import javax.xml.transform.stream.StreamSource;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
public abstract class XMLSchemaTest {
public final String XMLSchemaNameSpace = "xmlns:xs=\"http://www.w3.org/2001/XMLSchema\"";
public final String CustomSchemaLocation = "test-resources"
+ File.separator + "schemas" + File.separator + "custom_schemas"
+ File.separator + "note.xsd";
public final String customDirectoryLocation = "test-resources"
+ File.separator + "schemas" + File.separator + "custom_schemas"
+ File.separator;
public final String SampleSchemasDirectory = "test-resources"
+ File.separator + "schemas" + File.separator + "custom_schemas"
+ File.separator;
public final String MappingFileLocation = "test-resources" + File.separator
+ "schemas" + File.separator + "mapping_files" + File.separator
+ "mapping1.txt";
public void assertSimilarXML(String XML1, String XML2) throws Exception {
Diff myDiff = new Diff(XML1, XML2);
assertTrue(myDiff.similar(), () -> "XML similar " + myDiff.toString());
}
public void assertIdenticalXML(String XML1, String XML2) throws Exception {
Diff myDiff = new Diff(XML1, XML2);
assertTrue(myDiff.identical(), () -> "XML similar " + myDiff.toString());
}
public void loadSampleSchemaFile(ArrayList<XmlSchema> schemas) throws Exception{
XmlSchemaCollection xmlSchemaCollection = new XmlSchemaCollection();
File file = null;
int i = 1;
file = new File(SampleSchemasDirectory + "sampleSchema" + i
+ ".xsd");
while (file.exists()) {
InputStream is = new FileInputStream(file);
XmlSchemaCollection schemaCol = new XmlSchemaCollection();
XmlSchema schema = schemaCol.read(new StreamSource(is));
schemas.add(schema);
i++;
file = new File(SampleSchemasDirectory + "sampleSchema" + i
+ ".xsd");
}
}
public XmlSchema loadSingleSchemaFile(int i) throws Exception{
File file = new File(SampleSchemasDirectory + "sampleSchema" + i
+ ".xsd");
InputStream is = new FileInputStream(file);
XmlSchemaCollection schemaCol = new XmlSchemaCollection();
XmlSchema schema = schemaCol.read(new StreamSource(is));
return schema;
}
public String readFile(String fileName) throws Exception {
File file = new File(fileName);
char[] buffer = null;
BufferedReader bufferedReader = new BufferedReader(new FileReader(file));
buffer = new char[(int) file.length()];
int i = 0;
int c = bufferedReader.read();
while (c != -1) {
buffer[i++] = (char) c;
c = bufferedReader.read();
}
return new String(buffer);
}
public String readXMLfromSchemaFile(String path) throws Exception {
InputStream is = new FileInputStream(path);
XmlSchemaCollection schemaCol = new XmlSchemaCollection();
XmlSchema schema = schemaCol.read(new StreamSource(is));
ByteArrayOutputStream stream = new ByteArrayOutputStream();
schema.write(stream);
is.close();
return stream.toString();
}
public String readWSDLFromFile(String path) throws Exception {
File file=new File(path);
XMLPrettyPrinter.prettify(file); //this is used to correct unnecessary formatting in the file
return readFile(path);
}
public void writeToFile(String path,String data) throws Exception{
FileWriter fileWriter=new FileWriter(new File(path));
fileWriter.write(data);
fileWriter.flush();
fileWriter.close();
}
public String schemaToString(XmlSchema schema) throws UnsupportedEncodingException {
ByteArrayOutputStream stream=new ByteArrayOutputStream();
schema.write(stream);
return stream.toString();
}
public XmlSchema loadSingleSchemaFile(String path) throws Exception{
File file = new File(path);
InputStream is = new FileInputStream(file);
XmlSchemaCollection schemaCol = new XmlSchemaCollection();
XmlSchema schema = schemaCol.read(new StreamSource(is));
return schema;
}
}