Search in sources :

Example 11 with WSDLToIDLAction

use of org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction in project cxf by apache.

the class WSDLToCorbaBindingTest method testAllType.

@Test
public void testAllType() throws Exception {
    try {
        String fileName = getClass().getResource("/wsdl/alltype.wsdl").toString();
        generator.setWsdlFile(fileName);
        generator.addInterfaceName("BasePortType");
        Definition model = generator.generateCORBABinding();
        Document document = writer.getDocument(model);
        Element typemap = getElementNode(document, "corba:typeMapping");
        // assertNotNull(typemap);
        assertEquals(1, typemap.getElementsByTagName("corba:struct").getLength());
        WSDLToIDLAction idlgen = new WSDLToIDLAction();
        idlgen.setBindingName("BaseCORBABinding");
        idlgen.setOutputFile("alltype.idl");
        idlgen.generateIDL(model);
        File f = new File("alltype.idl");
        assertTrue("alltype.idl should be generated", f.exists());
    } finally {
        new File("alltype.idl").deleteOnExit();
    }
}
Also used : WSDLToIDLAction(org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction) ExtensibilityElement(javax.wsdl.extensions.ExtensibilityElement) Element(org.w3c.dom.Element) Definition(javax.wsdl.Definition) Document(org.w3c.dom.Document) File(java.io.File) Test(org.junit.Test)

Example 12 with WSDLToIDLAction

use of org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction in project cxf by apache.

the class WSDLToCorbaBindingTest method testSimpleListIdl.

@Test
public void testSimpleListIdl() throws Exception {
    try {
        String fileName = getClass().getResource("/wsdl/simpleList.wsdl").toString();
        generator.setWsdlFile(fileName);
        generator.addInterfaceName("BasePortType");
        generator.mapBindingToInterface("BasePortType", "SimpleListCORBABinding");
        Definition model = generator.generateCORBABinding();
        WSDLToIDLAction idlgen = new WSDLToIDLAction();
        idlgen.setBindingName("SimpleListCORBABinding");
        idlgen.setOutputFile("simplelist.idl");
        idlgen.generateIDL(model);
        File f = new File("simplelist.idl");
        assertTrue("simplelist.idl should be generated", f.exists());
    } finally {
        new File("simplelist.idl").deleteOnExit();
    }
}
Also used : WSDLToIDLAction(org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction) Definition(javax.wsdl.Definition) File(java.io.File) Test(org.junit.Test)

Example 13 with WSDLToIDLAction

use of org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction in project cxf by apache.

the class WSDLToCorbaBindingTypeTest method testAnyType.

@Test
public void testAnyType() throws Exception {
    try {
        String fileName = getClass().getResource("/wsdl/any.wsdl").toString();
        generator.setWsdlFile(fileName);
        generator.addInterfaceName("anyInterface");
        Definition model = generator.generateCORBABinding();
        TypeMappingType mapType = (TypeMappingType) model.getExtensibilityElements().get(0);
        assertEquals(5, mapType.getStructOrExceptionOrUnion().size());
        int strcnt = 0;
        int unioncnt = 0;
        for (CorbaType corbaType : mapType.getStructOrExceptionOrUnion()) {
            if (corbaType instanceof Struct) {
                strcnt++;
            }
            if (corbaType instanceof Union) {
                unioncnt++;
            }
        }
        assertNotNull(mapType);
        assertEquals(3, strcnt);
        assertEquals(2, unioncnt);
        WSDLToIDLAction idlgen = new WSDLToIDLAction();
        idlgen.setBindingName("anyInterfaceCORBABinding");
        idlgen.setOutputFile("any.idl");
        idlgen.generateIDL(model);
        File f = new File("any.idl");
        assertTrue("any.idl should be generated", f.exists());
    } finally {
        new File("any.idl").deleteOnExit();
    }
}
Also used : WSDLToIDLAction(org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction) CorbaType(org.apache.cxf.binding.corba.wsdl.CorbaType) Definition(javax.wsdl.Definition) TypeMappingType(org.apache.cxf.binding.corba.wsdl.TypeMappingType) File(java.io.File) Union(org.apache.cxf.binding.corba.wsdl.Union) Struct(org.apache.cxf.binding.corba.wsdl.Struct) Test(org.junit.Test)

Example 14 with WSDLToIDLAction

use of org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction in project cxf by apache.

the class WSDLToCorbaBindingTypeTest method testDateTimeTypes.

@Test
public void testDateTimeTypes() throws Exception {
    try {
        String fileName = getClass().getResource("/wsdl/datetime.wsdl").toString();
        generator.setWsdlFile(fileName);
        generator.addInterfaceName("BasePortType");
        Definition model = generator.generateCORBABinding();
        Document document = writer.getDocument(model);
        Element typemap = getElementNode(document, "corba:typeMapping");
        assertNotNull(typemap);
        assertEquals(2, typemap.getElementsByTagName("corba:union").getLength());
        assertEquals(2, typemap.getElementsByTagName("corba:struct").getLength());
        WSDLToIDLAction idlgen = new WSDLToIDLAction();
        idlgen.setBindingName("BaseCORBABinding");
        idlgen.setOutputFile("datetime.idl");
        idlgen.generateIDL(model);
        File f = new File("datetime.idl");
        assertTrue("datetime.idl should be generated", f.exists());
    } finally {
        new File("datetime.idl").deleteOnExit();
    }
}
Also used : WSDLToIDLAction(org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction) Element(org.w3c.dom.Element) Definition(javax.wsdl.Definition) Document(org.w3c.dom.Document) File(java.io.File) Test(org.junit.Test)

Example 15 with WSDLToIDLAction

use of org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction in project cxf by apache.

the class WSDLToCorbaBindingTypeTest method testAnonFixedType.

// tests anonymous strings and fixed types.
@Test
public void testAnonFixedType() throws Exception {
    try {
        String fileName = getClass().getResource("/wsdl/anonfixed.wsdl").toString();
        generator.setWsdlFile(fileName);
        generator.addInterfaceName("X");
        Definition model = generator.generateCORBABinding();
        Document document = writer.getDocument(model);
        Element typemap = getElementNode(document, "corba:typeMapping");
        assertNotNull(typemap);
        assertEquals(1, typemap.getElementsByTagName("corba:anonfixed").getLength());
        assertEquals(1, typemap.getElementsByTagName("corba:anonstring").getLength());
        assertEquals(3, typemap.getElementsByTagName("corba:struct").getLength());
        TypeMappingType mapType = (TypeMappingType) model.getExtensibilityElements().get(0);
        WSDLToIDLAction idlgen = new WSDLToIDLAction();
        idlgen.setBindingName("XCORBABinding");
        idlgen.setOutputFile("atype.idl");
        idlgen.generateIDL(model);
        List<CorbaType> types = mapType.getStructOrExceptionOrUnion();
        for (int i = 0; i < types.size(); i++) {
            CorbaType type = types.get(i);
            if (type instanceof Anonstring) {
                Anonstring str = (Anonstring) type;
                assertEquals("Name is incorrect for Array Type", "X._1_S", str.getName());
                assertEquals("Type is incorrect for AnonString Type", "string", str.getType().getLocalPart());
            } else if (type instanceof Anonfixed) {
                Anonfixed fx = (Anonfixed) type;
                assertEquals("Name is incorrect for Anon Array Type", "X._2_S", fx.getName());
                assertEquals("Type is incorrect for AnonFixed Type", "decimal", fx.getType().getLocalPart());
            } else if (type instanceof Struct) {
                Struct struct = (Struct) type;
                String[] testResult;
                if ("X.op_a".equals(struct.getName())) {
                    testResult = new String[] { "X.op_a", "X.op_a", "p1", "X.S", "p2", "X.S" };
                } else if ("X.op_aResult".equals(struct.getName())) {
                    testResult = new String[] { "X.op_aResult", "X.op_aResult", "return", "X.S", "p2", "X.S" };
                } else {
                    testResult = new String[] { "X.S", "X.S", "str", "X._1_S", "fx", "X._2_S" };
                }
                assertEquals("Name is incorrect for Anon Array Type", testResult[0], struct.getName());
                assertEquals("Type is incorrect for Struct Type", testResult[1], struct.getType().getLocalPart());
                assertEquals("Name for first Struct Member Type is incorrect", testResult[2], struct.getMember().get(0).getName());
                assertEquals("Idltype for first Struct Member Type is incorrect", testResult[3], struct.getMember().get(0).getIdltype().getLocalPart());
                assertEquals("Name for second Struct Member Type is incorrect", testResult[4], struct.getMember().get(1).getName());
                assertEquals("Idltype for second Struct Member Type is incorrect", testResult[5], struct.getMember().get(1).getIdltype().getLocalPart());
            } else {
            // System.err.println("Type: " + i + " " + type.getClass().getName());
            }
        }
        File f = new File("atype.idl");
        assertTrue("atype.idl should be generated", f.exists());
    } finally {
        new File("atype.idl").deleteOnExit();
    }
}
Also used : WSDLToIDLAction(org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction) Element(org.w3c.dom.Element) Definition(javax.wsdl.Definition) TypeMappingType(org.apache.cxf.binding.corba.wsdl.TypeMappingType) Document(org.w3c.dom.Document) Anonstring(org.apache.cxf.binding.corba.wsdl.Anonstring) Struct(org.apache.cxf.binding.corba.wsdl.Struct) Anonfixed(org.apache.cxf.binding.corba.wsdl.Anonfixed) CorbaType(org.apache.cxf.binding.corba.wsdl.CorbaType) File(java.io.File) Test(org.junit.Test)

Aggregations

WSDLToIDLAction (org.apache.cxf.tools.corba.processors.wsdl.WSDLToIDLAction)22 File (java.io.File)21 Definition (javax.wsdl.Definition)21 Test (org.junit.Test)21 Document (org.w3c.dom.Document)16 Element (org.w3c.dom.Element)16 ExtensibilityElement (javax.wsdl.extensions.ExtensibilityElement)6 TypeMappingType (org.apache.cxf.binding.corba.wsdl.TypeMappingType)6 CorbaType (org.apache.cxf.binding.corba.wsdl.CorbaType)4 Struct (org.apache.cxf.binding.corba.wsdl.Struct)3 Union (org.apache.cxf.binding.corba.wsdl.Union)3 Binding (javax.wsdl.Binding)2 BindingOperation (javax.wsdl.BindingOperation)2 QName (javax.xml.namespace.QName)2 Anonstring (org.apache.cxf.binding.corba.wsdl.Anonstring)2 BindingType (org.apache.cxf.binding.corba.wsdl.BindingType)2 OperationType (org.apache.cxf.binding.corba.wsdl.OperationType)2 ParamType (org.apache.cxf.binding.corba.wsdl.ParamType)2 WSDLToCorbaBinding (org.apache.cxf.tools.corba.processors.wsdl.WSDLToCorbaBinding)2 ByteArrayOutputStream (java.io.ByteArrayOutputStream)1