ControllersTestTrait

Trait ControllersTestTrait

Controllers test trait.

author

Donii Sergii doniysa@gmail.com

package

Default

Methods

Clear global arrays.

clear() 

Calls a DELETE URI.

delete(string $uri, array $parameters = array(), array $files = array(), array $server = array(), string $content = null, boolean $changeHistory = true) : $this

Arguments

$uri

string

The URI to fetch

$parameters

array

The Request parameters

$files

array

The files

$server

array

The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)

$content

string

The raw body data

$changeHistory

boolean

Whether to update the history or not (only used internally for back(), forward(), and reload())

Response

$this

Calls a GET URI.

get(string $uri, array $parameters = array(), array $files = array(), array $server = array(), string $content = null, boolean $changeHistory = true) : $this

Arguments

$uri

string

The URI to fetch

$parameters

array

The Request parameters

$files

array

The files

$server

array

The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)

$content

string

The raw body data

$changeHistory

boolean

Whether to update the history or not (only used internally for back(), forward(), and reload())

Response

$this

getAllowRedirect

getAllowRedirect() : boolean|integer
author

Donii Sergii doniysa@gmail.com

Response

boolean|integer

Get database connection.

getConnection() : \Doctrine\DBAL\Connection
author

Donii Sergii doniysa@gmail.com

Response

\Doctrine\DBAL\Connection

Get count redirects.

getCountRedirects() : integer
author

Donii Sergii doniysa@gmail.com

Response

integer

Get response object.

getResponseObject() : \Symfony\Component\HttpFoundation\Response|null
author

Donii Sergii doniysa@gmail.com

Response

\Symfony\Component\HttpFoundation\Response|null

Increment count redirects.

incrementCountRedirects() 
author

Donii Sergii doniysa@gmail.com

Get is need clear count redirects.

isClearCountRedirects() : boolean
author

Donii Sergii doniysa@gmail.com

Response

boolean

Check is thrown exception on redirect.

isThrowExceptionOnRedirect() : boolean
author

Donii Sergii doniysa@gmail.com

Response

boolean

Calls a PATCH URI.

patch(string $uri, array $parameters = array(), array $files = array(), array $server = array(), string $content = null, boolean $changeHistory = true) : $this

Arguments

$uri

string

The URI to fetch

$parameters

array

The Request parameters

$files

array

The files

$server

array

The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)

$content

string

The raw body data

$changeHistory

boolean

Whether to update the history or not (only used internally for back(), forward(), and reload())

Response

$this

Calls a POST URI.

post(string $uri, array $parameters = array(), array $files = array(), array $server = array(), string $content = null, boolean $changeHistory = true) : $this

Arguments

$uri

string

The URI to fetch

$parameters

array

The Request parameters

$files

array

The files

$server

array

The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)

$content

string

The raw body data

$changeHistory

boolean

Whether to update the history or not (only used internally for back(), forward(), and reload())

Response

$this

Calls a PUT URI.

put(string $uri, array $parameters = array(), array $files = array(), array $server = array(), string $content = null, boolean $changeHistory = true) : $this

Arguments

$uri

string

The URI to fetch

$parameters

array

The Request parameters

$files

array

The files

$server

array

The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)

$content

string

The raw body data

$changeHistory

boolean

Whether to update the history or not (only used internally for back(), forward(), and reload())

Response

$this

Calls a URI.

request(string $method, string $uri, array $parameters = array(), array $files = array(), array $server = array(), string $content = null, boolean $changeHistory = true) : $this
abstract

Arguments

$method

string

The request method

$uri

string

The URI to fetch

$parameters

array

The Request parameters

$files

array

The files

$server

array

The server parameters (HTTP headers are referenced with a HTTP_ prefix as PHP does)

$content

string

The raw body data

$changeHistory

boolean

Whether to update the history or not (only used internally for back(), forward(), and reload())

Response

$this

See in table count records.

seeCountInTable(string $table, integer $count, array|null $params = null) : $this
author

Donii Sergii doniysa@gmail.com

Arguments

$table

string

$count

integer

$params

array|null

Response

$this

See header in response.

seeHeader(string $header, null $value = null) : $this

Arguments

$header

string

$value

null

Response

$this

See in database.

seeInDatabase(string $table, array|string $condition) : $this
author

Donii Sergii doniysa@gmail.com

Throws
\PHPUnit\Framework\AssertionFailedError

Arguments

$table

string

Table name.

$condition

array|string

Where condition.

Response

$this

See json structure.

seeJsonStructure(array $struct, array $data = null) : $this

Arguments

$struct

array

$data

array

Response

$this

See status code in response.

seeStatusCode(integer $statusCode) : $this
Throws
\PHPUnit\Framework\AssertionFailedError

Arguments

$statusCode

integer

Response

$this

setAllowRedirect

setAllowRedirect(boolean|integer $allowRedirect) 
author

Donii Sergii doniysa@gmail.com

Arguments

$allowRedirect

boolean|integer

Get is need clear count redirects.

setClearCountRedirects(boolean $clear) : $this
author

Donii Sergii doniysa@gmail.com

Arguments

$clear

boolean

Response

$this

Set count redirects.

setCountRedirects(integer $_countRedirects) 
author

Donii Sergii doniysa@gmail.com

Arguments

$_countRedirects

integer

Set thrown exception on redirect.

setThrowExceptionOnRedirect(boolean $throwExceptionOnRedirect) 
author

Donii Sergii doniysa@gmail.com

Arguments

$throwExceptionOnRedirect

boolean

Properties

If false - disable redirects. If number - max enabled redirects count.

allowRedirect : boolean|integer
var
author

Donii Sergii doniysa@gmail.com

Type(s)

boolean|integer

If true generate exception when count redirects more than `allowRedirect` value.

throwExceptionOnRedirect : boolean
var
author

Donii Sergii doniysa@gmail.com

Type(s)

boolean

Clear redirects count.

clearCountRedirects : boolean
var
author

Donii Sergii doniysa@gmail.com

Type(s)

boolean

Current count redirects.

countRedirects : integer
var
author

Donii Sergii doniysa@gmail.com

Type(s)

integer