You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/05/04 06:56:59 UTC

svn commit: r399549 - in /webservices/axis/trunk/c/tests/auto_build/testcases: client/c/XSD_NameClient.c tests/XSD_NameC.xml

Author: nadiramra
Date: Wed May  3 21:56:59 2006
New Revision: 399549

URL: http://svn.apache.org/viewcvs?rev=399549&view=rev
Log:
C support fixes/enhancements. Testcases for C bindings.

Added:
    webservices/axis/trunk/c/tests/auto_build/testcases/client/c/XSD_NameClient.c
    webservices/axis/trunk/c/tests/auto_build/testcases/tests/XSD_NameC.xml

Added: webservices/axis/trunk/c/tests/auto_build/testcases/client/c/XSD_NameClient.c
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/c/XSD_NameClient.c?rev=399549&view=auto
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/c/XSD_NameClient.c (added)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/c/XSD_NameClient.c Wed May  3 21:56:59 2006
@@ -0,0 +1,315 @@
+// Copyright 2003-2004 The Apache Software Foundation.
+// (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved
+// 
+// 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.
+
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "CommonClientTestCode.h"
+#include "XSD_Name.h"
+
+int main(int argc, char* argv[])
+{
+    AXISCHANDLE ws;
+        
+    xsdc__Name input;
+    xsdc__Name result;
+
+    RequiredAttributeElement requiredAttributeInput;
+    RequiredAttributeElement* requiredAttributeResult;   
+    
+    char emptyName[1] = "";
+    char simpleName[25] = "xml.si-mple_nam:e";    
+    
+    char endpoint[256];
+    const char* url="http://localhost:80/axis/XSD_Name";
+
+    if(argc>1)
+        url = argv[1];
+
+    axiscAxisRegisterExceptionHandler(exceptionHandler);
+
+    sprintf(endpoint, "%s", url);
+    ws = get_XSD_Name_stub(endpoint);
+    if (!ws)
+    {
+        printf("FAILED to get WS\n");
+        return -1;
+    }
+  
+    // Test non-nillable element
+    result = asNonNillableElement(ws, simpleName);
+    if (exceptionOccurred == C_TRUE
+        || get_XSD_Name_Status(ws) == AXISC_FAIL )
+        printf ("Failed\n");
+                
+    if (result)
+    {
+        if (*result)
+            printf("non-nillable element=%s\n", result);
+        else
+            printf("non-nillable element=<empty>\n");
+            
+        axiscAxisDelete(result, XSDC_NAME);
+    }
+    else
+        printf("non-nillable element=<nil>\n");
+
+
+    // Test empty non-nillable element
+    input = (xsdc__NCName)axiscAxisNew(XSDC_NAME, 1);
+    strcpy (input, emptyName);
+    
+    result = asNonNillableElement(ws, input);
+    if (exceptionOccurred == C_TRUE
+        || get_XSD_Name_Status(ws) == AXISC_FAIL )
+        printf ("Failed\n");
+
+    if (result)
+    {
+        if (*result)
+            printf("empty non-nillable element=%s\n", result);
+        else
+            printf("empty non-nillable element=<empty>\n");
+            
+        axiscAxisDelete(result, XSDC_NAME);
+    }
+    else
+        printf("empty non-nillable element=<nil>\n");
+
+    axiscAxisDelete(input, XSDC_NAME);
+
+    // Test nillable element, with a value
+    result = asNillableElement(ws, simpleName);
+    if (exceptionOccurred == C_TRUE
+        || get_XSD_Name_Status(ws) == AXISC_FAIL )
+        printf ("Failed\n");
+
+    if (result)
+    {
+        if (*result)
+            printf("nillable element=%s\n", result);
+        else
+            printf("nillable element=<empty>\n");
+            
+        axiscAxisDelete(result, XSDC_NAME);
+    }
+    else
+        printf("nillable element=<nil>\n");
+
+    // Test empty nillable element
+    result = asNillableElement(ws, emptyName);
+    if (exceptionOccurred == C_TRUE
+        || get_XSD_Name_Status(ws) == AXISC_FAIL )
+        printf ("Failed\n");
+
+    if (result)
+    {
+        if (*result)
+            printf("empty nillable element=%s\n", result);
+        else
+            printf("empty nillable element=<empty>\n");
+
+        axiscAxisDelete(result, XSDC_NAME);
+    }
+    else
+        printf("empty nillable element=<nil>\n");
+
+    // Test nillable element, with nil
+    result = asNillableElement(ws, NULL);
+    if (exceptionOccurred == C_TRUE
+        || get_XSD_Name_Status(ws) == AXISC_FAIL )
+        printf ("Failed\n");
+
+    if (result)
+    {
+        if (*result)
+            printf("nil element=%s\n", result);
+        else
+            printf("nil element=<empty>\n");
+            
+        axiscAxisDelete(result, XSDC_NAME);
+    }
+    else
+        printf("nil element=<nil>\n");
+
+    // Test required attribute
+    requiredAttributeInput.requiredAttribute = simpleName;
+    requiredAttributeResult = asRequiredAttribute(ws, &requiredAttributeInput);
+    if (exceptionOccurred == C_TRUE
+        || get_XSD_Name_Status(ws) == AXISC_FAIL )
+        printf ("Failed\n");
+    
+    if (requiredAttributeResult->requiredAttribute)
+    {
+        if (*(requiredAttributeResult->requiredAttribute))
+            printf("required attribute=%s\n", requiredAttributeResult->requiredAttribute);
+        else
+            printf("required attribute=<empty>\n");
+    }
+    else
+        printf("required attribute=<nil>\n");
+        
+    Axis_Delete_RequiredAttributeElement(requiredAttributeResult, 0);            
+
+    // Test empty required attribute
+    requiredAttributeInput.requiredAttribute = emptyName;
+    requiredAttributeResult = asRequiredAttribute(ws, &requiredAttributeInput);
+    if (exceptionOccurred == C_TRUE
+        || get_XSD_Name_Status(ws) == AXISC_FAIL )
+        printf ("Failed\n");
+    
+    if (requiredAttributeResult->requiredAttribute)
+    {
+        if (*(requiredAttributeResult->requiredAttribute))
+            printf("empty required attribute=%s\n", requiredAttributeResult->requiredAttribute);
+        else
+            printf("empty required attribute=<empty>\n");
+    }
+    else
+        printf("empty required attribute=<nil>\n");
+
+    Axis_Delete_RequiredAttributeElement(requiredAttributeResult, 0);
+
+/*  Optional Attributes currently unsupported by WSDL2Ws
+ * Exact coding of this section may change depending on chosen implementation
+        // Test optional attribute, with a value
+        OptionalAttributeElement optionalAttributeInput;
+        optionalAttributeInput.optionalAttribute = simpleName;
+        OptionalAttributeElement* optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
+        if (optionalAttributeResult->getoptionalAttribute())
+        {
+            if (*(optionalAttributeResult->getoptionalAttribute()))
+                printf("optional attribute, with data=" , optionalAttributeResult->getoptionalAttribute());
+            else
+                printf("optional attribute, with data=<empty>");
+        }
+        else
+            printf("optional attribute, with data=<not present>");
+
+        delete [] input;
+        delete optionalAttributeResult;
+
+        // Test empty optional attribute
+        input = new char[1];
+        strcpy (input, emptyName);
+        optionalAttributeInput.setoptionalAttribute(input);
+        optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
+        if (optionalAttributeResult->getoptionalAttribute())
+        {
+            if (*(optionalAttributeResult->getoptionalAttribute()))
+                printf("empty optional attribute=" , optionalAttributeResult->getoptionalAttribute());
+            else
+                printf("empty optional attribute=<empty>");
+        }
+        else
+            printf("empty optional attribute=<not present>");
+
+        delete [] input;
+        delete optionalAttributeResult;
+
+        // Test optional attribute, not present
+        // optionalAttributeInput.setattribute();
+        optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
+        if (optionalAttributeResult->getoptionalAttribute())
+        {
+            if (*(optionalAttributeResult->getoptionalAttribute()))
+                printf("optional attribute, not present=" , optionalAttributeResult->getoptionalAttribute());
+            else
+                printf("optional attribute, not present=<empty>");
+        }
+        else
+            printf("optional attribute, not present=<not present>");
+        delete optionalAttributeResult;
+*/
+
+    // Test array
+    {
+#define ARRAY_SIZE 2                    
+        int i;
+        xsdc__Name_Array arrayInput;
+        xsdc__Name_Array* arrayResult;
+        xsdc__Name array[ARRAY_SIZE]; 
+        const xsdc__Name* output;
+        int outputSize=0;
+               
+        for (i=0 ; i < ARRAY_SIZE; i++)
+            array[i]= simpleName;
+
+        arrayInput.m_Array = array;
+        arrayInput.m_Size  = ARRAY_SIZE;
+        arrayInput.m_Type  = XSDC_NAME;
+    
+        arrayResult = asArray(ws, &arrayInput);
+        
+        if (exceptionOccurred == C_TRUE
+            || get_XSD_Name_Status(ws) == AXISC_FAIL )
+            printf ("Failed\n");
+
+        if (arrayResult)
+        {
+           output     = arrayResult->m_Array;
+           outputSize = arrayResult->m_Size;
+        }
+        
+        printf("array of %d elements\n", outputSize);
+        for (i = 0; i < outputSize ; i++)
+        {
+            if (output!=NULL)
+            {
+                if (output[i]!=NULL)
+                    printf("  element[%d]=%s\n", i, output[i]);
+                else
+                    printf("  element[%d]=<empty>\n", i);
+             }
+            else
+                printf("  element[%d]=<nil>\n", i);
+        }
+
+        axiscAxisDelete(arrayResult, XSDC_ARRAY);    
+    }
+
+
+    // Test complex type
+    {
+        SimpleComplexType complexTypeInput;
+        SimpleComplexType* complexTypeResult;
+        
+        complexTypeInput.complexTypeElement = simpleName;
+        complexTypeResult = asComplexType(ws, &complexTypeInput);
+        
+        if (exceptionOccurred == C_TRUE
+            || get_XSD_Name_Status(ws) == AXISC_FAIL )
+            printf ("Failed\n");
+        
+        if (complexTypeResult->complexTypeElement)
+        {
+            if (*(complexTypeResult->complexTypeElement))
+                printf("within complex type=%s\n", complexTypeResult->complexTypeElement);
+            else
+                printf("within complex type=<empty>\n");
+        }
+        else
+            printf("within complex type=<nil>\n");
+
+        Axis_Delete_SimpleComplexType(complexTypeResult, 0);    
+    }  
+
+    // Tests now complete
+    destroy_XSD_Name_stub(ws);
+
+    printf("---------------------- TEST COMPLETE -----------------------------\n");
+   
+    return 0;
+}

Added: webservices/axis/trunk/c/tests/auto_build/testcases/tests/XSD_NameC.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/tests/XSD_NameC.xml?rev=399549&view=auto
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/tests/XSD_NameC.xml (added)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/tests/XSD_NameC.xml Wed May  3 21:56:59 2006
@@ -0,0 +1,17 @@
+<test>
+    <name>XSD_NameC</name>
+    <description>Test serialization and deserialization of the XSD built-in simple type Name</description>
+    <clientLang>c</clientLang>
+    <clientCode>XSD_NameClient.c</clientCode>
+    <wsdl>XSD_Name.wsdl</wsdl>
+    <expected>
+        <output>
+            XSD_Name.expected
+        </output>
+		<serverResponse>
+			XSD_Name_ServerResponse.expected
+	    </serverResponse>
+    </expected>
+	<endpoint>http://localhost:80/axis/XSD_Name</endpoint>
+</test>
+