Skip to content

Commit

Permalink
custom gigya DateTimeFormat
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Bragg committed Oct 5, 2015
1 parent b3ffff4 commit 19a4e2c
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 3 deletions.
10 changes: 8 additions & 2 deletions src/Response/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@

namespace Graze\Gigya\Response;

use DateTime;
use DateTimeImmutable;
use DateTimeInterface;
use DateTimeZone;
use GuzzleHttp\Message\ResponseInterface as GuzzleResponseInterface;
use Illuminate\Support\Collection;

// use Psr\Http\Message\ResponseInterface; Guzzle v6

class Response implements ResponseInterface
{
const DATE_TIME_FORMAT = 'Y-m-d\TH:i:s.uP';

/**
* @var array
*/
Expand Down Expand Up @@ -70,7 +72,11 @@ public function __construct(GuzzleResponseInterface $response)
$this->statusCode = (int)$this->popField('statusCode');
$this->statusReason = $this->popField('statusReason');
$this->callId = $this->popField('callId');
$this->time = DateTimeImmutable::createFromFormat(DateTime::ATOM, $this->popField('time'));
$this->time = DateTimeImmutable::createFromFormat(
static::DATE_TIME_FORMAT,
$this->popField('time'),
new DateTimeZone('UTC')
);
}

/**
Expand Down
11 changes: 10 additions & 1 deletion tests/unit/Response/ResponseFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use DateTimeImmutable;
use DateTimeZone;
use Graze\Gigya\Exceptions\UnknownResponseException;
use Graze\Gigya\Response\Response;
use Graze\Gigya\Response\ResponseCollectionInterface;
use Graze\Gigya\Response\ResponseFactory;
use Graze\Gigya\Test\TestCase;
Expand Down Expand Up @@ -57,7 +58,15 @@ public function testAccountModel()
static::assertEquals(0, $gigyaResponse->getErrorCode());
static::assertEquals("OK", $gigyaResponse->getStatusReason());
static::assertEquals("e6f891ac17f24810bee6eb533524a152", $gigyaResponse->getCallId());
static::assertEquals(DateTimeImmutable::createFromFormat(DateTime::ATOM, "2015-03-22T11:42:25.943Z"), $gigyaResponse->getTime());
static::assertInstanceOf('DateTimeInterface', $gigyaResponse->getTime());
static::assertEquals(
DateTimeImmutable::createFromFormat(
Response::DATE_TIME_FORMAT,
"2015-03-22T11:42:25.943Z",
new DateTimeZone('UTC')
),
$gigyaResponse->getTime()
);
$data = $gigyaResponse->getData();
static::assertEquals("_gid_30A3XVJciH95WEEnoRmfZS7ee3MY+lUAtpVxvUWNseU=", $data->get('UID'));
static::assertSame($response, $gigyaResponse->getOriginalResponse());
Expand Down
49 changes: 49 additions & 0 deletions tests/unit/Response/ResponseTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?php

namespace Graze\Gigya\Test\Unit\Response;

use DateTime;
use DateTimeZone;
use Graze\Gigya\Response\Response;
use Graze\Gigya\Test\TestCase;

class ResponseTest extends TestCase
{
public function testDateFormat()
{
$time = DateTime::createFromFormat(
Response::DATE_TIME_FORMAT,
'2015-03-22T11:42:25.943Z',
new DateTimeZone('UTC')
);

static::assertInstanceOf('DateTimeInterface', $time);
static::assertEquals("2015", $time->format('Y'));
static::assertEquals("03", $time->format('m'));
static::assertEquals("22", $time->format('d'));
static::assertEquals("11", $time->format('H'));
static::assertEquals("42", $time->format('i'));
static::assertEquals("25", $time->format('s'));
static::assertEquals("943000", $time->format('u'));
static::assertEquals("Z", $time->getTimezone()->getName());
}

public function testOtherTimeZoneFormat()
{
$time = DateTime::createFromFormat(
Response::DATE_TIME_FORMAT,
'2015-03-22T11:42:25.943+02:00',
new DateTimeZone('UTC')
);

static::assertInstanceOf('DateTimeInterface', $time);
static::assertEquals("2015", $time->format('Y'));
static::assertEquals("03", $time->format('m'));
static::assertEquals("22", $time->format('d'));
static::assertEquals("11", $time->format('H'));
static::assertEquals("42", $time->format('i'));
static::assertEquals("25", $time->format('s'));
static::assertEquals("943000", $time->format('u'));
static::assertEquals("+02:00", $time->getTimezone()->getName());
}
}

0 comments on commit 19a4e2c

Please sign in to comment.