名前¶
HTTP::WebTest::Plugin::TextMatchTest - Test the content of the HTTP response.
HTTP::WebTest::Plugin::TextMatchTest - HTTP レスポンスの内容をテストする
概要¶
Not Applicable
なし.
説明¶
This plugin supports test on the content of the HTTP response. You can test for the existence or non-existence of a literal string or a regular expression.
このプラグインは HTTP レスポンスの内容に対してのテストをサポートします. リテラル文字列や正規表現が存在することもしくは存在しないことをテストできます.
テストパラメータ¶
ignore_case¶
Option to do case-insensitive string matching for text_forbid
, text_require
, regex_forbid
and regex_require
test parameters.
text_forbid
, text_require
, regex_forbid
及び regex_require
テストパラメータで大文字小文字を区別しないマッチングを行うかどうかを 設定します.
使用可能な値¶
yes
, no
デフォルト値¶
no
text_forbid¶
List of text strings that are forbidden to exist in the returned page.
返されたページの中に存在することを禁止するテキスト文字列のリスト.
See also the regex_forbid
and ignore_case
parameters.
regex_forbid
及び ignore_case
パラメータも参照してください.
text_require¶
List of text strings that are required to exist in the returned page.
返されたページの中に存在することを要求するテキスト文字列のリスト.
See also the regex_require
and ignore_case
parameters.
regex_require
及び ignore_case
パラメータも参照してください.
regex_forbid¶
List of regular expressions that are forbidden to exist in the returned page.
返されたページの中に存在することを禁止する正規表現のリスト.
For more information, see perldoc perlre or see Programming Perl, 3rd edition, Chapter 5.
詳細に関しては, perldoc perlre もしくはプログラミング言語 Perl 第3版 第5章 を参照してください.
See also the text_forbid
and ignore_case
parameters.
text_forbid
及び ignore_case
パラメータも参照してください.
regex_require¶
List of regular expressions that are required to exist in the returned page.
返されたページの中に存在することを要求する正規表現のリスト.
For more information, see perldoc perlre or see Programming Perl, 3rd edition, Chapter 5.
詳細に関しては, perldoc perlre もしくはプログラミング言語 Perl 第3版 第5章 を参照してください.
See also the text_require
and ignore_case
parameters.
text_require
及び ignore_case
パラメータも参照してください.
コピーライト¶
Copyright (c) 2000-2001 Richard Anderson. All rights reserved.
Copyright (c) 2001-2003 Ilya Martynov. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
このプログラムはフリーソフトです. このプログラムは Perl 自身と同じ条件下で 再配布・改変可能です.