aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-12 15:01:18 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-12 15:01:18 +0200
commita1146b6551da01a1fd2b5711a5cf68fb1791c055 (patch)
tree62c2478aea4ef8553ca3bf69f2e752ceb0ebe57a
parent3554364bedec2b831074d5d4e7409b4124e86a59 (diff)
downloadwallabag-a1146b6551da01a1fd2b5711a5cf68fb1791c055.tar.gz
wallabag-a1146b6551da01a1fd2b5711a5cf68fb1791c055.tar.zst
wallabag-a1146b6551da01a1fd2b5711a5cf68fb1791c055.zip
Added tests on logs records
-rw-r--r--tests/Wallabag/CoreBundle/Helper/RuleBasedTaggerTest.php25
1 files changed, 22 insertions, 3 deletions
diff --git a/tests/Wallabag/CoreBundle/Helper/RuleBasedTaggerTest.php b/tests/Wallabag/CoreBundle/Helper/RuleBasedTaggerTest.php
index 522cf3b3..1e21f400 100644
--- a/tests/Wallabag/CoreBundle/Helper/RuleBasedTaggerTest.php
+++ b/tests/Wallabag/CoreBundle/Helper/RuleBasedTaggerTest.php
@@ -2,7 +2,8 @@
2 2
3namespace Tests\Wallabag\CoreBundle\Helper; 3namespace Tests\Wallabag\CoreBundle\Helper;
4 4
5use Psr\Log\NullLogger; 5use Monolog\Handler\TestHandler;
6use Monolog\Logger;
6use Wallabag\CoreBundle\Entity\Config; 7use Wallabag\CoreBundle\Entity\Config;
7use Wallabag\CoreBundle\Entity\Entry; 8use Wallabag\CoreBundle\Entity\Entry;
8use Wallabag\CoreBundle\Entity\Tag; 9use Wallabag\CoreBundle\Entity\Tag;
@@ -16,14 +17,19 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
16 private $tagRepository; 17 private $tagRepository;
17 private $entryRepository; 18 private $entryRepository;
18 private $tagger; 19 private $tagger;
20 private $logger;
21 private $handler;
19 22
20 public function setUp() 23 public function setUp()
21 { 24 {
22 $this->rulerz = $this->getRulerZMock(); 25 $this->rulerz = $this->getRulerZMock();
23 $this->tagRepository = $this->getTagRepositoryMock(); 26 $this->tagRepository = $this->getTagRepositoryMock();
24 $this->entryRepository = $this->getEntryRepositoryMock(); 27 $this->entryRepository = $this->getEntryRepositoryMock();
28 $this->logger = $this->getLogger();
29 $this->handler = new TestHandler();
30 $this->logger->pushHandler($this->handler);
25 31
26 $this->tagger = new RuleBasedTagger($this->rulerz, $this->tagRepository, $this->entryRepository, $this->getLogger()); 32 $this->tagger = new RuleBasedTagger($this->rulerz, $this->tagRepository, $this->entryRepository, $this->logger);
27 } 33 }
28 34
29 public function testTagWithNoRule() 35 public function testTagWithNoRule()
@@ -33,6 +39,8 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
33 $this->tagger->tag($entry); 39 $this->tagger->tag($entry);
34 40
35 $this->assertTrue($entry->getTags()->isEmpty()); 41 $this->assertTrue($entry->getTags()->isEmpty());
42 $records = $this->handler->getRecords();
43 $this->assertCount(0, $records);
36 } 44 }
37 45
38 public function testTagWithNoMatchingRule() 46 public function testTagWithNoMatchingRule()
@@ -50,6 +58,8 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
50 $this->tagger->tag($entry); 58 $this->tagger->tag($entry);
51 59
52 $this->assertTrue($entry->getTags()->isEmpty()); 60 $this->assertTrue($entry->getTags()->isEmpty());
61 $records = $this->handler->getRecords();
62 $this->assertCount(0, $records);
53 } 63 }
54 64
55 public function testTagWithAMatchingRule() 65 public function testTagWithAMatchingRule()
@@ -71,6 +81,9 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
71 $tags = $entry->getTags(); 81 $tags = $entry->getTags();
72 $this->assertSame('foo', $tags[0]->getLabel()); 82 $this->assertSame('foo', $tags[0]->getLabel());
73 $this->assertSame('bar', $tags[1]->getLabel()); 83 $this->assertSame('bar', $tags[1]->getLabel());
84
85 $records = $this->handler->getRecords();
86 $this->assertCount(1, $records);
74 } 87 }
75 88
76 public function testTagWithAMixOfMatchingRules() 89 public function testTagWithAMixOfMatchingRules()
@@ -91,6 +104,8 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
91 104
92 $tags = $entry->getTags(); 105 $tags = $entry->getTags();
93 $this->assertSame('foo', $tags[0]->getLabel()); 106 $this->assertSame('foo', $tags[0]->getLabel());
107 $records = $this->handler->getRecords();
108 $this->assertCount(1, $records);
94 } 109 }
95 110
96 public function testWhenTheTagExists() 111 public function testWhenTheTagExists()
@@ -119,6 +134,8 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
119 134
120 $tags = $entry->getTags(); 135 $tags = $entry->getTags();
121 $this->assertSame($tag, $tags[0]); 136 $this->assertSame($tag, $tags[0]);
137 $records = $this->handler->getRecords();
138 $this->assertCount(1, $records);
122 } 139 }
123 140
124 public function testSameTagWithDifferentfMatchingRules() 141 public function testSameTagWithDifferentfMatchingRules()
@@ -139,6 +156,8 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
139 156
140 $tags = $entry->getTags(); 157 $tags = $entry->getTags();
141 $this->assertCount(1, $tags); 158 $this->assertCount(1, $tags);
159 $records = $this->handler->getRecords();
160 $this->assertCount(2, $records);
142 } 161 }
143 162
144 public function testTagAllEntriesForAUser() 163 public function testTagAllEntriesForAUser()
@@ -213,6 +232,6 @@ class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase
213 232
214 private function getLogger() 233 private function getLogger()
215 { 234 {
216 return new NullLogger(); 235 return new Logger('foo');
217 } 236 }
218} 237}