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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
<?php
namespace Dompdf\Tests;
use Dompdf\Helpers;
use Dompdf\Tests\TestCase;
class HelpersTest extends TestCase
{
public static function uriEncodingProvider(): array
{
return [
["https://example.com/test.html", "https://example.com/test.html"],
["https://example.com?a[]=1&b%5B%5D=1&c=d+e&f=g h&i=j%2Bk%26l", "https://example.com?a%5B%5D=1&b%5B%5D=1&c=d+e&f=g%20h&i=j%2Bk%26l"],
];
}
/**
* @dataProvider uriEncodingProvider
*/
#[\PHPUnit\Framework\Attributes\DataProvider('uriEncodingProvider')]
public function testUriEncoding(string $uri, string $expected): void
{
$encodedUri = Helpers::encodeURI($uri);
$this->assertEquals($expected, $encodedUri);
}
public function testParseDataUriBase64Image(): void
{
$imageParts = [
'mime' => 'data:image/png;base64,',
'data' => 'iVBORw0KGgoAAAANSUhEUgAAAAUA
AAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO
9TXL0Y4OHwAAAABJRU5ErkJggg=='
];
$result = Helpers::parse_data_uri(implode('', $imageParts));
$this->assertEquals(
$result['data'],
base64_decode($imageParts['data'])
);
}
public static function dec2RomanProvider(): array
{
return [
[-5, "-5"],
[0, "0"],
[1, "i"],
[5, "v"],
[3999, "mmmcmxcix"],
[4000, "4000"],
[50000, "50000"],
];
}
/**
* @dataProvider dec2RomanProvider
*/
#[\PHPUnit\Framework\Attributes\DataProvider('dec2RomanProvider')]
public function testDec2Roman($number, string $expected): void
{
$roman = Helpers::dec2roman($number);
$this->assertSame($expected, $roman);
}
public static function lengthEqualProvider(): array
{
// Adapted from
// https://floating-point-gui.de/errors/NearlyEqualsTest.java
return [
[0.0, 0.3 - 0.2 - 0.1, true],
[0.3, 0.1 + 0.1 + 0.1, true],
// Large numbers
[100000000.0, 100000001.0, true],
[100000.0001, 100000.0002, true],
[100000.01, 100000.02, false],
[1000.0001, 1000.0002, false],
// Numbers around 1
[1.000000001, 1.000000002, true],
[1.0000001, 1.0000002, false],
// Numbers between 1 and 0
[0.00000010000001, 0.00000010000002, true],
[0.00000000001001, 0.00000000001002, true],
[0.000000100001, 0.000000100002, false],
// Close to zero
[0.0, 0.0, true],
[0.0, -0.0, true],
[1e-38, 1e-37, true],
[1e-38, -1e-37, true],
[1e-38, 0.0, true],
[1e-13, 1e-38, true],
[1e-13, 0.0, true],
[1e-13, -1e-13, true],
[1e-12, -1e-12, false],
[1e-12, 0.0, false],
// Very large numbers
[1e38, 1e38, true],
[1e38, 1.000001e38, false],
// Infinity and NaN
[INF, INF, true],
[INF, -INF, false],
[INF, 1e38, false],
[NAN, NAN, false],
[NAN, 0.0, false],
];
}
/**
* @dataProvider lengthEqualProvider
*/
#[\PHPUnit\Framework\Attributes\DataProvider('lengthEqualProvider')]
public function testLengthEqual(float $a, float $b, bool $expected): void
{
$this->assertSame($expected, Helpers::lengthEqual($a, $b));
$this->assertSame($expected, Helpers::lengthEqual($b, $a));
$this->assertSame($expected, Helpers::lengthEqual(-$a, -$b));
$this->assertSame($expected, Helpers::lengthEqual(-$b, -$a));
}
public function testCustomProtocolParsing(): void
{
$uri = "mock://path/to/resource";
$this->assertSame($uri, Helpers::build_url("", "", "", $uri));
}
}
|