类 HeaderNotSet
HeaderSet
属性摘要
-
$headerName protected
字符串
-
$response protected
Psr\Http\Message\ResponseInterface
方法摘要
-
__construct() public
构造函数。
-
_getBodyAsString() protected
将响应主体作为字符串获取
-
additionalFailureDescription() protected
根据需要返回额外的故障描述。
-
count() public
计算约束元素的数量。
-
evaluate() public
评估参数 $other 的约束。
-
fail() protected
针对给定的比较值和测试描述抛出异常。
-
failureDescription() protected
覆盖描述,以便我们可以删除自动的“预期”消息
-
failureDescriptionInContext() protected
返回当此约束出现在 $operator 表达式的上下文中时的故障描述。
-
matches() public
检查断言
-
readCookie() protected
从响应 cookie 集合或标题中读取 cookie
-
reduce() protected
通过跳过退化子表达式来减少从 $this 开始的子表达式,并返回开始非可简化子表达式的第一个后代约束。
-
toString() public
断言消息
-
toStringInContext() protected
当约束出现在 $operator 表达式的上下文中时,返回约束对象的自定义字符串表示形式。
-
valueToTypeStringFragment() protected
方法详情
__construct() ¶ public
__construct(Psr\Http\Message\ResponseInterface|null $response, string $headerName)
构造函数。
参数
-
Psr\Http\Message\ResponseInterface|null
$response 一个响应实例。
-
string
$headerName 标题名称
additionalFailureDescription() ¶ protected
additionalFailureDescription(mixed $other): string
根据需要返回额外的故障描述。
该函数可以被覆盖以提供额外的故障信息,例如差异
参数
-
mixed
$other
返回
字符串
evaluate() ¶ public
evaluate(mixed $other, string $description = '', bool $returnResult = false): ?bool
评估参数 $other 的约束。
如果 $returnResult 设置为 false(默认值),则在发生故障的情况下会抛出异常。否则返回 null。
如果 $returnResult 为 true,则评估结果将作为布尔值返回:成功为 true,失败为 false。
参数
-
mixed
$other -
string
$description optional -
bool
$returnResult optional
返回
?bool
抛出
ExpectationFailedException
fail() ¶ protected
fail(mixed $other, string $description, ?ComparisonFailure $comparisonFailure = null): never
针对给定的比较值和测试描述抛出异常。
参数
-
mixed
$other -
string
$description -
?ComparisonFailure
$comparisonFailure optional
返回
从不
抛出
ExpectationFailedException
failureDescription() ¶ protected
failureDescription(mixed $other): string
覆盖描述,以便我们可以删除自动的“预期”消息
在大多数情况下,故障消息的开头是“断言失败”。此方法应返回该句子的第二部分。
若要提供额外的故障信息,可以使用 additionalFailureDescription。
参数
-
mixed
$other 值
返回
字符串
failureDescriptionInContext() ¶ protected
failureDescriptionInContext(Operator $operator, mixed $role, mixed $other): string
返回当此约束出现在 $operator 表达式的上下文中时的故障描述。
此方法的目的是在 LogicalNot 等运算符的上下文中提供有意义的故障描述。LogicalNot 原生支持 PHPUnit 约束,但外部开发的约束无法在此上下文中提供正确的消息。
当此方法不自行处理自定义时,应返回空字符串。
参数
-
Operator
$operator -
mixed
$role -
mixed
$other
返回
字符串
readCookie() ¶ protected
readCookie(string $name): array|null
从响应 cookie 集合或标题中读取 cookie
参数
-
string
$name 您要读取的 cookie 的名称。
返回
array|null
reduce() ¶ protected
reduce(): self
通过跳过退化子表达式来减少从 $this 开始的子表达式,并返回开始非可简化子表达式的第一个后代约束。
对于终止约束和启动非可简化子表达式的运算符,返回 $this,或者返回 $this 的最近后代,该后代启动非可简化子表达式。
约束表达式可以建模为一棵树,其中包含非终止节点(运算符)和终止节点。例如
LogicalOr(运算符,非终止)
- LogicalAnd(运算符,非终止) | + IsType('int')(终止) | + GreaterThan(10)(终止)
- LogicalNot(运算符,非终止)
- IsType('array')(终止)
退化子表达式是树的一部分,它实际上对它出现的表达式评估没有贡献。退化子表达式的一个示例是使用单个操作数构造的 BinaryOperator 或嵌套的 BinaryOperator,每个 BinaryOperator 都使用单个操作数。包含退化子表达式的表达式等效于删除退化子表达式的简化表达式,例如
LogicalAnd(运算符)
- LogicalOr(退化运算符) | + LogicalAnd(退化运算符) | + IsType('int')(终止)
- GreaterThan(10)(终止)
等效于
LogicalAnd(运算符)
- IsType('int')(终止)
- GreaterThan(10)(终止)
因为子表达式
- LogicalOr
- LogicalAnd
- -
- LogicalAnd
是退化的。在上面的 LogicalOr 对象以及 LogicalAnd 上调用 reduce() 将返回 IsType('int') 实例。
可以实现其他特定减少,例如 LogicalNot 运算符的级联
- LogicalNot
- LogicalNot +LogicalNot
- IsTrue
- LogicalNot +LogicalNot
可以简化为
LogicalNot
- IsTrue
返回
self
toStringInContext() ¶ protected
toStringInContext(Operator $operator, mixed $role): string
当约束出现在 $operator 表达式的上下文中时,返回约束对象的自定义字符串表示形式。
此方法的目的是在 LogicalNot 等运算符的上下文中提供有意义的描述性字符串。LogicalNot 原生支持 PHPUnit 约束,但外部开发的约束无法在此上下文中提供正确的字符串。
当此方法不自行处理自定义时,应返回空字符串。
参数
-
Operator
$operator -
mixed
$role
返回
字符串
valueToTypeStringFragment() ¶ protected
valueToTypeStringFragment(mixed $value): non-empty-string
参数
-
mixed
$value
返回
非空字符串