Skip to content

Commit deb02d7

Browse files
committed
Add test for custom escape function
1 parent 8ce2f5e commit deb02d7

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tests/Test.php

+27
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,30 @@ public function __toString() : string
7979
],
8080
],
8181
]);
82+
83+
$inputBuildsExpectedEscape = function ($html, $args) : void {
84+
$output = html_build_attributes(...$args);
85+
86+
expect($output)->toBe($html);
87+
};
88+
89+
/**
90+
* @param string $html The expected return value.
91+
* @param mixed $input The variable to be passed to the function.
92+
* @param callable $escape The custom escape callback to be passed to the function.
93+
*/
94+
it('escapes HTML attributes', $inputBuildsExpectedEscape)->with([
95+
[
96+
'id="FOOBAR"',
97+
[
98+
[
99+
'id' => 'foobar',
100+
],
101+
function ($value, $name) {
102+
expect($name)->toBe('id');
103+
104+
return strtoupper($value);
105+
},
106+
],
107+
],
108+
]);

0 commit comments

Comments
 (0)