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 du...@apache.org on 2005/08/05 08:11:24 UTC

cvs commit: ws-axis/c/tests/auto_build/testcases/tests SOAPActionTestDoc.xml

dushshantha    2005/08/04 23:11:24

  Added:       c/tests/auto_build/testcases/client/cpp
                        SOAPActionTestDocClient.cpp
               c/tests/auto_build/testcases/output
                        SOAPActionTestDoc.expected
               c/tests/auto_build/testcases/tests SOAPActionTestDoc.xml
  Log:
  Added a test to confirm that setting SOAPAction is nore more required.
  
  Revision  Changes    Path
  1.1                  ws-axis/c/tests/auto_build/testcases/client/cpp/SOAPActionTestDocClient.cpp
  
  Index: SOAPActionTestDocClient.cpp
  ===================================================================
  // 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 "XSD_anyURI.hpp"
  #include <axis/AxisException.hpp>
  #include <ctype.h>
  #include <iostream>
  
  
  int main(int argc, char* argv[])
  {
      char endpoint[256];
      const char* url="http://localhost:80/axis/XSD_anyURI";
  
      if(argc>1)
          url = argv[1];
  
      try
      {
          sprintf(endpoint, "%s", url);
          XSD_anyURI* ws = new XSD_anyURI(endpoint);
        
          char emptyanyURI[1] = "";
          xsd__anyURI emptyInput = new char[1];
          strcpy (emptyInput, emptyanyURI);
          char simpleanyURI[25] = "A simple test message!";
          xsd__anyURI input = new char[25];
          strcpy (input, simpleanyURI);
  		xsd__anyURI result;
          //The client uses the SOAPAction set by generated code		
  		cout << "Using the default SOAPAction set by Generated code..." << endl;
  				
  		result = ws->asNonNillableElement(input);
          if (result)
          {
              if (*result)
              {
                  cout << "non-nillable element=" << result << endl;
              }
              else
              {
                  cout << "non-nillable element=<empty>" << endl;
              }
          }
          else
          {
              cout << "non-nillable element=<nil>" << endl;
          }
          
  			
  		//The client uses an empty SOAPAction
  
  		cout << "Using an empty SOAPAction ..." << endl;
  
  		ws->setTransportProperty("SOAPAction" , "");
          result = ws->asNonNillableElement(input);
          if (result)
          {
              if (*result)
              {
                  cout << "non-nillable element=" << result << endl;
              }
              else
              {
                  cout << "non-nillable element=<empty>" << endl;
              }
          }
          else
          {
              cout << "non-nillable element=<nil>" << endl;
          }
          
  
  		//The client uses aSOAPAction which is invalid
  
  		cout << "Using an empty SOAPAction ..." << endl;
  
  		ws->setTransportProperty("SOAPAction" , "GARBAGE");
          result = ws->asNonNillableElement(input);
          if (result)
          {
              if (*result)
              {
                  cout << "non-nillable element=" << result << endl;
              }
              else
              {
                  cout << "non-nillable element=<empty>" << endl;
              }
          }
          else
          {
              cout << "non-nillable element=<nil>" << endl;
          }
          delete [] input;        
  
  
  
          // Tests now complete
  
          delete ws;
      }
      catch(AxisException& e)
      {
          cout << "Exception : " << e.what() << endl;
      }
      catch(exception& e)
      {
          cout << "Unknown exception has occured: " << e.what() << endl;
      }
      catch(...)
      {
          cout << "Unknown exception has occured" << endl;
      }
  
      cout<< "---------------------- TEST COMPLETE -----------------------------"<< endl;
     
      return 0;
  }
  
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/output/SOAPActionTestDoc.expected
  
  Index: SOAPActionTestDoc.expected
  ===================================================================
  Using the default SOAPAction set by Generated code...
  non-nillable element=A simple test message!
  Using an empty SOAPAction ...
  non-nillable element=A simple test message!
  Using an empty SOAPAction ...
  non-nillable element=A simple test message!
  ---------------------- TEST COMPLETE -----------------------------
  
  
  1.1                  ws-axis/c/tests/auto_build/testcases/tests/SOAPActionTestDoc.xml
  
  Index: SOAPActionTestDoc.xml
  ===================================================================
  <test>
      <name>SOAPActionTestDoc</name>
      <description>Test whether setting SOAPAction is required</description>
      <clientLang>cpp</clientLang>
      <clientCode>SOAPActionTestDocClient.cpp</clientCode>
      <wsdl>XSD_anyURI.wsdl</wsdl>
      <expected>
          <output>
              SOAPActionTestDoc.expected
          </output>
      </expected>
  	<endpoint>http://localhost:80/axis/XSD_anyURI</endpoint>
  </test>