Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP
In directory usw-pr-cvs1:/tmp/cvs-serv23288/lib/HTTP
Modified Files:
WebTest.pm
Log Message:
Regenerated
Index: WebTest.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** WebTest.pm 24 Jan 2002 14:52:40 -0000 1.2
--- WebTest.pm 12 Feb 2002 12:48:19 -0000 1.3
***************
*** 205,209 ****
=head3 File format
! The following is ignored in wtscript file:
=over 4
--- 205,220 ----
=head3 File format
! The wtscript file is a text file containing global parameters and
! test blocks containing test block parameters. A test block begins with
! a test_name parameter and ends with an end_test directive. The order of
! the parameters and test blocks is arbitrary.
!
! Test block parameters MUST occur between a test_name parameter and an
! end_test directive. (Test block parameters affect only an individual
! test.) Global parameters must NOT occur between a test_name parameter
! and an end_test directive. (This requirement does not apply to
! certain parameters that are both global and test block parameters.)
!
! The following lines are ignored:
=over 4
***************
*** 224,246 ****
=back
- The order of the parameters in the parameter file is arbitrary,
- with the following exceptions:
-
- =over 4
-
- =item *
-
- Test block parameters MUST occur between a test_name parameter and an
- end_test directive. (Test block parameters affect only an individual
- test.)
-
- =item *
-
- Global parameters must NOT occur between a test_name parameter
- and an end_test directive. (This requirement does not apply to
- parameters that are both global and test block parameters.)
-
- =back
-
Parameters are either scalar (single-valued) or lists (single or
multi-valued).
--- 235,238 ----
***************
*** 248,252 ****
You can specify scalar parameters using forms such as:
! name = value
name =
value
--- 240,244 ----
You can specify scalar parameters using forms such as:
! name=value
name =
value
***************
*** 257,272 ****
name = ( first value
second value )
! name = ( first value => second value
! third value => fourth value
! )
name = ( first value => second value )
name = (
'first value'
'second value' )
! name = (
first value
second value
third value => 'fourth value'
! )
name =
( first value
--- 249,264 ----
name = ( first value
second value )
! name=( first value => second value
! third value => fourth value
! )
name = ( first value => second value )
name = (
'first value'
'second value' )
! name= (
first value
second value
third value => 'fourth value'
! )
name =
( first value
***************
*** 277,314 ****
)
! (The equals sign must be followed by a space, tab or newline; all
! other spaces are optional.)
!
! PARAMETER VALUES BEGINNING AND ENDING WITH A SINGLE QUOTE WILL HAVE
! THE SINGLE QUOTES REMOVED. For example, 'foobar' is parsed as a value
! of foobar and ''foobar'' is parsed as a value of 'foobar'. To specify
! a null (placeholder) value, use ''.
!
! You MUST enclose the parameter value in single quotes if you want
! to specify:
!
! =over 4
!
! =item *
!
! a value beginning with a left parenthesis
!
! =item *
!
! a value ending with a right parenthesis
!
! =item *
!
! a value beginning with leading white space (blanks or tabs)
!
! =item *
!
! a value ending with trailing white space (blanks or tabs)
!
! =item *
!
! a value beginning and ending with single quotes
!
! =back
=head3 Examples of wtscript files
--- 269,277 ----
)
! You can specify a null (placeholder) value using '' or "". Within single
! or double quotes, the usual Perl string quoting rules apply. Thus, single
! quotes mean that all enclosed characters are interpreted literally: '\n'
! is backslash-n rather than a newline character. Double quotes mean that
! Perl metasymbols are interpreted: "\n\t" is a newline and a tab.
=head3 Examples of wtscript files
***************
*** 946,950 ****
for proxy server access authorization.
-
=head2 plugins
--- 909,912 ----
***************
*** 1026,1029 ****
--- 988,1003 ----
C<no>
+ =head2 show_headers
+
+ Include request and response headers in the test report.
+
+ =head3 Allowed values
+
+ C<yes>, C<no>
+
+ =head3 Default value
+
+ C<no>
+
=head2 show_html
***************
*** 1085,1088 ****
--- 1059,1074 ----
URL to test. If schema part of URL is omitted (i.e. URL doesn't start
with C<http://>, C<ftp://>, etc) then C<http://> is implied.
+
+ =head2 user_agent
+
+ Get/set the product token that is used to identify the user agent on
+ the network.
+
+ =head3 Default value
+
+ C<HTTP-WebTest/NN>
+
+ where C<NN> is version number of HTTP-WebTest.
+
|