]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php
Notifications
[github/wallabag/wallabag.git] / tests / Wallabag / CoreBundle / Twig / WallabagExtensionTest.php
CommitLineData
784bb4c3
NL
1<?php
2
23634d5d 3namespace Tests\Wallabag\CoreBundle\Twig;
784bb4c3
NL
4
5use Wallabag\CoreBundle\Twig\WallabagExtension;
6
7class WallabagExtensionTest extends \PHPUnit_Framework_TestCase
8{
9 public function testRemoveWww()
10 {
1264029c
JB
11 $entryRepository = $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository')
12 ->disableOriginalConstructor()
13 ->getMock();
14
15 $tagRepository = $this->getMockBuilder('Wallabag\CoreBundle\Repository\TagRepository')
16 ->disableOriginalConstructor()
17 ->getMock();
18
378aaefb
TC
19 $notificationRepository = $this->getMockBuilder('Wallabag\CoreBundle\Repository\NotificationRepository')
20 ->disableOriginalConstructor()
21 ->getMock();
22
1264029c
JB
23 $tokenStorage = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface')
24 ->disableOriginalConstructor()
25 ->getMock();
26
27 $translator = $this->getMockBuilder('Symfony\Component\Translation\TranslatorInterface')
28 ->disableOriginalConstructor()
29 ->getMock();
30
378aaefb 31 $extension = new WallabagExtension($entryRepository, $tagRepository, $notificationRepository, $tokenStorage, 0, 5, $translator);
784bb4c3 32
f808b016
JB
33 $this->assertSame('lemonde.fr', $extension->removeWww('www.lemonde.fr'));
34 $this->assertSame('lemonde.fr', $extension->removeWww('lemonde.fr'));
35 $this->assertSame('gist.github.com', $extension->removeWww('gist.github.com'));
784bb4c3
NL
36 }
37}