2014-05-13 00:01:28 +02:00
|
|
|
<?php
|
2014-05-20 19:20:07 +02:00
|
|
|
class EditPostThumbnailJobTest extends AbstractTest
|
2014-05-13 00:01:28 +02:00
|
|
|
{
|
|
|
|
public function testFile()
|
|
|
|
{
|
2014-05-20 19:20:07 +02:00
|
|
|
$this->grantAccess('editPostThumbnail');
|
2014-05-13 21:08:07 +02:00
|
|
|
$post = $this->postMocker->mockSingle();
|
2014-05-13 00:01:28 +02:00
|
|
|
|
2014-05-20 19:20:07 +02:00
|
|
|
$this->assert->isFalse($post->hasCustomThumbnail());
|
2014-05-13 00:01:28 +02:00
|
|
|
$post = $this->assert->doesNotThrow(function() use ($post)
|
|
|
|
{
|
|
|
|
return Api::run(
|
2014-05-20 19:20:07 +02:00
|
|
|
new EditPostThumbnailJob(),
|
2014-05-13 00:01:28 +02:00
|
|
|
[
|
|
|
|
JobArgs::ARG_POST_ID => $post->getId(),
|
2014-05-20 19:20:07 +02:00
|
|
|
JobArgs::ARG_NEW_THUMBNAIL_CONTENT =>
|
2014-05-13 21:08:07 +02:00
|
|
|
new ApiFileInput($this->testSupport->getPath('thumb.jpg'), 'test.jpg'),
|
2014-05-13 00:01:28 +02:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
2014-05-20 19:20:07 +02:00
|
|
|
$this->assert->isTrue($post->hasCustomThumbnail());
|
2014-06-01 13:51:29 +02:00
|
|
|
$img = imagecreatefromjpeg($post->getThumbnailPath());
|
2014-05-14 23:44:48 +02:00
|
|
|
$this->assert->areEqual(150, imagesx($img));
|
|
|
|
$this->assert->areEqual(150, imagesy($img));
|
|
|
|
imagedestroy($img);
|
2014-05-13 00:01:28 +02:00
|
|
|
}
|
|
|
|
|
2014-05-14 23:44:48 +02:00
|
|
|
public function testFileDifferentDimensions()
|
2014-05-13 00:01:28 +02:00
|
|
|
{
|
2014-05-20 19:20:07 +02:00
|
|
|
$this->grantAccess('editPostThumbnail');
|
2014-05-13 21:08:07 +02:00
|
|
|
$post = $this->postMocker->mockSingle();
|
2014-05-13 00:01:28 +02:00
|
|
|
|
2014-05-20 19:20:07 +02:00
|
|
|
$this->assert->isFalse($post->hasCustomThumbnail());
|
2014-05-14 23:44:48 +02:00
|
|
|
$post = $this->assert->doesNotThrow(function() use ($post)
|
2014-05-13 00:01:28 +02:00
|
|
|
{
|
|
|
|
return Api::run(
|
2014-05-20 19:20:07 +02:00
|
|
|
new EditPostThumbnailJob(),
|
2014-05-13 00:01:28 +02:00
|
|
|
[
|
|
|
|
JobArgs::ARG_POST_ID => $post->getId(),
|
2014-05-20 19:20:07 +02:00
|
|
|
JobArgs::ARG_NEW_THUMBNAIL_CONTENT =>
|
2014-05-13 21:08:07 +02:00
|
|
|
new ApiFileInput($this->testSupport->getPath('image.jpg'), 'test.jpg'),
|
2014-05-13 00:01:28 +02:00
|
|
|
]);
|
2014-05-14 23:44:48 +02:00
|
|
|
});
|
2014-05-13 00:01:28 +02:00
|
|
|
|
2014-05-20 19:20:07 +02:00
|
|
|
$this->assert->isTrue($post->hasCustomThumbnail());
|
2014-06-01 13:51:29 +02:00
|
|
|
$img = imagecreatefromjpeg($post->getThumbnailPath());
|
2014-05-14 23:44:48 +02:00
|
|
|
$this->assert->areEqual(150, imagesx($img));
|
|
|
|
$this->assert->areEqual(150, imagesy($img));
|
|
|
|
imagedestroy($img);
|
2014-05-13 00:01:28 +02:00
|
|
|
}
|
|
|
|
}
|