TimestampTest.php in Feeds 8.3
File
tests/src/Unit/Feeds/Target/TimestampTest.php
View source
<?php
namespace Drupal\Tests\feeds\Unit\Feeds\Target;
use Drupal\feeds\Feeds\Target\Timestamp;
class TimestampTest extends FieldTargetWithContainerTestBase {
protected function getTargetClass() {
return Timestamp::class;
}
public function testPrepareValue() {
$method = $this
->getMethod(Timestamp::class, 'prepareTarget')
->getClosure();
$target_definition = $method($this
->getMockFieldDefinition());
$configuration = [
'feed_type' => $this
->createMock('Drupal\\feeds\\FeedTypeInterface'),
'target_definition' => $target_definition,
];
$target = new Timestamp($configuration, 'timestamp', []);
$method = $this
->getProtectedClosure($target, 'prepareValue');
$values = [
'value' => 1411606273,
];
$method(0, $values);
$this
->assertSame($values['value'], 1411606273);
$values = [
'value' => 2000,
];
$method(0, $values);
$this
->assertSame($values['value'], strtotime('2000-01-01T00:00:00Z'));
$values = [
'value' => 'abc',
];
$method(0, $values);
$this
->assertSame($values['value'], '');
}
}