2015-09-10 19:57:25 +00:00
< ? php
2016-12-03 14:44:34 +00:00
namespace Tests\Wallabag\CoreBundle\Helper ;
2015-09-10 19:57:25 +00:00
2015-10-31 15:38:49 +00:00
use Psr\Log\NullLogger ;
2015-09-10 19:57:25 +00:00
use Wallabag\CoreBundle\Helper\ContentProxy ;
2016-02-19 13:22:20 +00:00
use Wallabag\CoreBundle\Entity\Entry ;
use Wallabag\CoreBundle\Entity\Tag ;
2015-12-22 09:16:34 +00:00
use Wallabag\UserBundle\Entity\User ;
2015-09-10 19:57:25 +00:00
2016-12-03 14:44:34 +00:00
class ContentProxyTest extends \PHPUnit_Framework_TestCase
2015-09-10 19:57:25 +00:00
{
2016-12-03 14:44:34 +00:00
private $fetchingErrorMessage = 'wallabag can\'t retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/master/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>.' ;
2016-03-27 18:35:56 +00:00
public function testWithBadUrl ()
{
$tagger = $this -> getTaggerMock ();
$tagger -> expects ( $this -> once ())
-> method ( 'tag' );
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
2016-04-12 09:36:01 +00:00
-> setMethods ([ 'fetchContent' ])
2016-03-27 18:35:56 +00:00
-> disableOriginalConstructor ()
-> getMock ();
$graby -> expects ( $this -> any ())
-> method ( 'fetchContent' )
2016-04-12 09:36:01 +00:00
-> willReturn ([
2016-03-27 18:35:56 +00:00
'html' => false ,
'title' => '' ,
'url' => '' ,
'content_type' => '' ,
'language' => '' ,
2016-04-12 09:36:01 +00:00
]);
2016-03-27 18:35:56 +00:00
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $tagger , $this -> getTagRepositoryMock (), $this -> getLogger (), $this -> fetchingErrorMessage );
2016-03-27 18:35:56 +00:00
$entry = $proxy -> updateEntry ( new Entry ( new User ()), 'http://user@:80' );
$this -> assertEquals ( 'http://user@:80' , $entry -> getUrl ());
$this -> assertEmpty ( $entry -> getTitle ());
2016-12-03 04:59:18 +00:00
$this -> assertEquals ( $this -> fetchingErrorMessage , $entry -> getContent ());
2016-03-27 18:35:56 +00:00
$this -> assertEmpty ( $entry -> getPreviewPicture ());
$this -> assertEmpty ( $entry -> getMimetype ());
$this -> assertEmpty ( $entry -> getLanguage ());
$this -> assertEquals ( 0.0 , $entry -> getReadingTime ());
$this -> assertEquals ( false , $entry -> getDomainName ());
}
2015-09-10 19:57:25 +00:00
public function testWithEmptyContent ()
{
2015-10-11 20:27:47 +00:00
$tagger = $this -> getTaggerMock ();
$tagger -> expects ( $this -> once ())
-> method ( 'tag' );
2015-09-10 19:57:25 +00:00
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
2016-04-12 09:36:01 +00:00
-> setMethods ([ 'fetchContent' ])
2015-09-10 19:57:25 +00:00
-> disableOriginalConstructor ()
-> getMock ();
$graby -> expects ( $this -> any ())
-> method ( 'fetchContent' )
2016-04-12 09:36:01 +00:00
-> willReturn ([
2015-09-20 20:37:27 +00:00
'html' => false ,
'title' => '' ,
'url' => '' ,
'content_type' => '' ,
'language' => '' ,
2016-04-12 09:36:01 +00:00
]);
2015-09-10 19:57:25 +00:00
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $tagger , $this -> getTagRepositoryMock (), $this -> getLogger (), $this -> fetchingErrorMessage );
2015-09-10 19:57:25 +00:00
$entry = $proxy -> updateEntry ( new Entry ( new User ()), 'http://0.0.0.0' );
$this -> assertEquals ( 'http://0.0.0.0' , $entry -> getUrl ());
$this -> assertEmpty ( $entry -> getTitle ());
2016-12-03 04:59:18 +00:00
$this -> assertEquals ( $this -> fetchingErrorMessage , $entry -> getContent ());
2015-09-10 19:57:25 +00:00
$this -> assertEmpty ( $entry -> getPreviewPicture ());
$this -> assertEmpty ( $entry -> getMimetype ());
2015-09-20 20:37:27 +00:00
$this -> assertEmpty ( $entry -> getLanguage ());
2015-09-28 17:35:33 +00:00
$this -> assertEquals ( 0.0 , $entry -> getReadingTime ());
$this -> assertEquals ( '0.0.0.0' , $entry -> getDomainName ());
2015-09-10 19:57:25 +00:00
}
public function testWithEmptyContentButOG ()
{
2015-10-11 20:27:47 +00:00
$tagger = $this -> getTaggerMock ();
$tagger -> expects ( $this -> once ())
-> method ( 'tag' );
2015-09-10 19:57:25 +00:00
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
2016-04-12 09:36:01 +00:00
-> setMethods ([ 'fetchContent' ])
2015-09-10 19:57:25 +00:00
-> disableOriginalConstructor ()
-> getMock ();
$graby -> expects ( $this -> any ())
-> method ( 'fetchContent' )
2016-04-12 09:36:01 +00:00
-> willReturn ([
2015-09-20 20:37:27 +00:00
'html' => false ,
'title' => '' ,
'url' => '' ,
'content_type' => '' ,
'language' => '' ,
2016-11-18 14:09:21 +00:00
'status' => '' ,
2016-04-12 09:36:01 +00:00
'open_graph' => [
2015-09-20 20:37:27 +00:00
'og_title' => 'my title' ,
'og_description' => 'desc' ,
2016-04-12 09:36:01 +00:00
],
]);
2015-09-10 19:57:25 +00:00
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $tagger , $this -> getTagRepositoryMock (), $this -> getLogger (), $this -> fetchingErrorMessage );
2015-09-28 17:35:33 +00:00
$entry = $proxy -> updateEntry ( new Entry ( new User ()), 'http://domain.io' );
2015-09-10 19:57:25 +00:00
2015-09-28 17:35:33 +00:00
$this -> assertEquals ( 'http://domain.io' , $entry -> getUrl ());
2015-09-10 19:57:25 +00:00
$this -> assertEquals ( 'my title' , $entry -> getTitle ());
2016-12-03 04:59:18 +00:00
$this -> assertEquals ( $this -> fetchingErrorMessage . '<p><i>But we found a short description: </i></p>desc' , $entry -> getContent ());
2015-09-10 19:57:25 +00:00
$this -> assertEmpty ( $entry -> getPreviewPicture ());
2015-09-20 20:37:27 +00:00
$this -> assertEmpty ( $entry -> getLanguage ());
2016-11-18 14:09:21 +00:00
$this -> assertEmpty ( $entry -> getHttpStatus ());
2015-09-10 19:57:25 +00:00
$this -> assertEmpty ( $entry -> getMimetype ());
2015-09-28 17:35:33 +00:00
$this -> assertEquals ( 0.0 , $entry -> getReadingTime ());
$this -> assertEquals ( 'domain.io' , $entry -> getDomainName ());
2015-09-10 19:57:25 +00:00
}
public function testWithContent ()
{
2015-10-11 20:27:47 +00:00
$tagger = $this -> getTaggerMock ();
$tagger -> expects ( $this -> once ())
-> method ( 'tag' );
2015-09-10 19:57:25 +00:00
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
2016-04-12 09:36:01 +00:00
-> setMethods ([ 'fetchContent' ])
2015-09-10 19:57:25 +00:00
-> disableOriginalConstructor ()
-> getMock ();
$graby -> expects ( $this -> any ())
-> method ( 'fetchContent' )
2016-04-12 09:36:01 +00:00
-> willReturn ([
2015-09-28 17:35:33 +00:00
'html' => str_repeat ( 'this is my content' , 325 ),
2015-09-10 19:57:25 +00:00
'title' => 'this is my title' ,
'url' => 'http://1.1.1.1' ,
'content_type' => 'text/html' ,
2015-09-20 20:37:27 +00:00
'language' => 'fr' ,
2016-11-18 14:09:21 +00:00
'status' => '200' ,
2016-04-12 09:36:01 +00:00
'open_graph' => [
2015-09-10 19:57:25 +00:00
'og_title' => 'my OG title' ,
'og_description' => 'OG desc' ,
2015-09-10 20:00:53 +00:00
'og_image' => 'http://3.3.3.3/cover.jpg' ,
2016-04-12 09:36:01 +00:00
],
]);
2015-09-10 19:57:25 +00:00
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $tagger , $this -> getTagRepositoryMock (), $this -> getLogger (), $this -> fetchingErrorMessage );
2015-09-10 19:57:25 +00:00
$entry = $proxy -> updateEntry ( new Entry ( new User ()), 'http://0.0.0.0' );
$this -> assertEquals ( 'http://1.1.1.1' , $entry -> getUrl ());
$this -> assertEquals ( 'this is my title' , $entry -> getTitle ());
2015-09-28 17:35:33 +00:00
$this -> assertContains ( 'this is my content' , $entry -> getContent ());
2015-09-10 19:57:25 +00:00
$this -> assertEquals ( 'http://3.3.3.3/cover.jpg' , $entry -> getPreviewPicture ());
$this -> assertEquals ( 'text/html' , $entry -> getMimetype ());
2015-09-20 20:37:27 +00:00
$this -> assertEquals ( 'fr' , $entry -> getLanguage ());
2016-11-18 14:09:21 +00:00
$this -> assertEquals ( '200' , $entry -> getHttpStatus ());
2015-09-28 17:35:33 +00:00
$this -> assertEquals ( 4.0 , $entry -> getReadingTime ());
$this -> assertEquals ( '1.1.1.1' , $entry -> getDomainName ());
2015-09-10 19:57:25 +00:00
}
2015-10-11 20:27:47 +00:00
2017-01-10 16:42:34 +00:00
public function testWithContentAndNoOgImage ()
{
$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' => str_repeat ( 'this is my content' , 325 ),
'title' => 'this is my title' ,
'url' => 'http://1.1.1.1' ,
'content_type' => 'text/html' ,
'language' => 'fr' ,
'status' => '200' ,
'open_graph' => [
'og_title' => 'my OG title' ,
'og_description' => 'OG desc' ,
'og_image' => false ,
],
]);
$proxy = new ContentProxy ( $graby , $tagger , $this -> getTagRepositoryMock (), $this -> getLogger (), $this -> fetchingErrorMessage );
$entry = $proxy -> updateEntry ( new Entry ( new User ()), 'http://0.0.0.0' );
$this -> assertEquals ( 'http://1.1.1.1' , $entry -> getUrl ());
$this -> assertEquals ( 'this is my title' , $entry -> getTitle ());
$this -> assertContains ( 'this is my content' , $entry -> getContent ());
$this -> assertNull ( $entry -> getPreviewPicture ());
$this -> assertEquals ( 'text/html' , $entry -> getMimetype ());
$this -> assertEquals ( 'fr' , $entry -> getLanguage ());
$this -> assertEquals ( '200' , $entry -> getHttpStatus ());
$this -> assertEquals ( 4.0 , $entry -> getReadingTime ());
$this -> assertEquals ( '1.1.1.1' , $entry -> getDomainName ());
}
2016-03-27 18:35:56 +00:00
public function testWithForcedContent ()
{
$tagger = $this -> getTaggerMock ();
$tagger -> expects ( $this -> once ())
-> method ( 'tag' );
$graby = $this -> getMockBuilder ( 'Graby\Graby' ) -> getMock ();
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $tagger , $this -> getTagRepositoryMock (), $this -> getLogger (), $this -> fetchingErrorMessage );
2016-03-27 18:35:56 +00:00
$entry = $proxy -> updateEntry ( new Entry ( new User ()), 'http://0.0.0.0' , [
'html' => str_repeat ( 'this is my content' , 325 ),
'title' => 'this is my title' ,
'url' => 'http://1.1.1.1' ,
'content_type' => 'text/html' ,
'language' => 'fr' ,
]);
$this -> assertEquals ( 'http://1.1.1.1' , $entry -> getUrl ());
$this -> assertEquals ( 'this is my title' , $entry -> getTitle ());
$this -> assertContains ( 'this is my content' , $entry -> getContent ());
$this -> assertEquals ( 'text/html' , $entry -> getMimetype ());
$this -> assertEquals ( 'fr' , $entry -> getLanguage ());
$this -> assertEquals ( 4.0 , $entry -> getReadingTime ());
$this -> assertEquals ( '1.1.1.1' , $entry -> getDomainName ());
}
public function testTaggerThrowException ()
{
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
-> disableOriginalConstructor ()
-> getMock ();
$tagger = $this -> getTaggerMock ();
$tagger -> expects ( $this -> once ())
-> method ( 'tag' )
-> will ( $this -> throwException ( new \Exception ()));
$tagRepo = $this -> getTagRepositoryMock ();
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $tagger , $tagRepo , $this -> getLogger (), $this -> fetchingErrorMessage );
2016-03-27 18:35:56 +00:00
$entry = $proxy -> updateEntry ( new Entry ( new User ()), 'http://0.0.0.0' , [
'html' => str_repeat ( 'this is my content' , 325 ),
'title' => 'this is my title' ,
'url' => 'http://1.1.1.1' ,
'content_type' => 'text/html' ,
'language' => 'fr' ,
]);
$this -> assertCount ( 0 , $entry -> getTags ());
}
2016-02-19 13:22:20 +00:00
public function testAssignTagsWithArrayAndExtraSpaces ()
{
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
-> disableOriginalConstructor ()
-> getMock ();
$tagRepo = $this -> getTagRepositoryMock ();
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $this -> getTaggerMock (), $tagRepo , $this -> getLogger (), $this -> fetchingErrorMessage );
2016-02-19 13:22:20 +00:00
$entry = new Entry ( new User ());
2016-04-12 09:36:01 +00:00
$proxy -> assignTagsToEntry ( $entry , [ ' tag1' , 'tag2 ' ]);
2016-02-19 13:22:20 +00:00
$this -> assertCount ( 2 , $entry -> getTags ());
$this -> assertEquals ( 'tag1' , $entry -> getTags ()[ 0 ] -> getLabel ());
$this -> assertEquals ( 'tag2' , $entry -> getTags ()[ 1 ] -> getLabel ());
}
public function testAssignTagsWithString ()
{
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
-> disableOriginalConstructor ()
-> getMock ();
$tagRepo = $this -> getTagRepositoryMock ();
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $this -> getTaggerMock (), $tagRepo , $this -> getLogger (), $this -> fetchingErrorMessage );
2016-02-19 13:22:20 +00:00
$entry = new Entry ( new User ());
$proxy -> assignTagsToEntry ( $entry , 'tag1, tag2' );
$this -> assertCount ( 2 , $entry -> getTags ());
$this -> assertEquals ( 'tag1' , $entry -> getTags ()[ 0 ] -> getLabel ());
$this -> assertEquals ( 'tag2' , $entry -> getTags ()[ 1 ] -> getLabel ());
}
public function testAssignTagsWithEmptyArray ()
{
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
-> disableOriginalConstructor ()
-> getMock ();
$tagRepo = $this -> getTagRepositoryMock ();
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $this -> getTaggerMock (), $tagRepo , $this -> getLogger (), $this -> fetchingErrorMessage );
2016-02-19 13:22:20 +00:00
$entry = new Entry ( new User ());
2016-04-12 09:36:01 +00:00
$proxy -> assignTagsToEntry ( $entry , []);
2016-02-19 13:22:20 +00:00
$this -> assertCount ( 0 , $entry -> getTags ());
}
public function testAssignTagsWithEmptyString ()
{
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
-> disableOriginalConstructor ()
-> getMock ();
$tagRepo = $this -> getTagRepositoryMock ();
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $this -> getTaggerMock (), $tagRepo , $this -> getLogger (), $this -> fetchingErrorMessage );
2016-02-19 13:22:20 +00:00
$entry = new Entry ( new User ());
$proxy -> assignTagsToEntry ( $entry , '' );
$this -> assertCount ( 0 , $entry -> getTags ());
}
public function testAssignTagsAlreadyAssigned ()
{
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
-> disableOriginalConstructor ()
-> getMock ();
$tagRepo = $this -> getTagRepositoryMock ();
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $this -> getTaggerMock (), $tagRepo , $this -> getLogger (), $this -> fetchingErrorMessage );
2016-02-19 13:22:20 +00:00
$tagEntity = new Tag ();
$tagEntity -> setLabel ( 'tag1' );
$entry = new Entry ( new User ());
$entry -> addTag ( $tagEntity );
$proxy -> assignTagsToEntry ( $entry , 'tag1, tag2' );
$this -> assertCount ( 2 , $entry -> getTags ());
$this -> assertEquals ( 'tag1' , $entry -> getTags ()[ 0 ] -> getLabel ());
$this -> assertEquals ( 'tag2' , $entry -> getTags ()[ 1 ] -> getLabel ());
}
2016-09-25 09:26:15 +00:00
public function testAssignTagsNotFlushed ()
{
$graby = $this -> getMockBuilder ( 'Graby\Graby' )
-> disableOriginalConstructor ()
-> getMock ();
$tagRepo = $this -> getTagRepositoryMock ();
$tagRepo -> expects ( $this -> never ())
-> method ( '__call' );
2016-12-03 04:59:18 +00:00
$proxy = new ContentProxy ( $graby , $this -> getTaggerMock (), $tagRepo , $this -> getLogger (), $this -> fetchingErrorMessage );
2016-09-25 09:26:15 +00:00
$tagEntity = new Tag ();
$tagEntity -> setLabel ( 'tag1' );
$entry = new Entry ( new User ());
$proxy -> assignTagsToEntry ( $entry , 'tag1' , [ $tagEntity ]);
$this -> assertCount ( 1 , $entry -> getTags ());
$this -> assertEquals ( 'tag1' , $entry -> getTags ()[ 0 ] -> getLabel ());
}
2015-10-11 20:27:47 +00:00
private function getTaggerMock ()
{
return $this -> getMockBuilder ( 'Wallabag\CoreBundle\Helper\RuleBasedTagger' )
2016-04-12 09:36:01 +00:00
-> setMethods ([ 'tag' ])
2015-10-11 20:27:47 +00:00
-> disableOriginalConstructor ()
-> getMock ();
}
2015-10-17 15:45:51 +00:00
2016-02-19 13:22:20 +00:00
private function getTagRepositoryMock ()
{
return $this -> getMockBuilder ( 'Wallabag\CoreBundle\Repository\TagRepository' )
-> disableOriginalConstructor ()
-> getMock ();
}
2015-10-31 15:38:49 +00:00
private function getLogger ()
2015-10-17 15:45:51 +00:00
{
2015-10-31 15:38:49 +00:00
return new NullLogger ();
2015-10-17 15:45:51 +00:00
}
2015-09-10 19:57:25 +00:00
}