Studio:Debugging Helps: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
= Script Debugging Techniques = | = Script Debugging Techniques = | ||
Listed here are some debugging techniques. | Listed here are some simple debugging techniques that will aid in understanding and troubleshooting scripts that drive STRIDE tests. | ||
As you work through the training scripts, you may find it helpful to insert one or more of the following debugging helps as an aid in understanding the flow of execution or to investigate the value of variables and expressions as the script runs. | |||
== perl == | == perl == | ||
Line 48: | Line 50: | ||
[[Image:MessageBoxOutput.jpg]] | [[Image:MessageBoxOutput.jpg]] | ||
=== Exception Messages === | |||
Most calls to STRIDE scripting objects will throw an exception to indicate that an error has occured. To ensure that these errors are seen by your perl script, be sure to follow the recommendation [[How_do_I_get_Perl_scripts_to_emit_fatal_errors_when_a_COM_error_occurs%3F|here]]. | |||
Revision as of 23:18, 4 February 2008
Script Debugging Techniques
Listed here are some simple debugging techniques that will aid in understanding and troubleshooting scripts that drive STRIDE tests.
As you work through the training scripts, you may find it helpful to insert one or more of the following debugging helps as an aid in understanding the flow of execution or to investigate the value of variables and expressions as the script runs.
perl
PrintMessage()
The studio object provides a way to perform printf-style debugging of scripts running within STRIDE Studio.
PrintMessage allows you to log messages from running scripts and view the values of variables during script execution.
Here's an example of its use in a perl script:
my $funcs = $main::ascript->Functions; # loop through each captured function foreach (0..($funcs->Count - 1)) { my $f = $funcs->Item($_); # send output to Studio Messages window $main::studio->Output->PrintMessage("function item ".$_." ".$f->Name); }
Note that the single argument to the function will accept any expression that perl can interpret as a string. Shown below is output from the sample script.
MessageBox()
The ascript object provides a way to interrupt script execution and display a modal message box containing a message you specify.
Here's an example of its use in a perl script:
my $funcs = $main::ascript->Functions; # loop through each captured function foreach (0..($funcs->Count - 1)) { my $f = $funcs->Item($_); # send output to Studio Messages window $main::ascript->MessageBox("function item ".$_." ".$f->Name, "Debug Output"); }
The displayed message box can be customized in several ways; see online help and autosense for details. Shown below is output from the sample script.
Exception Messages
Most calls to STRIDE scripting objects will throw an exception to indicate that an error has occured. To ensure that these errors are seen by your perl script, be sure to follow the recommendation here.
JScript
- PrintMessage()
- MessageBox()
- exception messages
- symbolic debugger