Fix validateAndSetPreviewPicture

Which wasn't covered by a test!
This commit is contained in:
Jeremy Benoist 2017-06-30 17:04:40 +02:00
parent a05b61159e
commit d0ec2ddd23
No known key found for this signature in database
GPG Key ID: BCA73962457ACC3C
2 changed files with 36 additions and 4 deletions

View File

@ -127,10 +127,7 @@ class ContentProxy
// if content is an image, define it as a preview too
if (!empty($content['content_type']) && in_array($this->mimeGuesser->guess($content['content_type']), ['jpeg', 'jpg', 'gif', 'png'], true)) {
$this->validateAndSetPreviewPicture(
$entry,
$content['url']
);
$this->updatePreviewPicture($entry, $content['url']);
}
if (!empty($content['content_type'])) {

View File

@ -495,6 +495,41 @@ class ContentProxyTest extends \PHPUnit_Framework_TestCase
$this->assertSame('1.1.1.1', $entry->getDomainName());
}
public function testWithImageAsContent()
{
$tagger = $this->getTaggerMock();
$tagger->expects($this->once())
->method('tag');
$graby = $this->getMockBuilder('Graby\Graby')
->setMethods(['fetchContent'])
->disableOriginalConstructor()
->getMock();
$graby->expects($this->any())
->method('fetchContent')
->willReturn([
'html' => '<p><img src="http://1.1.1.1/image.jpg" /></p>',
'title' => 'this is my title',
'url' => 'http://1.1.1.1/image.jpg',
'content_type' => 'image/jpeg',
'status' => '200',
'open_graph' => [],
]);
$proxy = new ContentProxy($graby, $tagger, $this->getValidator(), $this->getLogger(), $this->fetchingErrorMessage);
$entry = new Entry(new User());
$proxy->updateEntry($entry, 'http://0.0.0.0');
$this->assertEquals('http://1.1.1.1/image.jpg', $entry->getUrl());
$this->assertEquals('this is my title', $entry->getTitle());
$this->assertContains('http://1.1.1.1/image.jpg', $entry->getContent());
$this->assertSame('http://1.1.1.1/image.jpg', $entry->getPreviewPicture());
$this->assertEquals('image/jpeg', $entry->getMimetype());
$this->assertEquals('200', $entry->getHttpStatus());
$this->assertEquals('1.1.1.1', $entry->getDomainName());
}
private function getTaggerMock()
{
return $this->getMockBuilder(RuleBasedTagger::class)