FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpunit-array-asserts/src/Constraint/ArrayHasKeyWith.php at master · PhrozenByte/phpunit-array-asserts · GitHub
PhrozenByte
/
phpunit-array-asserts
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
9
Code
Issues
1
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
phpunit-array-asserts
/
src
/
Constraint
/
ArrayHasKeyWith.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
106 lines (94 loc) · 3.21 KB
Breadcrumbs
phpunit-array-asserts
/
src
/
Constraint
/
ArrayHasKeyWith.php
Copy path
File metadata and controls
106 lines (94 loc) · 3.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
/**
* PHPUnitArrayAssertions - Array-related PHPUnit assertions for API testing.
*
* @copyright Copyright (c) 2020, Daniel Rudolf (<https://www.daniel-rudolf.de>)
*
* This file is copyrighted by the contributors recorded in the version control
* history of the file, available from the following original location:
*
* <https://github.com/PhrozenByte/phpunit-array-asserts/blob/master/src/Constraint/ArrayHasKeyWith.php>
*
* @license http://opensource.org/licenses/MIT The MIT License
*
* SPDX-License-Identifier: MIT
* License-Filename: LICENSE
*/
declare
(strict_types=
1
);
namespace
PhrozenByte
\
PHPUnitArrayAsserts
\
Constraint
;
use
ArrayAccess
;
use
PHPUnit
\
Framework
\
Constraint
\
Constraint
;
use
PHPUnit
\
Framework
\
Constraint
\
IsEqual
;
use
PHPUnit
\
Framework
\
InvalidArgumentException
;
/**
* Constraint that asserts that an array has a given key and that its value
* passes another constraint.
*
* Accepts both native arrays and ArrayAccess objects. The constraint will fail
* if the key doesn't exist in the array.
*
* The item's key and the constraint the value must pass are passed in the
* constructor. The constraint can either be an arbitrary `Constraint` instance
* (e.g. `PHPUnit\Framework\Constraint\StringContains`), or any static value,
* requiring an exact match of the value.
*/
class
ArrayHasKeyWith
extends
Constraint
{
/** @var int|string */
protected
$
key
;
/** @var Constraint */
protected
$
constraint
;
/**
* ArrayHasKeyWith constructor.
*
* @param int|string $key the key of the item to check
* @param Constraint|mixed $constraint the constraint the item's value is applied to
*
* @throws InvalidArgumentException
*/
public
function
__construct
(
$
key
,
$
constraint
)
{
if
(!(
is_int
(
$
key
) ||
is_string
(
$
key
))) {
throw
InvalidArgumentException::
create
(
1
,
'
integer or string
'
);
}
$
this
->
key
=
$
key
;
$
this
->
constraint
= !(
$
constraint
instanceof
Constraint) ?
new
IsEqual
(
$
constraint
) :
$
constraint
;
}
/**
* Returns a human-readable string representation of this Constraint.
*
* @return string string representation of the Constraint
*/
public
function
toString
():
string
{
return
'
is an array that has the key
'
.
$
this
->
exporter
()->
export
(
$
this
->
key
) .
'
'
.
'
whose value
'
.
$
this
->
constraint
->
toString
();
}
/**
* Returns whether the given value matches the Constraint.
*
* @param mixed $other the value to evaluate
*
* @return bool boolean indicating whether the value matches the Constraint
*/
protected
function
matches
(
$
other
):
bool
{
$
valueExists
=
false
;
if
(
is_array
(
$
other
)) {
$
valueExists
=
array_key_exists
(
$
this
->
key
,
$
other
);
}
elseif
(
$
other
instanceof
ArrayAccess) {
$
valueExists
=
$
other
->
offsetExists
(
$
this
->
key
);
}
if
(!
$
valueExists
) {
return
false
;
}
return
$
this
->
constraint
->
evaluate
(
$
other
[
$
this
->
key
],
''
,
true
);
}
/**
* Returns the number of assertions performed by this Constraint.
*/
public
function
count
():
int
{
return
$
this
->
constraint
->
count
() +
1
;
}
}
Back
|
FazBrowse Home
|
New Git URL