Test/PHPUnit/Constraint/ResponseHeader34.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Test  
Subpackage
PHPUnit  
Version
$Id$  

\Zend_Test_PHPUnit_Constraint_ResponseHeader

Package: Zend_Test\PHPUnit
Response header PHPUnit Constraint
Parent(s)
\PHPUnit_Framework_Constraint
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Uses
 

Constants

>VConstant  ASSERT_RESPONSE_CODE = 'assertResponseCode'
>VConstant  ASSERT_HEADER = 'assertHeader'
>VConstant  ASSERT_HEADER_CONTAINS = 'assertHeaderContains'
>VConstant  ASSERT_HEADER_REGEX = 'assertHeaderRegex'

Properties

>VPropertyprotectedint $_actualCode = null

Actual response code

Default valuenullDetails
Type
int
>VPropertyprotectedstring $_assertType = null
Current assertion type
Default valuenullDetails
Type
string
>VPropertyprotectedarray $_assertTypes = array(self::ASSERT_RESPONSE_CODE, self::ASSERT_HEADER, self::ASSERT_HEADER_CONTAINS, self::ASSERT_HEADER_REGEX)
Available assertion types
Default valuearray(self::ASSERT_RESPONSE_CODE, self::ASSERT_HEADER, self::ASSERT_HEADER_CONTAINS, self::ASSERT_HEADER_REGEX)Details
Type
array
>VPropertyprotectedint $_code = 200

Response code

Default value200Details
Type
int
>VPropertyprotectedstring $_header = null

Header

Default valuenullDetails
Type
string
>VPropertyprotectedstring $_match = null

pattern against which to compare header content

Default valuenullDetails
Type
string
>VPropertyprotectedbool $_negate = false
Whether or not assertion is negated
Default valuefalseDetails
Type
bool

Methods

methodpublic__construct() : void

Constructor; setup constraint state

methodprotected_code(\Zend_Controller_Response_Abstract $response, int $code) : bool

Compare response code for positive match

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$codeint
Returns
TypeDescription
bool
methodprotected_getCode(\Zend_Controller_Response_Abstract $response) : int

Retrieve response code

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
Returns
TypeDescription
int
methodprotected_getHeader(\Zend_Controller_Response_Abstract $response, string $header) : string | null

Retrieve response header

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$headerstring
Returns
TypeDescription
string | null
methodprotected_header(\Zend_Controller_Response_Abstract $response, string $header) : bool

Positive check for response header presence

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$headerstring
Returns
TypeDescription
bool
methodprotected_headerContains(\Zend_Controller_Response_Abstract $response, string $header, string $match) : bool

Positive check for header contents matching pattern

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$headerstring
$matchstring
Returns
TypeDescription
bool
methodprotected_headerRegex(\Zend_Controller_Response_Abstract $response, string $header, string $pattern) : bool

Positive check for header contents matching regex

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$headerstring
$patternstring
Returns
TypeDescription
bool
methodprotected_notCode(\Zend_Controller_Response_Abstract $response, int $code) : bool

Compare response code for negative match

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$codeint
Returns
TypeDescription
bool
methodprotected_notHeader(\Zend_Controller_Response_Abstract $response, string $header) : bool

Negative check for response header presence

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$headerstring
Returns
TypeDescription
bool
methodprotected_notHeaderContains(\Zend_Controller_Response_Abstract $response, string $header, string $match) : bool

Negative check for header contents matching pattern

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$headerstring
$matchstring
Returns
TypeDescription
bool
methodprotected_notHeaderRegex(\Zend_Controller_Response_Abstract $response, string $header, string $pattern) : bool

Negative check for header contents matching regex

Parameters
NameTypeDescription
$response\Zend_Controller_Response_Abstract
$headerstring
$patternstring
Returns
TypeDescription
bool
methodpublicevaluate(\Zend_Controller_Response_Abstract $other,  $assertType = null) : bool

Evaluate an object to see if it fits the constraints

Parameters
NameTypeDescription
$other\Zend_Controller_Response_Abstract

String to examine

$assertType
Returns
TypeDescription
bool
methodpublicfail(mixed $other, string $description, bool $not = false) : void

Report Failure

Parameters
NameTypeDescription
$othermixed
$descriptionstring

Additional message to display

$notbool
Throws
ExceptionDescription
\PHPUnit_Framework_ExpectationFailedException
Details
See
for implementation details  
methodpublicsetNegate(bool $flag = true) : void

Indicate negative match

Parameters
NameTypeDescription
$flagbool
methodpublictoString() : string

Complete implementation

Returns
TypeDescription
string
Documentation was generated by phpDocumentor 2.2.0 .