Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implemented safe versions of the classes DateTime and DateTimeImmutable #138

Merged
merged 4 commits into from
Sep 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ $ cd generator
$ php ./safe.php generate
```

## Special cases

In some cases, automatic generation is too difficult to execute and the function has to be written manually.
This should however only be done exceptionally in order to keep the project easy to maintain.
The most important examples are all the functions of the classes `DateTime` and `DateTimeImmutable`, since the entire classes have to be overloaded manually.
All custom objects must be located in lib/ and custom functions must be in lib/special_cases.php.

### Submitting a PR

The continuous integration hooks will regenerate all the functions and check that the result is exactly what has been
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ $content = file_get_contents('foobar.json');
$foobar = json_decode($content);
```

All PHP functions that can return `false` on error are part of Safe.
In addition, Safe also provide 2 'Safe' classes: `Safe\DateTime` and `Safe\DateTimeImmutable` whose methods will throw exceptions instead of returning false.

## PHPStan integration

> Yeah... but I must explicitly think about importing the "safe" variant of the function, for each and every file of my application.
Expand Down
10 changes: 6 additions & 4 deletions generated/apcu.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,15 @@ function apcu_cas(string $key, int $old, int $new): void
* @param int $step The step, or value to decrease.
* @param bool $success Optionally pass the success or fail boolean value to
* this referenced variable.
* @param int $ttl TTL to use if the operation inserts a new value (rather than decrementing an existing one).
* @return int Returns the current value of key's value on success
* @throws ApcuException
*
*/
function apcu_dec(string $key, int $step = 1, ?bool &$success = null): int
function apcu_dec(string $key, int $step = 1, ?bool &$success = null, int $ttl = 0): int
{
error_clear_last();
$result = \apcu_dec($key, $step, $success);
$result = \apcu_dec($key, $step, $success, $ttl);
if ($result === false) {
throw ApcuException::createFromPhpError();
}
Expand Down Expand Up @@ -96,14 +97,15 @@ function apcu_delete($key): void
* @param int $step The step, or value to increase.
* @param bool $success Optionally pass the success or fail boolean value to
* this referenced variable.
* @param int $ttl TTL to use if the operation inserts a new value (rather than incrementing an existing one).
* @return int Returns the current value of key's value on success
* @throws ApcuException
*
*/
function apcu_inc(string $key, int $step = 1, ?bool &$success = null): int
function apcu_inc(string $key, int $step = 1, ?bool &$success = null, int $ttl = 0): int
{
error_clear_last();
$result = \apcu_inc($key, $step, $success);
$result = \apcu_inc($key, $step, $success, $ttl);
if ($result === false) {
throw ApcuException::createFromPhpError();
}
Expand Down
146 changes: 146 additions & 0 deletions generator/tests/DateTimeImmutableTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
<?php


namespace Safe;


use PHPUnit\Framework\TestCase;
use Safe\Exceptions\DatetimeException;

class DateTimeImmutableTest extends TestCase
{
protected function setUp()
{
require_once __DIR__ . '/../../lib/Exceptions/SafeExceptionInterface.php';
require_once __DIR__ . '/../../lib/Exceptions/AbstractSafeException.php';
require_once __DIR__ . '/../../generated/Exceptions/DatetimeException.php';
require_once __DIR__ . '/../../lib/DateTimeImmutable.php';
}

public function testCreateFromFormatCrashOnError(): void
{
$this->expectException(DatetimeException::class);
$datetime = DateTimeImmutable::createFromFormat('lol', 'super');
}

public function testConstructorPreserveTimeAndTimezone(): void
{
$timezone = new \DateTimeZone('Pacific/Chatham');
$datetime = new DateTimeImmutable('now', $timezone);
$this->assertInstanceOf(DateTimeImmutable::class, $datetime);
$this->assertEquals($timezone, $datetime->getTimezone());
}

public function testCreateFromFormatPreserveTimeAndTimezone(): void
{
$timezone = new \DateTimeZone('Pacific/Chatham');
$datetime = DateTimeImmutable::createFromFormat('d-m-Y', '20-03-2006', $timezone);
$this->assertInstanceOf(DateTimeImmutable::class, $datetime);
$this->assertEquals('20-03-2006', $datetime->format('d-m-Y'));
$this->assertEquals($timezone, $datetime->getTimezone());
}

public function testSafeDatetimeImmutableIsImmutable(): void
{
$datetime1 = new DateTimeImmutable();
$datetime2 = $datetime1->add(new \DateInterval('P1W'));

$this->assertNotSame($datetime1, $datetime2);
}

public function testSetDate(): void
{
$datetime = new \DateTimeImmutable();
$safeDatetime = new DateTimeImmutable();
$datetime = $datetime->setDate(2017, 4, 6);
$safeDatetime = $safeDatetime->setDate(2017, 4, 6);
$this->assertInstanceOf(DateTimeImmutable::class, $safeDatetime);
$this->assertEquals($datetime->format('Y-m-d'), $safeDatetime->format('Y-m-d'));
}

public function testSetIsoDate(): void
{
$datetime = new \DateTimeImmutable();
$safeDatetime = new DateTimeImmutable();
$datetime = $datetime->setISODate(2017, 4, 6);
$safeDatetime = $safeDatetime->setISODate(2017, 4, 6);
$this->assertInstanceOf(DateTimeImmutable::class, $safeDatetime);
$this->assertEquals($datetime->format('Y-m-d'), $safeDatetime->format('Y-m-d'));
}

public function testModify(): void
{
$datetime = new \DateTimeImmutable();
$datetime = $datetime->setDate(2017, 4, 6);
$datetime = $datetime->modify('+1 day');
$safeDatime = new DateTimeImmutable();
$safeDatime = $safeDatime->setDate(2017, 4, 6);
$safeDatime = $safeDatime->modify('+1 day');
$this->assertInstanceOf(DateTimeImmutable::class, $safeDatime);
$this->assertEquals($datetime->format('j-n-Y'), $safeDatime->format('j-n-Y'));
}

public function testSetTimestamp(): void
{
$datetime = new \DateTimeImmutable('2000-01-01');
$safeDatime = new DateTimeImmutable('2000-01-01');
$datetime = $datetime = $datetime->setTimestamp(12);
$safeDatime = $safeDatime->setTimestamp(12);

$this->assertEquals($datetime->getTimestamp(), $safeDatime->getTimestamp());
}

public function testSetTimezone(): void
{
$timezone = new \DateTimeZone('Pacific/Chatham');
$datetime = new \DateTimeImmutable('2000-01-01');
$safeDatime = new DateTimeImmutable('2000-01-01');
$datetime = $datetime->setTimezone($timezone);
$safeDatime = $safeDatime->setTimezone($timezone);

$this->assertEquals($datetime->getTimezone(), $safeDatime->getTimezone());
}

public function testSetTime(): void
{
$datetime = new \DateTimeImmutable('2000-01-01');
$safeDatime = new DateTimeImmutable('2000-01-01');
$datetime = $datetime->setTime(2, 3, 1, 5);
$safeDatime = $safeDatime->setTime(2, 3, 1, 5);

$this->assertEquals($datetime->format('H-i-s-u'), $safeDatime->format('H-i-s-u'));
}

public function testAdd(): void
{
$interval = new \DateInterval('P1M');
$datetime = new \DateTimeImmutable('2000-01-01');
$safeDatime = new DateTimeImmutable('2000-01-01');
$datetime = $datetime->add($interval);
$safeDatime = $safeDatime->add($interval);

$this->assertEquals($datetime->getTimestamp(), $safeDatime->getTimestamp());
}

public function testSub(): void
{
$interval = new \DateInterval('P1M');
$datetime = new \DateTimeImmutable('2000-01-01');
$safeDatime = new DateTimeImmutable('2000-01-01');
$datetime = $datetime->sub($interval);
$safeDatime = $safeDatime->sub($interval);

$this->assertEquals($datetime->getTimestamp(), $safeDatime->getTimestamp());
}

public function testSerialize()
{
$timezone = new \DateTimeZone('Pacific/Chatham');
$safeDatetime = DateTimeImmutable::createFromFormat('d-m-Y', '20-03-2006', $timezone);
/** @var DateTimeImmutable $newDatetime */
$newDatetime = unserialize(serialize($safeDatetime));

$this->assertEquals($safeDatetime->getTimestamp(), $newDatetime->getTimestamp());
$this->assertEquals($safeDatetime->getTimezone(), $newDatetime->getTimezone());
}
}
55 changes: 55 additions & 0 deletions generator/tests/DateTimeTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php


namespace Safe;


use PHPUnit\Framework\TestCase;
use Safe\Exceptions\DatetimeException;

class DateTimeTest extends TestCase
{
protected function setUp()
{
require_once __DIR__ . '/../../lib/Exceptions/SafeExceptionInterface.php';
require_once __DIR__ . '/../../lib/Exceptions/AbstractSafeException.php';
require_once __DIR__ . '/../../generated/Exceptions/DatetimeException.php';
require_once __DIR__ . '/../../lib/DateTime.php';
}

public function testSafeDatetimeCrashOnError(): void
{
$this->expectException(DatetimeException::class);
$datetime = DateTime::createFromFormat('lol', 'super');
}

public function testCreateFromFormatPreserveTimeAndTimezone(): void
{
$timezone = new \DateTimeZone('Pacific/Chatham');
$datetime = DateTime::createFromFormat('d-m-Y', '20-03-2006', $timezone);
$this->assertInstanceOf(DateTime::class, $datetime);
$this->assertEquals('20-03-2006', $datetime->format('d-m-Y'));
$this->assertEquals($timezone, $datetime->getTimezone());
}

public function testSetDate(): void
{
$datetime = new DateTime();
$datetime = $datetime->setDate(2017, 4, 6);
$this->assertInstanceOf(DateTime::class, $datetime);
$this->assertEquals(2017, $datetime->format('Y'));
$this->assertEquals(4, $datetime->format('n'));
$this->assertEquals(6, $datetime->format('j'));

//todo: test an error case
}

public function testModify(): void
{
$datetime = new DateTime();
$datetime = $datetime->setDate(2017, 4, 6);
$datetime = $datetime->modify('+1 day');
$this->assertInstanceOf(DateTime::class, $datetime);
$this->assertEquals('7-4-2017', $datetime->format('j-n-Y'));
}
}
1 change: 1 addition & 0 deletions generator/tests/SpecialCasesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

class SpecialCasesTest extends TestCase
{

public function testPregReplace()
{
require_once __DIR__.'/../../lib/special_cases.php';
Expand Down
77 changes: 77 additions & 0 deletions lib/DateTime.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?php

namespace Safe;

use DateInterval;
use DateTimeInterface;
use DateTimeZone;
use Safe\Exceptions\DatetimeException;

/** this class implements a safe version of the Datetime class */
class DateTime extends \DateTime
{
//switch from regular datetime to safe version
private static function createFromRegular(\DateTime $datetime): self
{
return new self($datetime->format('Y-m-d H:i:s'), $datetime->getTimezone());
}

/**
* @param string $format
* @param string $time
* @param DateTimeZone|null $timezone
*/
public static function createFromFormat($format, $time, $timezone = null): self
{
$datetime = parent::createFromFormat($format, $time, $timezone);
if ($datetime === false) {
throw DatetimeException::createFromPhpError();
}
return self::createFromRegular($datetime);
}

/**
* @param DateTimeInterface $datetime2 The date to compare to.
* @param boolean $absolute [optional] Whether to return absolute difference.
* @return DateInterval The DateInterval object representing the difference between the two dates.
*/
public function diff($datetime2, $absolute = false): DateInterval
{
/** @var \DateInterval|false $result */
$result = parent::diff($datetime2, $absolute);
if ($result === false) {
throw DatetimeException::createFromPhpError();
}
return $result;
}

/**
* @param string $modify A date/time string. Valid formats are explained in <a href="https://secure.php.net/manual/en/datetime.formats.php">Date and Time Formats</a>.
* @return DateTime Returns the DateTime object for method chaining.
*/
public function modify($modify): self
{
/** @var DateTime|false $result */
$result = parent::modify($modify);
if ($result === false) {
throw DatetimeException::createFromPhpError();
}
return $result;
}

/**
* @param int $year
* @param int $month
* @param int $day
* @return DateTime
*/
public function setDate($year, $month, $day): self
{
/** @var DateTime|false $result */
$result = parent::setDate($year, $month, $day);
if ($result === false) {
throw DatetimeException::createFromPhpError();
}
return $result;
}
}
Loading