Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SOAVIRT_9.10.5_CTP_3.1.1

...

  1. Create an empty test suite (.tst) file called TestFlowLogic.tst as follows:
    1. Right-click the Examples project node in the Test Case Explorer, then choose Add New> Test (.tst) file.
    2. Under File name, enter TestFlowLogic.
    3. Click Next.
    4. Select Empty, then click Finish.
  2. Open the test suite configuration panel by expanding the test suite, then double-clicking the Test Suite: Test Suite node.
  3. Open the Execution Options> Test Flow Logic tab.
  4. Set the Flow type to While pass/fail.
  5. Set the Maximum number of loops to 20.
  6. Change the Loop until setting to One test and Succeeds.



  7. Save the test suite configuration settings.
  8. Create a SOAP Client test as follows.
    1. Right-click the TestFlowLogic.tst> Test Suite: Test Suite node, then choose Add New> Test.
    2. In the dialog that opens, select SOAP Client, then click Finish.
  9. Configure the SOAP Client test as follows:
    1. In the test configuration panel’s WSDL tab, enter http://localhost:8080/parabank/services/store-01?wsdl for the WSDL URL.



    2. In the Request tab, set Operation to getItemByTitle.



    3. For titleKeyword, check the box, then enter PowerBuilder as the value.



    4. Save the changes to the SOAP Client test.
  10. Create a regression control for that test as follows:
    1. Right-click the SOAP Client test node and select Create/Update Regression Control.
    2. Select Create Regression Control.
    3. Click Finish.
  11. Modify the expected price in the regression control as follows:
    1. Double-click the newly-created Diff control node to open the Diff tool editor.



    2. Modify the value in the price element. The store service increases the price of the book by $1.00 after several calls to getItemByTitle, so depending on how many times you’ve ran tests in this tutorial, the current price may be different than shown.



  12. Run the current test suite by selecting the test suite node, then clicking the Test toolbar button. Even though specific tests failed, the test suite will succeed because the price entered in the expected response will be reached before looping 20 times. You can see this in the Console tab:

     


    Info
    titleHigher prices than expected?
    The more times you’ve called getItemByTitle, the more the prices will have increased. To bring prices back down, restart the Parabank server and rerun the SOAP Client that calls getItemByTitle.
  13. Double click the previously-created Diff Control node to re-open the Diff tool editor.
  14. Modify the price so that the test will loop the full 20 times before the price is reached.
  15. Run the Test Suite again. The Test Suite will fail because the price is never reached after looping 20 times.

...