## GT0128 Hurricane WAP
## WSP Protocol Handler
#######################
## Ref. SGL.GT0128.aaa.bbb WSP Protocol Handler Unit Tests
## Unit test 2.4.1.8
## Driver chat script
#
# Test Synopsis
# * Repeat Abort after aborting a GET method, before the abort has completed 

# Expected Result
# * Expected result: The method invocation gets aborted, the second abort causes an error or no response


SCRIPT UnitTestDriver2.4.1.8 
#
# Sleep before start, allows stub time to start up and initialise.
#
	SLEEP 500
#
# Set the proxy info
#
	INCLUDE "C:\HttpTest\wsp_pr_hnd_driver\setproxyinfo_driver.txt"

#
# Get the session connected
#
	INCLUDE "C:\HttpTest\wsp_pr_hnd_driver\doconnect_accept_driver.txt"
#
# Invoke a get & abort method
#
	SLEEP 500
	INCLUDE "C:\HttpTest\wsp_pr_hnd_driver\trans1_get_clientabort_driver.txt"
#
# Abort the method - again, should do nothing
#
	SEND
		INVOKE trans1 Cancel
		ENDINVOKE
	ENDSEND
#
# Client closes the transaction
#
	SLEEP 500
	SEND
		INVOKE trans1 Close
		ENDINVOKE
	ENDSEND
#
# Ask for disconnect
# 
	SLEEP 500
	INCLUDE "C:\HttpTest\wsp_pr_hnd_driver\do_clientdisconnect_driver.txt"
#
# Give the stub a chance to finish before exiting
#
	SLEEP 500
#
# Done!
#

ENDSCRIPT


