Studio:Reporting Sample: Difference between revisions

From STRIDE Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 13: Line 13:


==Getting Started==
==Getting Started==
The sample is executed by opening the workspace and executing the scripts by pressing the [[Image:RunAll.png]] button.
The sample is executed by opening the workspace and executing the scripts by pressing the [[Image:RunAll.png]] button. When execution is complete, the results are summarized to the Studio output window and a link to the results file is provided.  You can now peruse the output report and the scripts that generated the results.


==Overview==
==Overview==
Line 19: Line 19:


==Report Organization==
==Report Organization==
As stated earlier, the '''Reporter''' stores test results hierarchically. At the top level, it holds a collection of one or more child '''[[Reporter#reporter.Suites|Suites]]'''. These Suites--in turn--hold a collection of zero or more child '''[[Reporter#reporter.Suites.Item.Tests|Tests]]''', a second collection of zero or more Suites, and a third collection of zero or more '''[[Reporter#reporter.Suites.Item.Annotations|Annotations]]'''.
As stated earlier, the '''Reporter''' stores test results hierarchically. At the top level, it holds a collection of one or more child '''[[Reporter#reporter.Suites|Suites]]'''. These Suites--in turn--hold a collection of zero or more child '''[[Reporter#reporter.Suites.Item.Tests|Tests]]''', a second collection of zero or more Suites, and a third collection of zero or more '''[[Reporter#reporter.Suites.Item.Annotations|Annotations]]'''.


Line 35: Line 34:
* Name
* Name
* Description
* Description


=== The Test Object ===
=== The Test Object ===
Line 60: Line 58:


==Sample Scripts==
==Sample Scripts==
We provide a range of examples in JScript and perl.  The scripts are functionally identical, differing only in syntax.


=== Creating Suites ===
=== Suites ===
 
=== Creating Tests ===


=== Creating Comments ===
=== Tests ===


=== Setting Test Status ===
=== Dual Mode ===


===Command Line Execution===


[[Category: Samples]]
[[Category: Samples]]

Revision as of 17:32, 11 September 2008

Note: for content related to versions of STRIDE 3.0.01 and earlier, please refer to Reporter Sample v3.0.01


Introduction

The following content relates to the sample files and workspaces installed in %STRIDE_DIR%\Samples\Scripting\Reporting. This sample consists of test scripts and a STRIDE workspace for sample code execution.

Prerequisites

Before starting, some prerequisites must be satisfied. For details and instructions, see Host Installation.

Specifically:

  • STRIDE must be installed on the Windows PC to be used in the training, and any required licenses must be present.
  • Active State Perl must be installed, and additional perl packages must be downloaded and installed. Note: when the sample workspace is executed, a script runs that verifies that the required Perl packages have been installed correctly.

Getting Started

The sample is executed by opening the workspace and executing the scripts by pressing the File:RunAll.png button. When execution is complete, the results are summarized to the Studio output window and a link to the results file is provided. You can now peruse the output report and the scripts that generated the results.

Overview

The STRIDE Reporter object provides a means to organize and collect test results data, then publish results in a format of your choosing. The STRIDE Studio application integrates a reporter object with its collection of test scripts, and this sample's Studio workspace defines the hierarchy of the test scripts that will be the resulting hierarchy of the test suites and test cases in the generated report. The following describes the contents of the test report in more detail.

Report Organization

As stated earlier, the Reporter stores test results hierarchically. At the top level, it holds a collection of one or more child Suites. These Suites--in turn--hold a collection of zero or more child Tests, a second collection of zero or more Suites, and a third collection of zero or more Annotations.

Each Test has a collection of zero or more Comments, and each Annotation has a collection of zero or more Comments.

The diagram at the right shows an example hierarchy.

Reporter Object Hierarchy

The Suite Object

The Suite object is used to group related Tests (and Annotations--if present) so that their results can be summarized on an output report.

The Suite object exposes a set of properties, the most important are listed below.

  • Name
  • Description

The Test Object

The Test object represents a specific test that is run. The result of a test is reflected in its Status property ("PASS"/"FAIL").

The most important properties of the Test object are listed below.

  • Name
  • Description
  • Status

The Comment Object

The Comment object allows you to attach a text comment to a Test or Annotation. Comments are useful for logging test script flow and other test information.

The Comment object exposes two properties listed below.

  • Comment
  • Label

The Annotation Object

The Annotation object is used when you want to associate a file or a URI with a Suite. (e.g. a screen shot or other data file).

The Annotation object is designed for use with STRIDE Portal, and will not be covered further here. For more information, see the Annotation item section of the Reporter reference article.

Sample Scripts

We provide a range of examples in JScript and perl. The scripts are functionally identical, differing only in syntax.

Suites

Tests

Dual Mode