2016-08-09 11:54:42 +02:00
|
|
|
<?php
|
|
|
|
|
2020-10-10 12:08:58 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-09 11:54:42 +02:00
|
|
|
use PrivateBin\Filter;
|
|
|
|
|
2020-10-10 12:08:58 +02:00
|
|
|
class FilterTest extends TestCase
|
2016-08-09 11:54:42 +02:00
|
|
|
{
|
|
|
|
public function testFilterMakesTimesHumanlyReadable()
|
|
|
|
{
|
|
|
|
$this->assertEquals('5 minutes', Filter::formatHumanReadableTime('5min'));
|
|
|
|
$this->assertEquals('90 seconds', Filter::formatHumanReadableTime('90sec'));
|
|
|
|
$this->assertEquals('1 week', Filter::formatHumanReadableTime('1week'));
|
|
|
|
$this->assertEquals('6 months', Filter::formatHumanReadableTime('6months'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFilterFailTimesHumanlyReadable()
|
|
|
|
{
|
2020-10-11 10:31:24 +02:00
|
|
|
$this->expectException(Exception::class);
|
|
|
|
$this->expectExceptionCode(30);
|
2016-08-09 11:54:42 +02:00
|
|
|
Filter::formatHumanReadableTime('five_minutes');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFilterMakesSizesHumanlyReadable()
|
|
|
|
{
|
|
|
|
$this->assertEquals('1 B', Filter::formatHumanReadableSize(1));
|
|
|
|
$this->assertEquals('1 000 B', Filter::formatHumanReadableSize(1000));
|
|
|
|
$this->assertEquals('1.00 KiB', Filter::formatHumanReadableSize(1024));
|
|
|
|
$this->assertEquals('1.21 KiB', Filter::formatHumanReadableSize(1234));
|
|
|
|
$exponent = 1024;
|
|
|
|
$this->assertEquals('1 000.00 KiB', Filter::formatHumanReadableSize(1000 * $exponent));
|
|
|
|
$this->assertEquals('1.00 MiB', Filter::formatHumanReadableSize(1024 * $exponent));
|
|
|
|
$this->assertEquals('1.21 MiB', Filter::formatHumanReadableSize(1234 * $exponent));
|
|
|
|
$exponent *= 1024;
|
|
|
|
$this->assertEquals('1 000.00 MiB', Filter::formatHumanReadableSize(1000 * $exponent));
|
|
|
|
$this->assertEquals('1.00 GiB', Filter::formatHumanReadableSize(1024 * $exponent));
|
|
|
|
$this->assertEquals('1.21 GiB', Filter::formatHumanReadableSize(1234 * $exponent));
|
|
|
|
$exponent *= 1024;
|
|
|
|
$this->assertEquals('1 000.00 GiB', Filter::formatHumanReadableSize(1000 * $exponent));
|
|
|
|
$this->assertEquals('1.00 TiB', Filter::formatHumanReadableSize(1024 * $exponent));
|
|
|
|
$this->assertEquals('1.21 TiB', Filter::formatHumanReadableSize(1234 * $exponent));
|
|
|
|
$exponent *= 1024;
|
|
|
|
$this->assertEquals('1 000.00 TiB', Filter::formatHumanReadableSize(1000 * $exponent));
|
|
|
|
$this->assertEquals('1.00 PiB', Filter::formatHumanReadableSize(1024 * $exponent));
|
|
|
|
$this->assertEquals('1.21 PiB', Filter::formatHumanReadableSize(1234 * $exponent));
|
|
|
|
$exponent *= 1024;
|
|
|
|
$this->assertEquals('1 000.00 PiB', Filter::formatHumanReadableSize(1000 * $exponent));
|
|
|
|
$this->assertEquals('1.00 EiB', Filter::formatHumanReadableSize(1024 * $exponent));
|
|
|
|
$this->assertEquals('1.21 EiB', Filter::formatHumanReadableSize(1234 * $exponent));
|
|
|
|
$exponent *= 1024;
|
|
|
|
$this->assertEquals('1 000.00 EiB', Filter::formatHumanReadableSize(1000 * $exponent));
|
|
|
|
$this->assertEquals('1.00 ZiB', Filter::formatHumanReadableSize(1024 * $exponent));
|
|
|
|
$this->assertEquals('1.21 ZiB', Filter::formatHumanReadableSize(1234 * $exponent));
|
|
|
|
$exponent *= 1024;
|
|
|
|
$this->assertEquals('1 000.00 ZiB', Filter::formatHumanReadableSize(1000 * $exponent));
|
|
|
|
$this->assertEquals('1.00 YiB', Filter::formatHumanReadableSize(1024 * $exponent));
|
|
|
|
$this->assertEquals('1.21 YiB', Filter::formatHumanReadableSize(1234 * $exponent));
|
|
|
|
}
|
|
|
|
}
|