You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2005/08/18 17:19:26 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/output XSD_decimal.expected XSD_decimal_ServerResponse.expected XSD_decimalRequest.out XSD_int_ServerResponse.expected XSD_integer_ServerResponse.expected XSD_long_ServerResponse.expected XSD_short_ServerResponse.expected

dicka       2005/08/18 08:19:26

  Modified:    c/tests/auto_build/testcases/client/cpp
                        XSD_decimalClient.cpp
               c/tests/auto_build/testcases/output XSD_decimal.expected
                        XSD_decimal_ServerResponse.expected
                        XSD_decimalRequest.out
                        XSD_int_ServerResponse.expected
                        XSD_integer_ServerResponse.expected
                        XSD_long_ServerResponse.expected
                        XSD_short_ServerResponse.expected
  Log:
  Correct unit test server responses for some of the XSD testcases.
  
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.2       +1 -1      ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_decimalClient.cpp
  
  Index: XSD_decimalClient.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/client/cpp/XSD_decimalClient.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_decimalClient.cpp	1 Jul 2005 14:24:58 -0000	1.1
  +++ XSD_decimalClient.cpp	18 Aug 2005 15:19:26 -0000	1.2
  @@ -41,7 +41,7 @@
           result = ws->asNonNillableElement((xsd__decimal)123456789.123456);
           printf("non-nillable element=%.6f\n", result);
           fflush(stdout);
  -        result = ws->asNonNillableElement((xsd__decimal)-12345789);
  +        result = ws->asNonNillableElement((xsd__decimal)-123456789);
           printf("non-nillable element=%.6f\n", result);
           fflush(stdout);
           result = ws->asNonNillableElement((xsd__decimal)-123456789.123456);
  
  
  
  1.3       +1 -1      ws-axis/c/tests/auto_build/testcases/output/XSD_decimal.expected
  
  Index: XSD_decimal.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_decimal.expected,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XSD_decimal.expected	27 Jul 2005 12:20:52 -0000	1.2
  +++ XSD_decimal.expected	18 Aug 2005 15:19:26 -0000	1.3
  @@ -1,6 +1,6 @@
   non-nillable element=123456789.000000
   non-nillable element=123456789.123456
  -non-nillable element=-12345789.000000
  +non-nillable element=-123456789.000000
   non-nillable element=-123456789.123456
   non-nillable element=0.000000
   nillable element=123456789.000000
  
  
  
  1.2       +2 -2      ws-axis/c/tests/auto_build/testcases/output/XSD_decimal_ServerResponse.expected
  
  Index: XSD_decimal_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_decimal_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_decimal_ServerResponse.expected	1 Jul 2005 14:24:58 -0000	1.1
  +++ XSD_decimal_ServerResponse.expected	18 Aug 2005 15:19:26 -0000	1.2
  @@ -39,7 +39,7 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_decimal.test.apache.org"><nonNillableElement>0.000000</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
  +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_decimal.test.apache.org"><nonNillableElement>-123456789.123456</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
   0
   
   HTTP/1.1 200 OK
  @@ -50,7 +50,7 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_decimal.test.apache.org"><nonNillableElement>-123456789.123456</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
  +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_decimal.test.apache.org"><nonNillableElement>0.000000</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
   0
   
   HTTP/1.1 200 OK
  
  
  
  1.2       +1 -1      ws-axis/c/tests/auto_build/testcases/output/XSD_decimalRequest.out
  
  Index: XSD_decimalRequest.out
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_decimalRequest.out,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_decimalRequest.out	27 Jul 2005 12:32:46 -0000	1.1
  +++ XSD_decimalRequest.out	18 Aug 2005 15:19:26 -0000	1.2
  @@ -38,7 +38,7 @@
   <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <SOAP-ENV:Body>
   <ns1:AsNonNillableElementRequest xmlns:ns1="http://xsd_decimal.test.apache.org">
  -<nonNillableElement>-12345789.000000</nonNillableElement>
  +<nonNillableElement>-123456789.000000</nonNillableElement>
   </ns1:AsNonNillableElementRequest>
   </SOAP-ENV:Body>
   </SOAP-ENV:Envelope>
  
  
  
  1.2       +1 -1      ws-axis/c/tests/auto_build/testcases/output/XSD_int_ServerResponse.expected
  
  Index: XSD_int_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_int_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_int_ServerResponse.expected	1 Jul 2005 15:20:12 -0000	1.1
  +++ XSD_int_ServerResponse.expected	18 Aug 2005 15:19:26 -0000	1.2
  @@ -17,7 +17,7 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_int.test.apache.org"><nonNillableElement>-1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
  +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_int.test.apache.org"><nonNillableElement>1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
   0
   
   HTTP/1.1 200 OK
  
  
  
  1.2       +1 -1      ws-axis/c/tests/auto_build/testcases/output/XSD_integer_ServerResponse.expected
  
  Index: XSD_integer_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_integer_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_integer_ServerResponse.expected	1 Jul 2005 14:24:58 -0000	1.1
  +++ XSD_integer_ServerResponse.expected	18 Aug 2005 15:19:26 -0000	1.2
  @@ -17,7 +17,7 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_integer.test.apache.org"><nonNillableElement>-1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
  +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_integer.test.apache.org"><nonNillableElement>1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
   0
   
   HTTP/1.1 200 OK
  
  
  
  1.2       +1 -1      ws-axis/c/tests/auto_build/testcases/output/XSD_long_ServerResponse.expected
  
  Index: XSD_long_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_long_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_long_ServerResponse.expected	1 Jul 2005 15:20:12 -0000	1.1
  +++ XSD_long_ServerResponse.expected	18 Aug 2005 15:19:26 -0000	1.2
  @@ -17,7 +17,7 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_long.test.apache.org"><nonNillableElement>-1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
  +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_long.test.apache.org"><nonNillableElement>1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
   0
   
   HTTP/1.1 200 OK
  
  
  
  1.2       +1 -1      ws-axis/c/tests/auto_build/testcases/output/XSD_short_ServerResponse.expected
  
  Index: XSD_short_ServerResponse.expected
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/auto_build/testcases/output/XSD_short_ServerResponse.expected,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSD_short_ServerResponse.expected	1 Jul 2005 15:20:12 -0000	1.1
  +++ XSD_short_ServerResponse.expected	18 Aug 2005 15:19:26 -0000	1.2
  @@ -17,7 +17,7 @@
   
   ###
   <?xml version="1.0" encoding="utf-8"?>
  -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_short.test.apache.org"><nonNillableElement>-1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
  +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header /><soapenv:Body><asNonNillableElementResponse xmlns="http://xsd_short.test.apache.org"><nonNillableElement>1</nonNillableElement></asNonNillableElementResponse></soapenv:Body></soapenv:Envelope>
   0
   
   HTTP/1.1 200 OK