HTTP-WebTest-2.04 > HTTP::WebTest::Request
HTTP-WebTest-2.04

名前

HTTP::WebTest::Request - HTTP request objects

HTTP::WebTest::Request - HTTP リクエストオブジェクト

概要

    use HTTP::WebTest::Request;
    $request = HTTP::WebTest::Request->new;

    my $uri = $request->uri;

    $request->base_uri($base_uri);
    my $base_uri = $request->base_uri;

    my @params = @{$request->params};
    $request->params([@params]);

説明

This class is a subclass of HTTP::Request class. It extends it with continence methods that allow to set or get CGI query params for HTTP request in uniform way independent of HTTP request method.

このクラスは HTTP::Request クラスのサブクラスです. HTTP リクエストメソッドから独立した統一した方法での HTTP リクエストの CGI パラメータの設定もしくは取得を許可する 自制的なメソッドを拡張しています.

Each URI in GET requests may consist of two portions: URI of document/resource/etc and CGI query string. In HTTP::Request method uri doesn't separate them and operates on them as on single entity. In HTTP::WebTest::Request method uri is not allowed to modify HTTP request URI. Instead of it methods base_uri and params should be used to change or get these parts independently.

GET リクエストの URI は2つの部分, ドキュメント/リソース等の URI 及び CGI クエリ文字列からなります. HTTP::Requesturi メソッドではこれらが分離されておらず1つのエンティティとして 処理されてしまいます. HTTP::WebTest::Requesturi メソッド では HTTP リクエスト URI の変更を許していません. その代わりに base_uri 及び params メソッドで個々の部分を独立して変更もしくは 取得します.

For POST requests method base_uri acts simular to uri. On the other hand params set content of HTTP request in case of POST requests.

POST リクエストでは base_uriuri とよく似ています. 言い換えると POST リクエストでは params が HTTP リクエストの 本体を設定します.

CGI request parameters are defined in the way similar to CGI request parameters defenition in HTTP::Request::Common. It is an array of pairs

CGI リクエストのパラメータは HTTP::Request::Common で定義される CGI リクエストパラメータの定義とよく似た方法で定義されます. ペアの配列を用いる方法です.

    ( name1 => value1, name2 => value2, ..., nameN => valueN )

If any value is passed as an array reference it is treated as file upload. See HTTP::Request::Common for more details.

もし値が配列へのリファレンスとして渡されると ファイルのアップロードとして処理されます. 詳細は HTTP::Request::Common を参照してください.

By default GET type of HTTP request is assumed. But if CGI request parameters have data for file upload then POST type of HTTP request is assumed.

デフォルトでは HTTP リクエストに GET が使われます. しかしもし CGI リクエストパラメータにファイルアップロードがあると POST が使われます.

クラスメソッド

base_uri($optional_uri)

Can set non CGI query portion of request URI if $optional_uri is passed.

$optional_uri が渡されると リクエスト URI の CGI クエリ部分でない 箇所を設定します.

復帰値

Non CGI query portion of request URI.

リクエスト URI の CGI クエリ部分でない箇所.

uri($optional_uri)

Method uri is redefined. It is same as base_uri for non-GET request. For GET requests it returns URI with query parameters.

uri メソッドは再定義されています. これは GET でないリクエストに対しては base_uri と同じです. GET リクエストであればクエリパラメータを含んだ URI を返します.

復帰値

Whole URI.

完全な URI.

content_ref

Method content_ref is redefined. For POST requests it returns POST query content corresponding to query parameters.

content_ref メソッドは再定義されています. POST リクエストであれば クエリパラメータに対応するクエリ本体を返します.

params($optional_params)

Can set CGI request parameters for this HTTP request object if an array reference $optional_params is passed.

配列リファレンス $optional_params が渡されると HTTP リクエスト オブジェクトの CGI リクエストパラメータを設定します.

復帰値

An reference to an array that contains CGI request parameters.

CGI リクエストパラメータを含んだ配列へのリファレンス.

コピーライト

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 自身と同じ条件下で再配布・改変可能です.

SEE ALSO

HTTP::WebTest

HTTP::WebTest::API

HTTP::Request

HTTP::Request::Common