Skip to content

Commit 42f34e2

Browse files
committed
Add Pest/PHPUnit and unit tests
Added: - pestphp/pest `^1.22` - PHP 7.4 for tests
1 parent 11fcc26 commit 42f34e2

File tree

5 files changed

+116
-0
lines changed

5 files changed

+116
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/.gitattributes export-ignore
1212
/.gitignore export-ignore
1313
/composer.lock export-ignore
14+
/phpunit.xml.dist export-ignore
1415

1516
# Avoid merging lock files
1617
composer.lock -diff

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
/vendor/
33

44
# Files
5+
/.phpunit.result.cache
56
/composer.lock
7+
/phpunit.xml

composer.json

+17
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,24 @@
1818
"php": ">=5.4.0",
1919
"ext-json": "*"
2020
},
21+
"require-dev": {
22+
"php": ">=7.4.0",
23+
"pestphp/pest": "^1.22"
24+
},
2125
"autoload": {
2226
"files": [ "Function.HTML-Build-Attributes.php" ]
27+
},
28+
"config": {
29+
"allow-plugins": {
30+
"pestphp/pest-plugin": true
31+
}
32+
},
33+
"scripts": {
34+
"test": [
35+
"@test:pest"
36+
],
37+
"test:pest": [
38+
"pest"
39+
]
2340
}
2441
}

phpunit.xml.dist

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5+
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
>
8+
<testsuites>
9+
<testsuite name="Test Suite">
10+
<directory suffix="Test.php">./tests</directory>
11+
</testsuite>
12+
</testsuites>
13+
<coverage processUncoveredFiles="true">
14+
<include>
15+
<file>Function.HTML-Build-Attributes.php</file>
16+
</include>
17+
</coverage>
18+
</phpunit>

tests/Test.php

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?php
2+
3+
/**
4+
* @param mixed $input The variable to be passed to the function.
5+
*/
6+
it('returns an empty string', function ($input) {
7+
$output = html_build_attributes($input);
8+
9+
expect($output)->toBeString()->toBeEmpty();
10+
})->with([
11+
'scalar',
12+
(new stdClass()),
13+
(new ArrayIterator()),
14+
[
15+
[
16+
'' => 'empty',
17+
' ' => 'whitespace',
18+
'null' => null,
19+
'false' => false,
20+
'array' => [],
21+
],
22+
],
23+
]);
24+
25+
$inputBuildsExpectedHtml = function ($html, $input) : void {
26+
$output = html_build_attributes($input);
27+
28+
expect($output)->toBe($html);
29+
};
30+
31+
/**
32+
* @param string $html The expected return value.
33+
* @param mixed $input The variable to be passed to the function.
34+
*/
35+
it('generates HTML attributes', $inputBuildsExpectedHtml)->with([
36+
[
37+
'id="foobar" required class="foo baz 0 qux"',
38+
[
39+
'id' => function () {
40+
return 'foobar';
41+
},
42+
'required' => true,
43+
'class' => [ 'foo', null, '', ' ', ' baz ', 0, true, false, 'qux' ],
44+
],
45+
],
46+
[
47+
'data-arr="one two three"',
48+
[
49+
'data-arr' => new class {
50+
public function toArray() : array
51+
{
52+
return [ 'one', 'two', 'three' ];
53+
}
54+
},
55+
],
56+
],
57+
[
58+
'data-str="bazqux"',
59+
[
60+
'data-str' => new class {
61+
public function __toString() : string
62+
{
63+
return 'bazqux';
64+
}
65+
},
66+
],
67+
],
68+
[
69+
'data-obj="{&quot;a&quot;:1,&quot;b&quot;:2,&quot;c&quot;:3}"',
70+
[
71+
'data-obj' => new class {
72+
public $a = 1;
73+
public $b = 2;
74+
public $c = 3;
75+
},
76+
],
77+
],
78+
]);

0 commit comments

Comments
 (0)