diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-06-23 09:18:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-23 09:18:18 +0200 |
commit | d37bb05c881bfdbeb1144b327edd4dcc2cbb163f (patch) | |
tree | 1b90f7e733a83af4741a8cb7f49edf3e303f8677 /src/Wallabag/CoreBundle | |
parent | 891a026e31ad54ca90b70f6026f23260cfadb7fd (diff) | |
parent | 99451fe4b76051d61922a6beb7ee9e79cc6e7893 (diff) | |
download | wallabag-d37bb05c881bfdbeb1144b327edd4dcc2cbb163f.tar.gz wallabag-d37bb05c881bfdbeb1144b327edd4dcc2cbb163f.tar.zst wallabag-d37bb05c881bfdbeb1144b327edd4dcc2cbb163f.zip |
Merge pull request #2132 from wallabag/sf3.1
Jump to Symfony 3.1
Diffstat (limited to 'src/Wallabag/CoreBundle')
25 files changed, 0 insertions, 3656 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php index 4cf22200..74c53bf0 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php | |||
@@ -32,7 +32,6 @@ class ConfigType extends AbstractType | |||
32 | $builder | 32 | $builder |
33 | ->add('theme', ChoiceType::class, [ | 33 | ->add('theme', ChoiceType::class, [ |
34 | 'choices' => array_flip($this->themes), | 34 | 'choices' => array_flip($this->themes), |
35 | 'choices_as_values' => true, | ||
36 | 'label' => 'config.form_settings.theme_label', | 35 | 'label' => 'config.form_settings.theme_label', |
37 | ]) | 36 | ]) |
38 | ->add('items_per_page', null, [ | 37 | ->add('items_per_page', null, [ |
@@ -49,7 +48,6 @@ class ConfigType extends AbstractType | |||
49 | ]) | 48 | ]) |
50 | ->add('language', ChoiceType::class, [ | 49 | ->add('language', ChoiceType::class, [ |
51 | 'choices' => array_flip($this->languages), | 50 | 'choices' => array_flip($this->languages), |
52 | 'choices_as_values' => true, | ||
53 | 'label' => 'config.form_settings.language_label', | 51 | 'label' => 'config.form_settings.language_label', |
54 | ]) | 52 | ]) |
55 | ->add('save', SubmitType::class, [ | 53 | ->add('save', SubmitType::class, [ |
diff --git a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php index f3f848e9..bc59c9a1 100644 --- a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php +++ b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php | |||
@@ -113,7 +113,6 @@ class EntryFilterType extends AbstractType | |||
113 | ]) | 113 | ]) |
114 | ->add('language', ChoiceFilterType::class, [ | 114 | ->add('language', ChoiceFilterType::class, [ |
115 | 'choices' => array_flip($this->repository->findDistinctLanguageByUser($this->user->getId())), | 115 | 'choices' => array_flip($this->repository->findDistinctLanguageByUser($this->user->getId())), |
116 | 'choices_as_values' => true, | ||
117 | 'label' => 'entry.filters.language_label', | 116 | 'label' => 'entry.filters.language_label', |
118 | ]) | 117 | ]) |
119 | ; | 118 | ; |
diff --git a/src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php b/src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php deleted file mode 100644 index 0673d581..00000000 --- a/src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php +++ /dev/null | |||
@@ -1,279 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Command; | ||
4 | |||
5 | use Doctrine\Bundle\DoctrineBundle\Command\CreateDatabaseDoctrineCommand; | ||
6 | use Doctrine\Bundle\DoctrineBundle\Command\DropDatabaseDoctrineCommand; | ||
7 | use Symfony\Bundle\FrameworkBundle\Console\Application; | ||
8 | use Symfony\Component\Console\Input\ArrayInput; | ||
9 | use Symfony\Component\Console\Output\NullOutput; | ||
10 | use Symfony\Component\Console\Tester\CommandTester; | ||
11 | use Wallabag\CoreBundle\Command\InstallCommand; | ||
12 | use Wallabag\CoreBundle\Tests\Mock\InstallCommandMock; | ||
13 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
14 | |||
15 | class InstallCommandTest extends WallabagCoreTestCase | ||
16 | { | ||
17 | public function setUp() | ||
18 | { | ||
19 | parent::setUp(); | ||
20 | |||
21 | if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDriver() instanceof \Doctrine\DBAL\Driver\PDOPgSql\Driver) { | ||
22 | /* | ||
23 | * LOG: statement: CREATE DATABASE "wallabag" | ||
24 | * ERROR: source database "template1" is being accessed by other users | ||
25 | * DETAIL: There is 1 other session using the database. | ||
26 | * STATEMENT: CREATE DATABASE "wallabag" | ||
27 | * FATAL: database "wallabag" does not exist | ||
28 | * | ||
29 | * http://stackoverflow.com/a/14374832/569101 | ||
30 | */ | ||
31 | $this->markTestSkipped('PostgreSQL spotted: can find a good way to drop current database, skipping.'); | ||
32 | } | ||
33 | } | ||
34 | |||
35 | public static function tearDownAfterClass() | ||
36 | { | ||
37 | $application = new Application(static::$kernel); | ||
38 | $application->setAutoExit(false); | ||
39 | |||
40 | $code = $application->run(new ArrayInput([ | ||
41 | 'command' => 'doctrine:fixtures:load', | ||
42 | '--no-interaction' => true, | ||
43 | '--env' => 'test', | ||
44 | ]), new NullOutput()); | ||
45 | } | ||
46 | |||
47 | public function testRunInstallCommand() | ||
48 | { | ||
49 | $application = new Application($this->getClient()->getKernel()); | ||
50 | $application->add(new InstallCommandMock()); | ||
51 | |||
52 | $command = $application->find('wallabag:install'); | ||
53 | |||
54 | // We mock the QuestionHelper | ||
55 | $question = $this->getMockBuilder('Symfony\Component\Console\Helper\QuestionHelper') | ||
56 | ->disableOriginalConstructor() | ||
57 | ->getMock(); | ||
58 | $question->expects($this->any()) | ||
59 | ->method('ask') | ||
60 | ->will($this->returnValue('yes_'.uniqid('', true))); | ||
61 | |||
62 | // We override the standard helper with our mock | ||
63 | $command->getHelperSet()->set($question, 'question'); | ||
64 | |||
65 | $tester = new CommandTester($command); | ||
66 | $tester->execute([ | ||
67 | 'command' => $command->getName(), | ||
68 | ]); | ||
69 | |||
70 | $this->assertContains('Checking system requirements.', $tester->getDisplay()); | ||
71 | $this->assertContains('Setting up database.', $tester->getDisplay()); | ||
72 | $this->assertContains('Administration setup.', $tester->getDisplay()); | ||
73 | $this->assertContains('Config setup.', $tester->getDisplay()); | ||
74 | $this->assertContains('Installing assets.', $tester->getDisplay()); | ||
75 | } | ||
76 | |||
77 | public function testRunInstallCommandWithReset() | ||
78 | { | ||
79 | $application = new Application($this->getClient()->getKernel()); | ||
80 | $application->add(new InstallCommandMock()); | ||
81 | |||
82 | $command = $application->find('wallabag:install'); | ||
83 | |||
84 | // We mock the QuestionHelper | ||
85 | $question = $this->getMockBuilder('Symfony\Component\Console\Helper\QuestionHelper') | ||
86 | ->disableOriginalConstructor() | ||
87 | ->getMock(); | ||
88 | $question->expects($this->any()) | ||
89 | ->method('ask') | ||
90 | ->will($this->returnValue('yes_'.uniqid('', true))); | ||
91 | |||
92 | // We override the standard helper with our mock | ||
93 | $command->getHelperSet()->set($question, 'question'); | ||
94 | |||
95 | $tester = new CommandTester($command); | ||
96 | $tester->execute([ | ||
97 | 'command' => $command->getName(), | ||
98 | '--reset' => true, | ||
99 | ]); | ||
100 | |||
101 | $this->assertContains('Checking system requirements.', $tester->getDisplay()); | ||
102 | $this->assertContains('Setting up database.', $tester->getDisplay()); | ||
103 | $this->assertContains('Droping database, creating database and schema, clearing the cache', $tester->getDisplay()); | ||
104 | $this->assertContains('Administration setup.', $tester->getDisplay()); | ||
105 | $this->assertContains('Config setup.', $tester->getDisplay()); | ||
106 | $this->assertContains('Installing assets.', $tester->getDisplay()); | ||
107 | |||
108 | // we force to reset everything | ||
109 | $this->assertContains('Droping database, creating database and schema, clearing the cache', $tester->getDisplay()); | ||
110 | } | ||
111 | |||
112 | public function testRunInstallCommandWithDatabaseRemoved() | ||
113 | { | ||
114 | $application = new Application($this->getClient()->getKernel()); | ||
115 | $application->add(new DropDatabaseDoctrineCommand()); | ||
116 | |||
117 | // drop database first, so the install command won't ask to reset things | ||
118 | $command = $application->find('doctrine:database:drop'); | ||
119 | $command->run(new ArrayInput([ | ||
120 | 'command' => 'doctrine:database:drop', | ||
121 | '--force' => true, | ||
122 | ]), new NullOutput()); | ||
123 | |||
124 | // start a new application to avoid lagging connexion to pgsql | ||
125 | $client = static::createClient(); | ||
126 | $application = new Application($client->getKernel()); | ||
127 | $application->add(new InstallCommand()); | ||
128 | |||
129 | $command = $application->find('wallabag:install'); | ||
130 | |||
131 | // We mock the QuestionHelper | ||
132 | $question = $this->getMockBuilder('Symfony\Component\Console\Helper\QuestionHelper') | ||
133 | ->disableOriginalConstructor() | ||
134 | ->getMock(); | ||
135 | $question->expects($this->any()) | ||
136 | ->method('ask') | ||
137 | ->will($this->returnValue('yes_'.uniqid('', true))); | ||
138 | |||
139 | // We override the standard helper with our mock | ||
140 | $command->getHelperSet()->set($question, 'question'); | ||
141 | |||
142 | $tester = new CommandTester($command); | ||
143 | $tester->execute([ | ||
144 | 'command' => $command->getName(), | ||
145 | ]); | ||
146 | |||
147 | $this->assertContains('Checking system requirements.', $tester->getDisplay()); | ||
148 | $this->assertContains('Setting up database.', $tester->getDisplay()); | ||
149 | $this->assertContains('Administration setup.', $tester->getDisplay()); | ||
150 | $this->assertContains('Config setup.', $tester->getDisplay()); | ||
151 | $this->assertContains('Installing assets.', $tester->getDisplay()); | ||
152 | |||
153 | // the current database doesn't already exist | ||
154 | $this->assertContains('Creating database and schema, clearing the cache', $tester->getDisplay()); | ||
155 | } | ||
156 | |||
157 | public function testRunInstallCommandChooseResetSchema() | ||
158 | { | ||
159 | $application = new Application($this->getClient()->getKernel()); | ||
160 | $application->add(new InstallCommandMock()); | ||
161 | |||
162 | $command = $application->find('wallabag:install'); | ||
163 | |||
164 | // We mock the QuestionHelper | ||
165 | $question = $this->getMockBuilder('Symfony\Component\Console\Helper\QuestionHelper') | ||
166 | ->disableOriginalConstructor() | ||
167 | ->getMock(); | ||
168 | |||
169 | $question->expects($this->exactly(3)) | ||
170 | ->method('ask') | ||
171 | ->will($this->onConsecutiveCalls( | ||
172 | false, // don't want to reset the entire database | ||
173 | true, // do want to reset the schema | ||
174 | false // don't want to create a new user | ||
175 | )); | ||
176 | |||
177 | // We override the standard helper with our mock | ||
178 | $command->getHelperSet()->set($question, 'question'); | ||
179 | |||
180 | $tester = new CommandTester($command); | ||
181 | $tester->execute([ | ||
182 | 'command' => $command->getName(), | ||
183 | ]); | ||
184 | |||
185 | $this->assertContains('Checking system requirements.', $tester->getDisplay()); | ||
186 | $this->assertContains('Setting up database.', $tester->getDisplay()); | ||
187 | $this->assertContains('Administration setup.', $tester->getDisplay()); | ||
188 | $this->assertContains('Config setup.', $tester->getDisplay()); | ||
189 | $this->assertContains('Installing assets.', $tester->getDisplay()); | ||
190 | |||
191 | $this->assertContains('Droping schema and creating schema', $tester->getDisplay()); | ||
192 | } | ||
193 | |||
194 | public function testRunInstallCommandChooseNothing() | ||
195 | { | ||
196 | $application = new Application($this->getClient()->getKernel()); | ||
197 | $application->add(new InstallCommand()); | ||
198 | $application->add(new DropDatabaseDoctrineCommand()); | ||
199 | $application->add(new CreateDatabaseDoctrineCommand()); | ||
200 | |||
201 | // drop database first, so the install command won't ask to reset things | ||
202 | $command = new DropDatabaseDoctrineCommand(); | ||
203 | $command->setApplication($application); | ||
204 | $command->run(new ArrayInput([ | ||
205 | 'command' => 'doctrine:database:drop', | ||
206 | '--force' => true, | ||
207 | ]), new NullOutput()); | ||
208 | |||
209 | $this->getClient()->getContainer()->get('doctrine')->getConnection()->close(); | ||
210 | |||
211 | $command = new CreateDatabaseDoctrineCommand(); | ||
212 | $command->setApplication($application); | ||
213 | $command->run(new ArrayInput([ | ||
214 | 'command' => 'doctrine:database:create', | ||
215 | '--env' => 'test', | ||
216 | ]), new NullOutput()); | ||
217 | |||
218 | $command = $application->find('wallabag:install'); | ||
219 | |||
220 | // We mock the QuestionHelper | ||
221 | $question = $this->getMockBuilder('Symfony\Component\Console\Helper\QuestionHelper') | ||
222 | ->disableOriginalConstructor() | ||
223 | ->getMock(); | ||
224 | |||
225 | $question->expects($this->exactly(2)) | ||
226 | ->method('ask') | ||
227 | ->will($this->onConsecutiveCalls( | ||
228 | false, // don't want to reset the entire database | ||
229 | false // don't want to create a new user | ||
230 | )); | ||
231 | |||
232 | // We override the standard helper with our mock | ||
233 | $command->getHelperSet()->set($question, 'question'); | ||
234 | |||
235 | $tester = new CommandTester($command); | ||
236 | $tester->execute([ | ||
237 | 'command' => $command->getName(), | ||
238 | ]); | ||
239 | |||
240 | $this->assertContains('Checking system requirements.', $tester->getDisplay()); | ||
241 | $this->assertContains('Setting up database.', $tester->getDisplay()); | ||
242 | $this->assertContains('Administration setup.', $tester->getDisplay()); | ||
243 | $this->assertContains('Config setup.', $tester->getDisplay()); | ||
244 | $this->assertContains('Installing assets.', $tester->getDisplay()); | ||
245 | |||
246 | $this->assertContains('Creating schema', $tester->getDisplay()); | ||
247 | } | ||
248 | |||
249 | public function testRunInstallCommandNoInteraction() | ||
250 | { | ||
251 | $application = new Application($this->getClient()->getKernel()); | ||
252 | $application->add(new InstallCommandMock()); | ||
253 | |||
254 | $command = $application->find('wallabag:install'); | ||
255 | |||
256 | // We mock the QuestionHelper | ||
257 | $question = $this->getMockBuilder('Symfony\Component\Console\Helper\QuestionHelper') | ||
258 | ->disableOriginalConstructor() | ||
259 | ->getMock(); | ||
260 | $question->expects($this->any()) | ||
261 | ->method('ask') | ||
262 | ->will($this->returnValue('yes_'.uniqid('', true))); | ||
263 | |||
264 | // We override the standard helper with our mock | ||
265 | $command->getHelperSet()->set($question, 'question'); | ||
266 | |||
267 | $tester = new CommandTester($command); | ||
268 | $tester->execute([ | ||
269 | 'command' => $command->getName(), | ||
270 | '--no-interaction' => true, | ||
271 | ]); | ||
272 | |||
273 | $this->assertContains('Checking system requirements.', $tester->getDisplay()); | ||
274 | $this->assertContains('Setting up database.', $tester->getDisplay()); | ||
275 | $this->assertContains('Administration setup.', $tester->getDisplay()); | ||
276 | $this->assertContains('Config setup.', $tester->getDisplay()); | ||
277 | $this->assertContains('Installing assets.', $tester->getDisplay()); | ||
278 | } | ||
279 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Command/TagAllCommandTest.php b/src/Wallabag/CoreBundle/Tests/Command/TagAllCommandTest.php deleted file mode 100644 index 4f544c1d..00000000 --- a/src/Wallabag/CoreBundle/Tests/Command/TagAllCommandTest.php +++ /dev/null | |||
@@ -1,60 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Command; | ||
4 | |||
5 | use Symfony\Bundle\FrameworkBundle\Console\Application; | ||
6 | use Symfony\Component\Console\Tester\CommandTester; | ||
7 | use Wallabag\CoreBundle\Command\TagAllCommand; | ||
8 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
9 | |||
10 | class TagAllCommandTest extends WallabagCoreTestCase | ||
11 | { | ||
12 | /** | ||
13 | * @expectedException Symfony\Component\Console\Exception\RuntimeException | ||
14 | * @expectedExceptionMessage Not enough arguments (missing: "username") | ||
15 | */ | ||
16 | public function testRunTagAllCommandWithoutUsername() | ||
17 | { | ||
18 | $application = new Application($this->getClient()->getKernel()); | ||
19 | $application->add(new TagAllCommand()); | ||
20 | |||
21 | $command = $application->find('wallabag:tag:all'); | ||
22 | |||
23 | $tester = new CommandTester($command); | ||
24 | $tester->execute([ | ||
25 | 'command' => $command->getName(), | ||
26 | ]); | ||
27 | } | ||
28 | |||
29 | public function testRunTagAllCommandWithBadUsername() | ||
30 | { | ||
31 | $application = new Application($this->getClient()->getKernel()); | ||
32 | $application->add(new TagAllCommand()); | ||
33 | |||
34 | $command = $application->find('wallabag:tag:all'); | ||
35 | |||
36 | $tester = new CommandTester($command); | ||
37 | $tester->execute([ | ||
38 | 'command' => $command->getName(), | ||
39 | 'username' => 'unknown', | ||
40 | ]); | ||
41 | |||
42 | $this->assertContains('User "unknown" not found', $tester->getDisplay()); | ||
43 | } | ||
44 | |||
45 | public function testRunTagAllCommand() | ||
46 | { | ||
47 | $application = new Application($this->getClient()->getKernel()); | ||
48 | $application->add(new TagAllCommand()); | ||
49 | |||
50 | $command = $application->find('wallabag:tag:all'); | ||
51 | |||
52 | $tester = new CommandTester($command); | ||
53 | $tester->execute([ | ||
54 | 'command' => $command->getName(), | ||
55 | 'username' => 'admin', | ||
56 | ]); | ||
57 | |||
58 | $this->assertContains('Tagging entries for user « admin »... Done', $tester->getDisplay()); | ||
59 | } | ||
60 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php deleted file mode 100644 index 8cdedfda..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php +++ /dev/null | |||
@@ -1,652 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | class ConfigControllerTest extends WallabagCoreTestCase | ||
8 | { | ||
9 | public function testLogin() | ||
10 | { | ||
11 | $client = $this->getClient(); | ||
12 | |||
13 | $client->request('GET', '/new'); | ||
14 | |||
15 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
16 | $this->assertContains('login', $client->getResponse()->headers->get('location')); | ||
17 | } | ||
18 | |||
19 | public function testIndex() | ||
20 | { | ||
21 | $this->logInAs('admin'); | ||
22 | $client = $this->getClient(); | ||
23 | |||
24 | $crawler = $client->request('GET', '/config'); | ||
25 | |||
26 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
27 | |||
28 | $this->assertCount(1, $crawler->filter('button[id=config_save]')); | ||
29 | $this->assertCount(1, $crawler->filter('button[id=change_passwd_save]')); | ||
30 | $this->assertCount(1, $crawler->filter('button[id=update_user_save]')); | ||
31 | $this->assertCount(1, $crawler->filter('button[id=new_user_save]')); | ||
32 | $this->assertCount(1, $crawler->filter('button[id=rss_config_save]')); | ||
33 | } | ||
34 | |||
35 | public function testUpdate() | ||
36 | { | ||
37 | $this->logInAs('admin'); | ||
38 | $client = $this->getClient(); | ||
39 | |||
40 | $crawler = $client->request('GET', '/config'); | ||
41 | |||
42 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
43 | |||
44 | $form = $crawler->filter('button[id=config_save]')->form(); | ||
45 | |||
46 | $data = [ | ||
47 | 'config[theme]' => 'baggy', | ||
48 | 'config[items_per_page]' => '30', | ||
49 | 'config[reading_speed]' => '0.5', | ||
50 | 'config[language]' => 'en', | ||
51 | ]; | ||
52 | |||
53 | $client->submit($form, $data); | ||
54 | |||
55 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
56 | |||
57 | $crawler = $client->followRedirect(); | ||
58 | |||
59 | $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(['_text'])); | ||
60 | $this->assertContains('flashes.config.notice.config_saved', $alert[0]); | ||
61 | } | ||
62 | |||
63 | public function testChangeReadingSpeed() | ||
64 | { | ||
65 | $this->logInAs('admin'); | ||
66 | $client = $this->getClient(); | ||
67 | |||
68 | $crawler = $client->request('GET', '/unread/list'); | ||
69 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
70 | $dataFilters = [ | ||
71 | 'entry_filter[readingTime][right_number]' => 22, | ||
72 | 'entry_filter[readingTime][left_number]' => 22, | ||
73 | ]; | ||
74 | $crawler = $client->submit($form, $dataFilters); | ||
75 | $this->assertCount(1, $crawler->filter('div[class=entry]')); | ||
76 | |||
77 | // Change reading speed | ||
78 | $crawler = $client->request('GET', '/config'); | ||
79 | $form = $crawler->filter('button[id=config_save]')->form(); | ||
80 | $data = [ | ||
81 | 'config[reading_speed]' => '2', | ||
82 | ]; | ||
83 | $client->submit($form, $data); | ||
84 | |||
85 | // Is the entry still available via filters? | ||
86 | $crawler = $client->request('GET', '/unread/list'); | ||
87 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
88 | $crawler = $client->submit($form, $dataFilters); | ||
89 | $this->assertCount(0, $crawler->filter('div[class=entry]')); | ||
90 | |||
91 | // Restore old configuration | ||
92 | $crawler = $client->request('GET', '/config'); | ||
93 | $form = $crawler->filter('button[id=config_save]')->form(); | ||
94 | $data = [ | ||
95 | 'config[reading_speed]' => '0.5', | ||
96 | ]; | ||
97 | $client->submit($form, $data); | ||
98 | } | ||
99 | |||
100 | public function dataForUpdateFailed() | ||
101 | { | ||
102 | return [ | ||
103 | [[ | ||
104 | 'config[theme]' => 'baggy', | ||
105 | 'config[items_per_page]' => '', | ||
106 | 'config[language]' => 'en', | ||
107 | ]], | ||
108 | ]; | ||
109 | } | ||
110 | |||
111 | /** | ||
112 | * @dataProvider dataForUpdateFailed | ||
113 | */ | ||
114 | public function testUpdateFailed($data) | ||
115 | { | ||
116 | $this->logInAs('admin'); | ||
117 | $client = $this->getClient(); | ||
118 | |||
119 | $crawler = $client->request('GET', '/config'); | ||
120 | |||
121 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
122 | |||
123 | $form = $crawler->filter('button[id=config_save]')->form(); | ||
124 | |||
125 | $crawler = $client->submit($form, $data); | ||
126 | |||
127 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
128 | |||
129 | $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text'])); | ||
130 | $this->assertContains('This value should not be blank', $alert[0]); | ||
131 | } | ||
132 | |||
133 | public function dataForChangePasswordFailed() | ||
134 | { | ||
135 | return [ | ||
136 | [ | ||
137 | [ | ||
138 | 'change_passwd[old_password]' => 'material', | ||
139 | 'change_passwd[new_password][first]' => '', | ||
140 | 'change_passwd[new_password][second]' => '', | ||
141 | ], | ||
142 | 'validator.password_wrong_value', | ||
143 | ], | ||
144 | [ | ||
145 | [ | ||
146 | 'change_passwd[old_password]' => 'mypassword', | ||
147 | 'change_passwd[new_password][first]' => '', | ||
148 | 'change_passwd[new_password][second]' => '', | ||
149 | ], | ||
150 | 'This value should not be blank', | ||
151 | ], | ||
152 | [ | ||
153 | [ | ||
154 | 'change_passwd[old_password]' => 'mypassword', | ||
155 | 'change_passwd[new_password][first]' => 'hop', | ||
156 | 'change_passwd[new_password][second]' => '', | ||
157 | ], | ||
158 | 'validator.password_must_match', | ||
159 | ], | ||
160 | [ | ||
161 | [ | ||
162 | 'change_passwd[old_password]' => 'mypassword', | ||
163 | 'change_passwd[new_password][first]' => 'hop', | ||
164 | 'change_passwd[new_password][second]' => 'hop', | ||
165 | ], | ||
166 | 'validator.password_too_short', | ||
167 | ], | ||
168 | ]; | ||
169 | } | ||
170 | |||
171 | /** | ||
172 | * @dataProvider dataForChangePasswordFailed | ||
173 | */ | ||
174 | public function testChangePasswordFailed($data, $expectedMessage) | ||
175 | { | ||
176 | $this->logInAs('admin'); | ||
177 | $client = $this->getClient(); | ||
178 | |||
179 | $crawler = $client->request('GET', '/config'); | ||
180 | |||
181 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
182 | |||
183 | $form = $crawler->filter('button[id=change_passwd_save]')->form(); | ||
184 | |||
185 | $crawler = $client->submit($form, $data); | ||
186 | |||
187 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
188 | |||
189 | $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text'])); | ||
190 | $this->assertContains($expectedMessage, $alert[0]); | ||
191 | } | ||
192 | |||
193 | public function testChangePassword() | ||
194 | { | ||
195 | $this->logInAs('admin'); | ||
196 | $client = $this->getClient(); | ||
197 | |||
198 | $crawler = $client->request('GET', '/config'); | ||
199 | |||
200 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
201 | |||
202 | $form = $crawler->filter('button[id=change_passwd_save]')->form(); | ||
203 | |||
204 | $data = [ | ||
205 | 'change_passwd[old_password]' => 'mypassword', | ||
206 | 'change_passwd[new_password][first]' => 'mypassword', | ||
207 | 'change_passwd[new_password][second]' => 'mypassword', | ||
208 | ]; | ||
209 | |||
210 | $client->submit($form, $data); | ||
211 | |||
212 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
213 | |||
214 | $crawler = $client->followRedirect(); | ||
215 | |||
216 | $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(['_text'])); | ||
217 | $this->assertContains('flashes.config.notice.password_updated', $alert[0]); | ||
218 | } | ||
219 | |||
220 | public function dataForUserFailed() | ||
221 | { | ||
222 | return [ | ||
223 | [ | ||
224 | [ | ||
225 | 'update_user[name]' => '', | ||
226 | 'update_user[email]' => '', | ||
227 | ], | ||
228 | 'fos_user.email.blank', | ||
229 | ], | ||
230 | [ | ||
231 | [ | ||
232 | 'update_user[name]' => '', | ||
233 | 'update_user[email]' => 'test', | ||
234 | ], | ||
235 | 'fos_user.email.invalid', | ||
236 | ], | ||
237 | ]; | ||
238 | } | ||
239 | |||
240 | /** | ||
241 | * @dataProvider dataForUserFailed | ||
242 | */ | ||
243 | public function testUserFailed($data, $expectedMessage) | ||
244 | { | ||
245 | $this->logInAs('admin'); | ||
246 | $client = $this->getClient(); | ||
247 | |||
248 | $crawler = $client->request('GET', '/config'); | ||
249 | |||
250 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
251 | |||
252 | $form = $crawler->filter('button[id=update_user_save]')->form(); | ||
253 | |||
254 | $crawler = $client->submit($form, $data); | ||
255 | |||
256 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
257 | |||
258 | $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text'])); | ||
259 | $this->assertContains($expectedMessage, $alert[0]); | ||
260 | } | ||
261 | |||
262 | public function testUserUpdate() | ||
263 | { | ||
264 | $this->logInAs('admin'); | ||
265 | $client = $this->getClient(); | ||
266 | |||
267 | $crawler = $client->request('GET', '/config'); | ||
268 | |||
269 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
270 | |||
271 | $form = $crawler->filter('button[id=update_user_save]')->form(); | ||
272 | |||
273 | $data = [ | ||
274 | 'update_user[name]' => 'new name', | ||
275 | 'update_user[email]' => 'admin@wallabag.io', | ||
276 | ]; | ||
277 | |||
278 | $client->submit($form, $data); | ||
279 | |||
280 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
281 | |||
282 | $crawler = $client->followRedirect(); | ||
283 | |||
284 | $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text'])); | ||
285 | $this->assertContains('flashes.config.notice.user_updated', $alert[0]); | ||
286 | } | ||
287 | |||
288 | public function dataForNewUserFailed() | ||
289 | { | ||
290 | return [ | ||
291 | [ | ||
292 | [ | ||
293 | 'new_user[username]' => '', | ||
294 | 'new_user[plainPassword][first]' => '', | ||
295 | 'new_user[plainPassword][second]' => '', | ||
296 | 'new_user[email]' => '', | ||
297 | ], | ||
298 | 'fos_user.username.blank', | ||
299 | ], | ||
300 | [ | ||
301 | [ | ||
302 | 'new_user[username]' => 'a', | ||
303 | 'new_user[plainPassword][first]' => 'mypassword', | ||
304 | 'new_user[plainPassword][second]' => 'mypassword', | ||
305 | 'new_user[email]' => '', | ||
306 | ], | ||
307 | 'fos_user.username.short', | ||
308 | ], | ||
309 | [ | ||
310 | [ | ||
311 | 'new_user[username]' => 'wallace', | ||
312 | 'new_user[plainPassword][first]' => 'mypassword', | ||
313 | 'new_user[plainPassword][second]' => 'mypassword', | ||
314 | 'new_user[email]' => 'test', | ||
315 | ], | ||
316 | 'fos_user.email.invalid', | ||
317 | ], | ||
318 | [ | ||
319 | [ | ||
320 | 'new_user[username]' => 'admin', | ||
321 | 'new_user[plainPassword][first]' => 'wallacewallace', | ||
322 | 'new_user[plainPassword][second]' => 'wallacewallace', | ||
323 | 'new_user[email]' => 'wallace@wallace.me', | ||
324 | ], | ||
325 | 'fos_user.username.already_used', | ||
326 | ], | ||
327 | [ | ||
328 | [ | ||
329 | 'new_user[username]' => 'wallace', | ||
330 | 'new_user[plainPassword][first]' => 'mypassword1', | ||
331 | 'new_user[plainPassword][second]' => 'mypassword2', | ||
332 | 'new_user[email]' => 'wallace@wallace.me', | ||
333 | ], | ||
334 | 'validator.password_must_match', | ||
335 | ], | ||
336 | ]; | ||
337 | } | ||
338 | |||
339 | /** | ||
340 | * @dataProvider dataForNewUserFailed | ||
341 | */ | ||
342 | public function testNewUserFailed($data, $expectedMessage) | ||
343 | { | ||
344 | $this->logInAs('admin'); | ||
345 | $client = $this->getClient(); | ||
346 | |||
347 | $crawler = $client->request('GET', '/config'); | ||
348 | |||
349 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
350 | |||
351 | $form = $crawler->filter('button[id=new_user_save]')->form(); | ||
352 | |||
353 | $crawler = $client->submit($form, $data); | ||
354 | |||
355 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
356 | |||
357 | $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text'])); | ||
358 | $this->assertContains($expectedMessage, $alert[0]); | ||
359 | } | ||
360 | |||
361 | public function testNewUserCreated() | ||
362 | { | ||
363 | $this->logInAs('admin'); | ||
364 | $client = $this->getClient(); | ||
365 | |||
366 | $crawler = $client->request('GET', '/config'); | ||
367 | |||
368 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
369 | |||
370 | $form = $crawler->filter('button[id=new_user_save]')->form(); | ||
371 | |||
372 | $data = [ | ||
373 | 'new_user[username]' => 'wallace', | ||
374 | 'new_user[plainPassword][first]' => 'wallace1', | ||
375 | 'new_user[plainPassword][second]' => 'wallace1', | ||
376 | 'new_user[email]' => 'wallace@wallace.me', | ||
377 | ]; | ||
378 | |||
379 | $client->submit($form, $data); | ||
380 | |||
381 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
382 | |||
383 | $crawler = $client->followRedirect(); | ||
384 | |||
385 | $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(['_text'])); | ||
386 | $this->assertContains('flashes.config.notice.user_added', $alert[0]); | ||
387 | |||
388 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
389 | $user = $em | ||
390 | ->getRepository('WallabagUserBundle:User') | ||
391 | ->findOneByUsername('wallace'); | ||
392 | |||
393 | $this->assertTrue(false !== $user); | ||
394 | $this->assertTrue($user->isEnabled()); | ||
395 | $this->assertEquals('material', $user->getConfig()->getTheme()); | ||
396 | $this->assertEquals(12, $user->getConfig()->getItemsPerPage()); | ||
397 | $this->assertEquals(50, $user->getConfig()->getRssLimit()); | ||
398 | $this->assertEquals('en', $user->getConfig()->getLanguage()); | ||
399 | $this->assertEquals(1, $user->getConfig()->getReadingSpeed()); | ||
400 | } | ||
401 | |||
402 | public function testRssUpdateResetToken() | ||
403 | { | ||
404 | $this->logInAs('admin'); | ||
405 | $client = $this->getClient(); | ||
406 | |||
407 | // reset the token | ||
408 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
409 | $user = $em | ||
410 | ->getRepository('WallabagUserBundle:User') | ||
411 | ->findOneByUsername('admin'); | ||
412 | |||
413 | if (!$user) { | ||
414 | $this->markTestSkipped('No user found in db.'); | ||
415 | } | ||
416 | |||
417 | $config = $user->getConfig(); | ||
418 | $config->setRssToken(null); | ||
419 | $em->persist($config); | ||
420 | $em->flush(); | ||
421 | |||
422 | $crawler = $client->request('GET', '/config'); | ||
423 | |||
424 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
425 | |||
426 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | ||
427 | $this->assertContains('config.form_rss.no_token', $body[0]); | ||
428 | |||
429 | $client->request('GET', '/generate-token'); | ||
430 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
431 | |||
432 | $crawler = $client->followRedirect(); | ||
433 | |||
434 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | ||
435 | $this->assertNotContains('config.form_rss.no_token', $body[0]); | ||
436 | } | ||
437 | |||
438 | public function testGenerateTokenAjax() | ||
439 | { | ||
440 | $this->logInAs('admin'); | ||
441 | $client = $this->getClient(); | ||
442 | |||
443 | $client->request( | ||
444 | 'GET', | ||
445 | '/generate-token', | ||
446 | [], | ||
447 | [], | ||
448 | ['HTTP_X-Requested-With' => 'XMLHttpRequest'] | ||
449 | ); | ||
450 | |||
451 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
452 | $content = json_decode($client->getResponse()->getContent(), true); | ||
453 | $this->assertArrayHasKey('token', $content); | ||
454 | } | ||
455 | |||
456 | public function testRssUpdate() | ||
457 | { | ||
458 | $this->logInAs('admin'); | ||
459 | $client = $this->getClient(); | ||
460 | |||
461 | $crawler = $client->request('GET', '/config'); | ||
462 | |||
463 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
464 | |||
465 | $form = $crawler->filter('button[id=rss_config_save]')->form(); | ||
466 | |||
467 | $data = [ | ||
468 | 'rss_config[rss_limit]' => 12, | ||
469 | ]; | ||
470 | |||
471 | $client->submit($form, $data); | ||
472 | |||
473 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
474 | |||
475 | $crawler = $client->followRedirect(); | ||
476 | |||
477 | $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(['_text'])); | ||
478 | $this->assertContains('flashes.config.notice.rss_updated', $alert[0]); | ||
479 | } | ||
480 | |||
481 | public function dataForRssFailed() | ||
482 | { | ||
483 | return [ | ||
484 | [ | ||
485 | [ | ||
486 | 'rss_config[rss_limit]' => 0, | ||
487 | ], | ||
488 | 'This value should be 1 or more.', | ||
489 | ], | ||
490 | [ | ||
491 | [ | ||
492 | 'rss_config[rss_limit]' => 1000000000000, | ||
493 | ], | ||
494 | 'validator.rss_limit_too_hight', | ||
495 | ], | ||
496 | ]; | ||
497 | } | ||
498 | |||
499 | /** | ||
500 | * @dataProvider dataForRssFailed | ||
501 | */ | ||
502 | public function testRssFailed($data, $expectedMessage) | ||
503 | { | ||
504 | $this->logInAs('admin'); | ||
505 | $client = $this->getClient(); | ||
506 | |||
507 | $crawler = $client->request('GET', '/config'); | ||
508 | |||
509 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
510 | |||
511 | $form = $crawler->filter('button[id=rss_config_save]')->form(); | ||
512 | |||
513 | $crawler = $client->submit($form, $data); | ||
514 | |||
515 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
516 | |||
517 | $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text'])); | ||
518 | $this->assertContains($expectedMessage, $alert[0]); | ||
519 | } | ||
520 | |||
521 | public function testTaggingRuleCreation() | ||
522 | { | ||
523 | $this->logInAs('admin'); | ||
524 | $client = $this->getClient(); | ||
525 | |||
526 | $crawler = $client->request('GET', '/config'); | ||
527 | |||
528 | $this->assertTrue($client->getResponse()->isSuccessful()); | ||
529 | |||
530 | $form = $crawler->filter('button[id=tagging_rule_save]')->form(); | ||
531 | |||
532 | $data = [ | ||
533 | 'tagging_rule[rule]' => 'readingTime <= 3', | ||
534 | 'tagging_rule[tags]' => 'short reading', | ||
535 | ]; | ||
536 | |||
537 | $client->submit($form, $data); | ||
538 | |||
539 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
540 | |||
541 | $crawler = $client->followRedirect(); | ||
542 | |||
543 | $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(['_text'])); | ||
544 | $this->assertContains('flashes.config.notice.tagging_rules_updated', $alert[0]); | ||
545 | |||
546 | $deleteLink = $crawler->filter('.delete')->last()->link(); | ||
547 | |||
548 | $crawler = $client->click($deleteLink); | ||
549 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
550 | |||
551 | $crawler = $client->followRedirect(); | ||
552 | $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(['_text'])); | ||
553 | $this->assertContains('flashes.config.notice.tagging_rules_deleted', $alert[0]); | ||
554 | } | ||
555 | |||
556 | public function dataForTaggingRuleFailed() | ||
557 | { | ||
558 | return [ | ||
559 | [ | ||
560 | [ | ||
561 | 'tagging_rule[rule]' => 'unknownVar <= 3', | ||
562 | 'tagging_rule[tags]' => 'cool tag', | ||
563 | ], | ||
564 | [ | ||
565 | 'The variable', | ||
566 | 'does not exist.', | ||
567 | ], | ||
568 | ], | ||
569 | [ | ||
570 | [ | ||
571 | 'tagging_rule[rule]' => 'length(domainName) <= 42', | ||
572 | 'tagging_rule[tags]' => 'cool tag', | ||
573 | ], | ||
574 | [ | ||
575 | 'The operator', | ||
576 | 'does not exist.', | ||
577 | ], | ||
578 | ], | ||
579 | ]; | ||
580 | } | ||
581 | |||
582 | /** | ||
583 | * @dataProvider dataForTaggingRuleFailed | ||
584 | */ | ||
585 | public function testTaggingRuleCreationFail($data, $messages) | ||
586 | { | ||
587 | $this->logInAs('admin'); | ||
588 | $client = $this->getClient(); | ||
589 | |||
590 | $crawler = $client->request('GET', '/config'); | ||
591 | |||
592 | $this->assertTrue($client->getResponse()->isSuccessful()); | ||
593 | |||
594 | $form = $crawler->filter('button[id=tagging_rule_save]')->form(); | ||
595 | |||
596 | $crawler = $client->submit($form, $data); | ||
597 | |||
598 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
599 | |||
600 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | ||
601 | |||
602 | foreach ($messages as $message) { | ||
603 | $this->assertContains($message, $body[0]); | ||
604 | } | ||
605 | } | ||
606 | |||
607 | public function testDeletingTaggingRuleFromAnOtherUser() | ||
608 | { | ||
609 | $this->logInAs('bob'); | ||
610 | $client = $this->getClient(); | ||
611 | |||
612 | $rule = $client->getContainer()->get('doctrine.orm.entity_manager') | ||
613 | ->getRepository('WallabagCoreBundle:TaggingRule') | ||
614 | ->findAll()[0]; | ||
615 | |||
616 | $crawler = $client->request('GET', '/tagging-rule/delete/'.$rule->getId()); | ||
617 | |||
618 | $this->assertEquals(403, $client->getResponse()->getStatusCode()); | ||
619 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | ||
620 | $this->assertContains('You can not access this tagging rule', $body[0]); | ||
621 | } | ||
622 | |||
623 | public function testDemoMode() | ||
624 | { | ||
625 | $this->logInAs('admin'); | ||
626 | $client = $this->getClient(); | ||
627 | |||
628 | $config = $client->getContainer()->get('craue_config'); | ||
629 | $config->set('demo_mode_enabled', 1); | ||
630 | $config->set('demo_mode_username', 'admin'); | ||
631 | |||
632 | $crawler = $client->request('GET', '/config'); | ||
633 | |||
634 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
635 | |||
636 | $form = $crawler->filter('button[id=change_passwd_save]')->form(); | ||
637 | |||
638 | $data = [ | ||
639 | 'change_passwd[old_password]' => 'mypassword', | ||
640 | 'change_passwd[new_password][first]' => 'mypassword', | ||
641 | 'change_passwd[new_password][second]' => 'mypassword', | ||
642 | ]; | ||
643 | |||
644 | $client->submit($form, $data); | ||
645 | |||
646 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
647 | $this->assertContains('flashes.config.notice.password_not_updated_demo', $client->getContainer()->get('session')->getFlashBag()->get('notice')[0]); | ||
648 | |||
649 | $config->set('demo_mode_enabled', 0); | ||
650 | $config->set('demo_mode_username', 'wallabag'); | ||
651 | } | ||
652 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/DeveloperControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/DeveloperControllerTest.php deleted file mode 100644 index fc220b85..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/DeveloperControllerTest.php +++ /dev/null | |||
@@ -1,71 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | class DeveloperControllerTest extends WallabagCoreTestCase | ||
8 | { | ||
9 | public function testCreateClient() | ||
10 | { | ||
11 | $this->logInAs('admin'); | ||
12 | $client = $this->getClient(); | ||
13 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
14 | $nbClients = $em->getRepository('WallabagApiBundle:Client')->findAll(); | ||
15 | |||
16 | $crawler = $client->request('GET', '/developer/client/create'); | ||
17 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
18 | |||
19 | $form = $crawler->filter('button[type=submit]')->form(); | ||
20 | |||
21 | $client->submit($form); | ||
22 | |||
23 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
24 | |||
25 | $newNbClients = $em->getRepository('WallabagApiBundle:Client')->findAll(); | ||
26 | $this->assertGreaterThan(count($nbClients), count($newNbClients)); | ||
27 | } | ||
28 | |||
29 | public function testListingClient() | ||
30 | { | ||
31 | $this->logInAs('admin'); | ||
32 | $client = $this->getClient(); | ||
33 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
34 | $nbClients = $em->getRepository('WallabagApiBundle:Client')->findAll(); | ||
35 | |||
36 | $crawler = $client->request('GET', '/developer'); | ||
37 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
38 | $this->assertEquals(count($nbClients), $crawler->filter('ul[class=collapsible] li')->count()); | ||
39 | } | ||
40 | |||
41 | public function testDeveloperHowto() | ||
42 | { | ||
43 | $this->logInAs('admin'); | ||
44 | $client = $this->getClient(); | ||
45 | |||
46 | $crawler = $client->request('GET', '/developer/howto/first-app'); | ||
47 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
48 | } | ||
49 | |||
50 | public function testRemoveClient() | ||
51 | { | ||
52 | $this->logInAs('admin'); | ||
53 | $client = $this->getClient(); | ||
54 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
55 | $nbClients = $em->getRepository('WallabagApiBundle:Client')->findAll(); | ||
56 | |||
57 | $crawler = $client->request('GET', '/developer'); | ||
58 | |||
59 | $link = $crawler | ||
60 | ->filter('div[class=collapsible-body] p a') | ||
61 | ->eq(0) | ||
62 | ->link() | ||
63 | ; | ||
64 | |||
65 | $client->click($link); | ||
66 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
67 | |||
68 | $newNbClients = $em->getRepository('WallabagApiBundle:Client')->findAll(); | ||
69 | $this->assertGreaterThan(count($newNbClients), count($nbClients)); | ||
70 | } | ||
71 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php deleted file mode 100644 index 5ce893c1..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php +++ /dev/null | |||
@@ -1,665 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | use Wallabag\CoreBundle\Entity\Entry; | ||
7 | |||
8 | class EntryControllerTest extends WallabagCoreTestCase | ||
9 | { | ||
10 | public $url = 'http://www.lemonde.fr/pixels/article/2015/03/28/plongee-dans-l-univers-d-ingress-le-jeu-de-google-aux-frontieres-du-reel_4601155_4408996.html'; | ||
11 | |||
12 | public function testLogin() | ||
13 | { | ||
14 | $client = $this->getClient(); | ||
15 | |||
16 | $client->request('GET', '/new'); | ||
17 | |||
18 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
19 | $this->assertContains('login', $client->getResponse()->headers->get('location')); | ||
20 | } | ||
21 | |||
22 | public function testQuickstart() | ||
23 | { | ||
24 | $this->logInAs('empty'); | ||
25 | $client = $this->getClient(); | ||
26 | |||
27 | $client->request('GET', '/unread/list'); | ||
28 | $crawler = $client->followRedirect(); | ||
29 | |||
30 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
31 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | ||
32 | $this->assertContains('quickstart.intro.paragraph_1', $body[0]); | ||
33 | |||
34 | // Test if quickstart is disabled when user has 1 entry | ||
35 | $crawler = $client->request('GET', '/new'); | ||
36 | |||
37 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
38 | |||
39 | $form = $crawler->filter('form[name=entry]')->form(); | ||
40 | |||
41 | $data = [ | ||
42 | 'entry[url]' => $this->url, | ||
43 | ]; | ||
44 | |||
45 | $client->submit($form, $data); | ||
46 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
47 | $client->followRedirect(); | ||
48 | |||
49 | $crawler = $client->request('GET', '/unread/list'); | ||
50 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | ||
51 | $this->assertContains('entry.list.number_on_the_page', $body[0]); | ||
52 | } | ||
53 | |||
54 | public function testGetNew() | ||
55 | { | ||
56 | $this->logInAs('admin'); | ||
57 | $client = $this->getClient(); | ||
58 | |||
59 | $crawler = $client->request('GET', '/new'); | ||
60 | |||
61 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
62 | |||
63 | $this->assertCount(1, $crawler->filter('input[type=url]')); | ||
64 | $this->assertCount(1, $crawler->filter('form[name=entry]')); | ||
65 | } | ||
66 | |||
67 | public function testPostNewViaBookmarklet() | ||
68 | { | ||
69 | $this->logInAs('admin'); | ||
70 | $client = $this->getClient(); | ||
71 | |||
72 | $crawler = $client->request('GET', '/'); | ||
73 | |||
74 | $this->assertCount(4, $crawler->filter('div[class=entry]')); | ||
75 | |||
76 | // Good URL | ||
77 | $client->request('GET', '/bookmarklet', ['url' => $this->url]); | ||
78 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
79 | $client->followRedirect(); | ||
80 | $crawler = $client->request('GET', '/'); | ||
81 | $this->assertCount(5, $crawler->filter('div[class=entry]')); | ||
82 | |||
83 | $em = $client->getContainer() | ||
84 | ->get('doctrine.orm.entity_manager'); | ||
85 | $entry = $em | ||
86 | ->getRepository('WallabagCoreBundle:Entry') | ||
87 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
88 | $em->remove($entry); | ||
89 | $em->flush(); | ||
90 | } | ||
91 | |||
92 | public function testPostNewEmpty() | ||
93 | { | ||
94 | $this->logInAs('admin'); | ||
95 | $client = $this->getClient(); | ||
96 | |||
97 | $crawler = $client->request('GET', '/new'); | ||
98 | |||
99 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
100 | |||
101 | $form = $crawler->filter('form[name=entry]')->form(); | ||
102 | |||
103 | $crawler = $client->submit($form); | ||
104 | |||
105 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
106 | $this->assertCount(1, $alert = $crawler->filter('form ul li')->extract(['_text'])); | ||
107 | $this->assertEquals('This value should not be blank.', $alert[0]); | ||
108 | } | ||
109 | |||
110 | /** | ||
111 | * This test will require an internet connection. | ||
112 | */ | ||
113 | public function testPostNewOk() | ||
114 | { | ||
115 | $this->logInAs('admin'); | ||
116 | $client = $this->getClient(); | ||
117 | |||
118 | $crawler = $client->request('GET', '/new'); | ||
119 | |||
120 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
121 | |||
122 | $form = $crawler->filter('form[name=entry]')->form(); | ||
123 | |||
124 | $data = [ | ||
125 | 'entry[url]' => $this->url, | ||
126 | ]; | ||
127 | |||
128 | $client->submit($form, $data); | ||
129 | |||
130 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
131 | |||
132 | $content = $client->getContainer() | ||
133 | ->get('doctrine.orm.entity_manager') | ||
134 | ->getRepository('WallabagCoreBundle:Entry') | ||
135 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
136 | |||
137 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); | ||
138 | $this->assertEquals($this->url, $content->getUrl()); | ||
139 | $this->assertContains('Google', $content->getTitle()); | ||
140 | } | ||
141 | |||
142 | public function testPostNewOkUrlExist() | ||
143 | { | ||
144 | $this->logInAs('admin'); | ||
145 | $client = $this->getClient(); | ||
146 | |||
147 | $crawler = $client->request('GET', '/new'); | ||
148 | |||
149 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
150 | |||
151 | $form = $crawler->filter('form[name=entry]')->form(); | ||
152 | |||
153 | $data = [ | ||
154 | 'entry[url]' => $this->url, | ||
155 | ]; | ||
156 | |||
157 | $client->submit($form, $data); | ||
158 | |||
159 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
160 | $this->assertContains('/view/', $client->getResponse()->getTargetUrl()); | ||
161 | } | ||
162 | |||
163 | /** | ||
164 | * This test will require an internet connection. | ||
165 | */ | ||
166 | public function testPostNewThatWillBeTagged() | ||
167 | { | ||
168 | $this->logInAs('admin'); | ||
169 | $client = $this->getClient(); | ||
170 | |||
171 | $crawler = $client->request('GET', '/new'); | ||
172 | |||
173 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
174 | |||
175 | $form = $crawler->filter('form[name=entry]')->form(); | ||
176 | |||
177 | $data = [ | ||
178 | 'entry[url]' => $url = 'https://github.com/wallabag/wallabag', | ||
179 | ]; | ||
180 | |||
181 | $client->submit($form, $data); | ||
182 | |||
183 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
184 | $this->assertContains('/', $client->getResponse()->getTargetUrl()); | ||
185 | |||
186 | $em = $client->getContainer() | ||
187 | ->get('doctrine.orm.entity_manager'); | ||
188 | $entry = $em | ||
189 | ->getRepository('WallabagCoreBundle:Entry') | ||
190 | ->findOneByUrl($url); | ||
191 | $tags = $entry->getTags(); | ||
192 | |||
193 | $this->assertCount(1, $tags); | ||
194 | $this->assertEquals('wallabag', $tags[0]->getLabel()); | ||
195 | |||
196 | $em->remove($entry); | ||
197 | $em->flush(); | ||
198 | |||
199 | // and now re-submit it to test the cascade persistence for tags after entry removal | ||
200 | // related https://github.com/wallabag/wallabag/issues/2121 | ||
201 | $crawler = $client->request('GET', '/new'); | ||
202 | |||
203 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
204 | |||
205 | $form = $crawler->filter('form[name=entry]')->form(); | ||
206 | |||
207 | $data = [ | ||
208 | 'entry[url]' => $url = 'https://github.com/wallabag/wallabag/tree/master', | ||
209 | ]; | ||
210 | |||
211 | $client->submit($form, $data); | ||
212 | |||
213 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
214 | $this->assertContains('/', $client->getResponse()->getTargetUrl()); | ||
215 | |||
216 | $entry = $em | ||
217 | ->getRepository('WallabagCoreBundle:Entry') | ||
218 | ->findOneByUrl($url); | ||
219 | |||
220 | $tags = $entry->getTags(); | ||
221 | |||
222 | $this->assertCount(1, $tags); | ||
223 | $this->assertEquals('wallabag', $tags[0]->getLabel()); | ||
224 | |||
225 | $em->remove($entry); | ||
226 | $em->flush(); | ||
227 | } | ||
228 | |||
229 | public function testArchive() | ||
230 | { | ||
231 | $this->logInAs('admin'); | ||
232 | $client = $this->getClient(); | ||
233 | |||
234 | $client->request('GET', '/archive/list'); | ||
235 | |||
236 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
237 | } | ||
238 | |||
239 | public function testStarred() | ||
240 | { | ||
241 | $this->logInAs('admin'); | ||
242 | $client = $this->getClient(); | ||
243 | |||
244 | $client->request('GET', '/starred/list'); | ||
245 | |||
246 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
247 | } | ||
248 | |||
249 | public function testRangeException() | ||
250 | { | ||
251 | $this->logInAs('admin'); | ||
252 | $client = $this->getClient(); | ||
253 | |||
254 | $client->request('GET', '/all/list/900'); | ||
255 | |||
256 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
257 | $this->assertEquals('/all/list', $client->getResponse()->getTargetUrl()); | ||
258 | } | ||
259 | |||
260 | /** | ||
261 | * @depends testPostNewOk | ||
262 | */ | ||
263 | public function testView() | ||
264 | { | ||
265 | $this->logInAs('admin'); | ||
266 | $client = $this->getClient(); | ||
267 | |||
268 | $content = $client->getContainer() | ||
269 | ->get('doctrine.orm.entity_manager') | ||
270 | ->getRepository('WallabagCoreBundle:Entry') | ||
271 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
272 | |||
273 | $crawler = $client->request('GET', '/view/'.$content->getId()); | ||
274 | |||
275 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
276 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | ||
277 | $this->assertContains($content->getTitle(), $body[0]); | ||
278 | } | ||
279 | |||
280 | /** | ||
281 | * @depends testPostNewOk | ||
282 | * | ||
283 | * This test will require an internet connection. | ||
284 | */ | ||
285 | public function testReload() | ||
286 | { | ||
287 | $this->logInAs('admin'); | ||
288 | $client = $this->getClient(); | ||
289 | |||
290 | $content = $client->getContainer() | ||
291 | ->get('doctrine.orm.entity_manager') | ||
292 | ->getRepository('WallabagCoreBundle:Entry') | ||
293 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
294 | |||
295 | // empty content | ||
296 | $content->setContent(''); | ||
297 | $client->getContainer()->get('doctrine.orm.entity_manager')->persist($content); | ||
298 | $client->getContainer()->get('doctrine.orm.entity_manager')->flush(); | ||
299 | |||
300 | $client->request('GET', '/reload/'.$content->getId()); | ||
301 | |||
302 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
303 | |||
304 | $content = $client->getContainer() | ||
305 | ->get('doctrine.orm.entity_manager') | ||
306 | ->getRepository('WallabagCoreBundle:Entry') | ||
307 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
308 | |||
309 | $this->assertNotEmpty($content->getContent()); | ||
310 | } | ||
311 | |||
312 | public function testEdit() | ||
313 | { | ||
314 | $this->logInAs('admin'); | ||
315 | $client = $this->getClient(); | ||
316 | |||
317 | $content = $client->getContainer() | ||
318 | ->get('doctrine.orm.entity_manager') | ||
319 | ->getRepository('WallabagCoreBundle:Entry') | ||
320 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
321 | |||
322 | $crawler = $client->request('GET', '/edit/'.$content->getId()); | ||
323 | |||
324 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
325 | |||
326 | $this->assertCount(1, $crawler->filter('input[id=entry_title]')); | ||
327 | $this->assertCount(1, $crawler->filter('button[id=entry_save]')); | ||
328 | } | ||
329 | |||
330 | public function testEditUpdate() | ||
331 | { | ||
332 | $this->logInAs('admin'); | ||
333 | $client = $this->getClient(); | ||
334 | |||
335 | $content = $client->getContainer() | ||
336 | ->get('doctrine.orm.entity_manager') | ||
337 | ->getRepository('WallabagCoreBundle:Entry') | ||
338 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
339 | |||
340 | $crawler = $client->request('GET', '/edit/'.$content->getId()); | ||
341 | |||
342 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
343 | |||
344 | $form = $crawler->filter('button[type=submit]')->form(); | ||
345 | |||
346 | $data = [ | ||
347 | 'entry[title]' => 'My updated title hehe :)', | ||
348 | ]; | ||
349 | |||
350 | $client->submit($form, $data); | ||
351 | |||
352 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
353 | |||
354 | $crawler = $client->followRedirect(); | ||
355 | |||
356 | $this->assertGreaterThan(1, $alert = $crawler->filter('div[id=article] h1')->extract(['_text'])); | ||
357 | $this->assertContains('My updated title hehe :)', $alert[0]); | ||
358 | } | ||
359 | |||
360 | public function testToggleArchive() | ||
361 | { | ||
362 | $this->logInAs('admin'); | ||
363 | $client = $this->getClient(); | ||
364 | |||
365 | $content = $client->getContainer() | ||
366 | ->get('doctrine.orm.entity_manager') | ||
367 | ->getRepository('WallabagCoreBundle:Entry') | ||
368 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
369 | |||
370 | $client->request('GET', '/archive/'.$content->getId()); | ||
371 | |||
372 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
373 | |||
374 | $res = $client->getContainer() | ||
375 | ->get('doctrine.orm.entity_manager') | ||
376 | ->getRepository('WallabagCoreBundle:Entry') | ||
377 | ->find($content->getId()); | ||
378 | |||
379 | $this->assertEquals($res->isArchived(), true); | ||
380 | } | ||
381 | |||
382 | public function testToggleStar() | ||
383 | { | ||
384 | $this->logInAs('admin'); | ||
385 | $client = $this->getClient(); | ||
386 | |||
387 | $content = $client->getContainer() | ||
388 | ->get('doctrine.orm.entity_manager') | ||
389 | ->getRepository('WallabagCoreBundle:Entry') | ||
390 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
391 | |||
392 | $client->request('GET', '/star/'.$content->getId()); | ||
393 | |||
394 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
395 | |||
396 | $res = $client->getContainer() | ||
397 | ->get('doctrine.orm.entity_manager') | ||
398 | ->getRepository('WallabagCoreBundle:Entry') | ||
399 | ->findOneById($content->getId()); | ||
400 | |||
401 | $this->assertEquals($res->isStarred(), true); | ||
402 | } | ||
403 | |||
404 | public function testDelete() | ||
405 | { | ||
406 | $this->logInAs('admin'); | ||
407 | $client = $this->getClient(); | ||
408 | |||
409 | $content = $client->getContainer() | ||
410 | ->get('doctrine.orm.entity_manager') | ||
411 | ->getRepository('WallabagCoreBundle:Entry') | ||
412 | ->findByUrlAndUserId($this->url, $this->getLoggedInUserId()); | ||
413 | |||
414 | $client->request('GET', '/delete/'.$content->getId()); | ||
415 | |||
416 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
417 | |||
418 | $client->request('GET', '/delete/'.$content->getId()); | ||
419 | |||
420 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
421 | } | ||
422 | |||
423 | /** | ||
424 | * It will create a new entry. | ||
425 | * Browse to it. | ||
426 | * Then remove it. | ||
427 | * | ||
428 | * And it'll check that user won't be redirected to the view page of the content when it had been removed | ||
429 | */ | ||
430 | public function testViewAndDelete() | ||
431 | { | ||
432 | $this->logInAs('admin'); | ||
433 | $client = $this->getClient(); | ||
434 | |||
435 | // add a new content to be removed later | ||
436 | $user = $client->getContainer() | ||
437 | ->get('doctrine.orm.entity_manager') | ||
438 | ->getRepository('WallabagUserBundle:User') | ||
439 | ->findOneByUserName('admin'); | ||
440 | |||
441 | $content = new Entry($user); | ||
442 | $content->setUrl('http://1.1.1.1/entry'); | ||
443 | $content->setReadingTime(12); | ||
444 | $content->setDomainName('domain.io'); | ||
445 | $content->setMimetype('text/html'); | ||
446 | $content->setTitle('test title entry'); | ||
447 | $content->setContent('This is my content /o/'); | ||
448 | $content->setArchived(true); | ||
449 | $content->setLanguage('fr'); | ||
450 | |||
451 | $client->getContainer() | ||
452 | ->get('doctrine.orm.entity_manager') | ||
453 | ->persist($content); | ||
454 | $client->getContainer() | ||
455 | ->get('doctrine.orm.entity_manager') | ||
456 | ->flush(); | ||
457 | |||
458 | $client->request('GET', '/view/'.$content->getId()); | ||
459 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
460 | |||
461 | $client->request('GET', '/delete/'.$content->getId()); | ||
462 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
463 | |||
464 | $client->followRedirect(); | ||
465 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
466 | } | ||
467 | |||
468 | public function testViewOtherUserEntry() | ||
469 | { | ||
470 | $this->logInAs('admin'); | ||
471 | $client = $this->getClient(); | ||
472 | |||
473 | $content = $client->getContainer() | ||
474 | ->get('doctrine.orm.entity_manager') | ||
475 | ->getRepository('WallabagCoreBundle:Entry') | ||
476 | ->findOneByUsernameAndNotArchived('bob'); | ||
477 | |||
478 | $client->request('GET', '/view/'.$content->getId()); | ||
479 | |||
480 | $this->assertEquals(403, $client->getResponse()->getStatusCode()); | ||
481 | } | ||
482 | |||
483 | public function testFilterOnReadingTime() | ||
484 | { | ||
485 | $this->logInAs('admin'); | ||
486 | $client = $this->getClient(); | ||
487 | |||
488 | $crawler = $client->request('GET', '/unread/list'); | ||
489 | |||
490 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
491 | |||
492 | $data = [ | ||
493 | 'entry_filter[readingTime][right_number]' => 22, | ||
494 | 'entry_filter[readingTime][left_number]' => 22, | ||
495 | ]; | ||
496 | |||
497 | $crawler = $client->submit($form, $data); | ||
498 | |||
499 | $this->assertCount(1, $crawler->filter('div[class=entry]')); | ||
500 | } | ||
501 | |||
502 | public function testFilterOnUnreadStatus() | ||
503 | { | ||
504 | $this->logInAs('admin'); | ||
505 | $client = $this->getClient(); | ||
506 | |||
507 | $crawler = $client->request('GET', '/all/list'); | ||
508 | |||
509 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
510 | |||
511 | $data = [ | ||
512 | 'entry_filter[isUnread]' => true, | ||
513 | ]; | ||
514 | |||
515 | $crawler = $client->submit($form, $data); | ||
516 | |||
517 | $this->assertCount(4, $crawler->filter('div[class=entry]')); | ||
518 | } | ||
519 | |||
520 | public function testFilterOnCreationDate() | ||
521 | { | ||
522 | $this->logInAs('admin'); | ||
523 | $client = $this->getClient(); | ||
524 | |||
525 | $crawler = $client->request('GET', '/unread/list'); | ||
526 | |||
527 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
528 | |||
529 | $data = [ | ||
530 | 'entry_filter[createdAt][left_date]' => date('d/m/Y'), | ||
531 | 'entry_filter[createdAt][right_date]' => date('d/m/Y', strtotime('+1 day')), | ||
532 | ]; | ||
533 | |||
534 | $crawler = $client->submit($form, $data); | ||
535 | |||
536 | $this->assertCount(5, $crawler->filter('div[class=entry]')); | ||
537 | |||
538 | $data = [ | ||
539 | 'entry_filter[createdAt][left_date]' => date('d/m/Y'), | ||
540 | 'entry_filter[createdAt][right_date]' => date('d/m/Y'), | ||
541 | ]; | ||
542 | |||
543 | $crawler = $client->submit($form, $data); | ||
544 | |||
545 | $this->assertCount(5, $crawler->filter('div[class=entry]')); | ||
546 | |||
547 | $data = [ | ||
548 | 'entry_filter[createdAt][left_date]' => '01/01/1970', | ||
549 | 'entry_filter[createdAt][right_date]' => '01/01/1970', | ||
550 | ]; | ||
551 | |||
552 | $crawler = $client->submit($form, $data); | ||
553 | |||
554 | $this->assertCount(0, $crawler->filter('div[class=entry]')); | ||
555 | } | ||
556 | |||
557 | public function testPaginationWithFilter() | ||
558 | { | ||
559 | $this->logInAs('admin'); | ||
560 | $client = $this->getClient(); | ||
561 | $crawler = $client->request('GET', '/config'); | ||
562 | |||
563 | $form = $crawler->filter('button[id=config_save]')->form(); | ||
564 | |||
565 | $data = [ | ||
566 | 'config[items_per_page]' => '1', | ||
567 | ]; | ||
568 | |||
569 | $client->submit($form, $data); | ||
570 | |||
571 | $parameters = '?entry_filter%5BreadingTime%5D%5Bleft_number%5D=&entry_filter%5BreadingTime%5D%5Bright_number%5D='; | ||
572 | |||
573 | $client->request('GET', 'unread/list'.$parameters); | ||
574 | |||
575 | $this->assertContains($parameters, $client->getResponse()->getContent()); | ||
576 | |||
577 | // reset pagination | ||
578 | $crawler = $client->request('GET', '/config'); | ||
579 | $form = $crawler->filter('button[id=config_save]')->form(); | ||
580 | $data = [ | ||
581 | 'config[items_per_page]' => '12', | ||
582 | ]; | ||
583 | $client->submit($form, $data); | ||
584 | } | ||
585 | |||
586 | public function testFilterOnDomainName() | ||
587 | { | ||
588 | $this->logInAs('admin'); | ||
589 | $client = $this->getClient(); | ||
590 | |||
591 | $crawler = $client->request('GET', '/unread/list'); | ||
592 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
593 | $data = [ | ||
594 | 'entry_filter[domainName]' => 'domain', | ||
595 | ]; | ||
596 | |||
597 | $crawler = $client->submit($form, $data); | ||
598 | $this->assertCount(5, $crawler->filter('div[class=entry]')); | ||
599 | |||
600 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
601 | $data = [ | ||
602 | 'entry_filter[domainName]' => 'wallabag', | ||
603 | ]; | ||
604 | |||
605 | $crawler = $client->submit($form, $data); | ||
606 | $this->assertCount(0, $crawler->filter('div[class=entry]')); | ||
607 | } | ||
608 | |||
609 | public function testFilterOnStatus() | ||
610 | { | ||
611 | $this->logInAs('admin'); | ||
612 | $client = $this->getClient(); | ||
613 | |||
614 | $crawler = $client->request('GET', '/unread/list'); | ||
615 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
616 | $form['entry_filter[isArchived]']->tick(); | ||
617 | $form['entry_filter[isStarred]']->untick(); | ||
618 | |||
619 | $crawler = $client->submit($form); | ||
620 | $this->assertCount(1, $crawler->filter('div[class=entry]')); | ||
621 | |||
622 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
623 | $form['entry_filter[isArchived]']->untick(); | ||
624 | $form['entry_filter[isStarred]']->tick(); | ||
625 | |||
626 | $crawler = $client->submit($form); | ||
627 | $this->assertCount(1, $crawler->filter('div[class=entry]')); | ||
628 | } | ||
629 | |||
630 | public function testPreviewPictureFilter() | ||
631 | { | ||
632 | $this->logInAs('admin'); | ||
633 | $client = $this->getClient(); | ||
634 | |||
635 | $crawler = $client->request('GET', '/unread/list'); | ||
636 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
637 | $form['entry_filter[previewPicture]']->tick(); | ||
638 | |||
639 | $crawler = $client->submit($form); | ||
640 | $this->assertCount(1, $crawler->filter('div[class=entry]')); | ||
641 | } | ||
642 | |||
643 | public function testFilterOnLanguage() | ||
644 | { | ||
645 | $this->logInAs('admin'); | ||
646 | $client = $this->getClient(); | ||
647 | |||
648 | $crawler = $client->request('GET', '/unread/list'); | ||
649 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
650 | $data = [ | ||
651 | 'entry_filter[language]' => 'fr', | ||
652 | ]; | ||
653 | |||
654 | $crawler = $client->submit($form, $data); | ||
655 | $this->assertCount(2, $crawler->filter('div[class=entry]')); | ||
656 | |||
657 | $form = $crawler->filter('button[id=submit-filter]')->form(); | ||
658 | $data = [ | ||
659 | 'entry_filter[language]' => 'en', | ||
660 | ]; | ||
661 | |||
662 | $crawler = $client->submit($form, $data); | ||
663 | $this->assertCount(2, $crawler->filter('div[class=entry]')); | ||
664 | } | ||
665 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php deleted file mode 100644 index 76c98055..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php +++ /dev/null | |||
@@ -1,251 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | class ExportControllerTest extends WallabagCoreTestCase | ||
8 | { | ||
9 | public function testLogin() | ||
10 | { | ||
11 | $client = $this->getClient(); | ||
12 | |||
13 | $client->request('GET', '/export/unread.csv'); | ||
14 | |||
15 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
16 | $this->assertContains('login', $client->getResponse()->headers->get('location')); | ||
17 | } | ||
18 | |||
19 | public function testUnknownCategoryExport() | ||
20 | { | ||
21 | $this->logInAs('admin'); | ||
22 | $client = $this->getClient(); | ||
23 | |||
24 | $client->request('GET', '/export/awesomeness.epub'); | ||
25 | |||
26 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
27 | } | ||
28 | |||
29 | public function testUnknownFormatExport() | ||
30 | { | ||
31 | $this->logInAs('admin'); | ||
32 | $client = $this->getClient(); | ||
33 | |||
34 | $client->request('GET', '/export/unread.xslx'); | ||
35 | |||
36 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
37 | } | ||
38 | |||
39 | public function testUnsupportedFormatExport() | ||
40 | { | ||
41 | $this->logInAs('admin'); | ||
42 | $client = $this->getClient(); | ||
43 | |||
44 | $client->request('GET', '/export/unread.doc'); | ||
45 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
46 | |||
47 | $content = $client->getContainer() | ||
48 | ->get('doctrine.orm.entity_manager') | ||
49 | ->getRepository('WallabagCoreBundle:Entry') | ||
50 | ->findOneByUsernameAndNotArchived('admin'); | ||
51 | |||
52 | $client->request('GET', '/export/'.$content->getId().'.doc'); | ||
53 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
54 | } | ||
55 | |||
56 | public function testBadEntryId() | ||
57 | { | ||
58 | $this->logInAs('admin'); | ||
59 | $client = $this->getClient(); | ||
60 | |||
61 | $client->request('GET', '/export/0.mobi'); | ||
62 | |||
63 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
64 | } | ||
65 | |||
66 | public function testEpubExport() | ||
67 | { | ||
68 | $this->logInAs('admin'); | ||
69 | $client = $this->getClient(); | ||
70 | |||
71 | ob_start(); | ||
72 | $crawler = $client->request('GET', '/export/archive.epub'); | ||
73 | ob_end_clean(); | ||
74 | |||
75 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
76 | |||
77 | $headers = $client->getResponse()->headers; | ||
78 | $this->assertEquals('application/epub+zip', $headers->get('content-type')); | ||
79 | $this->assertEquals('attachment; filename="Archive articles.epub"', $headers->get('content-disposition')); | ||
80 | $this->assertEquals('binary', $headers->get('content-transfer-encoding')); | ||
81 | } | ||
82 | |||
83 | public function testMobiExport() | ||
84 | { | ||
85 | $this->logInAs('admin'); | ||
86 | $client = $this->getClient(); | ||
87 | |||
88 | $content = $client->getContainer() | ||
89 | ->get('doctrine.orm.entity_manager') | ||
90 | ->getRepository('WallabagCoreBundle:Entry') | ||
91 | ->findOneByUsernameAndNotArchived('admin'); | ||
92 | |||
93 | ob_start(); | ||
94 | $crawler = $client->request('GET', '/export/'.$content->getId().'.mobi'); | ||
95 | ob_end_clean(); | ||
96 | |||
97 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
98 | |||
99 | $headers = $client->getResponse()->headers; | ||
100 | $this->assertEquals('application/x-mobipocket-ebook', $headers->get('content-type')); | ||
101 | $this->assertEquals('attachment; filename="'.preg_replace('/[^A-Za-z0-9\-]/', '', $content->getTitle()).'.mobi"', $headers->get('content-disposition')); | ||
102 | $this->assertEquals('binary', $headers->get('content-transfer-encoding')); | ||
103 | } | ||
104 | |||
105 | public function testPdfExport() | ||
106 | { | ||
107 | $this->logInAs('admin'); | ||
108 | $client = $this->getClient(); | ||
109 | |||
110 | ob_start(); | ||
111 | $crawler = $client->request('GET', '/export/all.pdf'); | ||
112 | ob_end_clean(); | ||
113 | |||
114 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
115 | |||
116 | $headers = $client->getResponse()->headers; | ||
117 | $this->assertEquals('application/pdf', $headers->get('content-type')); | ||
118 | $this->assertEquals('attachment; filename="All articles.pdf"', $headers->get('content-disposition')); | ||
119 | $this->assertEquals('binary', $headers->get('content-transfer-encoding')); | ||
120 | } | ||
121 | |||
122 | public function testTxtExport() | ||
123 | { | ||
124 | $this->logInAs('admin'); | ||
125 | $client = $this->getClient(); | ||
126 | |||
127 | ob_start(); | ||
128 | $crawler = $client->request('GET', '/export/all.txt'); | ||
129 | ob_end_clean(); | ||
130 | |||
131 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
132 | |||
133 | $headers = $client->getResponse()->headers; | ||
134 | $this->assertEquals('text/plain; charset=UTF-8', $headers->get('content-type')); | ||
135 | $this->assertEquals('attachment; filename="All articles.txt"', $headers->get('content-disposition')); | ||
136 | $this->assertEquals('UTF-8', $headers->get('content-transfer-encoding')); | ||
137 | } | ||
138 | |||
139 | public function testCsvExport() | ||
140 | { | ||
141 | $this->logInAs('admin'); | ||
142 | $client = $this->getClient(); | ||
143 | |||
144 | // to be sure results are the same | ||
145 | $contentInDB = $client->getContainer() | ||
146 | ->get('doctrine.orm.entity_manager') | ||
147 | ->getRepository('WallabagCoreBundle:Entry') | ||
148 | ->createQueryBuilder('e') | ||
149 | ->leftJoin('e.user', 'u') | ||
150 | ->where('u.username = :username')->setParameter('username', 'admin') | ||
151 | ->andWhere('e.isArchived = true') | ||
152 | ->getQuery() | ||
153 | ->getArrayResult(); | ||
154 | |||
155 | ob_start(); | ||
156 | $crawler = $client->request('GET', '/export/archive.csv'); | ||
157 | ob_end_clean(); | ||
158 | |||
159 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
160 | |||
161 | $headers = $client->getResponse()->headers; | ||
162 | $this->assertEquals('application/csv', $headers->get('content-type')); | ||
163 | $this->assertEquals('attachment; filename="Archive articles.csv"', $headers->get('content-disposition')); | ||
164 | $this->assertEquals('UTF-8', $headers->get('content-transfer-encoding')); | ||
165 | |||
166 | $csv = str_getcsv($client->getResponse()->getContent(), "\n"); | ||
167 | |||
168 | $this->assertGreaterThan(1, $csv); | ||
169 | // +1 for title line | ||
170 | $this->assertEquals(count($contentInDB) + 1, count($csv)); | ||
171 | $this->assertEquals('Title;URL;Content;Tags;"MIME Type";Language', $csv[0]); | ||
172 | } | ||
173 | |||
174 | public function testJsonExport() | ||
175 | { | ||
176 | $this->logInAs('admin'); | ||
177 | $client = $this->getClient(); | ||
178 | |||
179 | // to be sure results are the same | ||
180 | $contentInDB = $client->getContainer() | ||
181 | ->get('doctrine.orm.entity_manager') | ||
182 | ->getRepository('WallabagCoreBundle:Entry') | ||
183 | ->createQueryBuilder('e') | ||
184 | ->leftJoin('e.user', 'u') | ||
185 | ->where('u.username = :username')->setParameter('username', 'admin') | ||
186 | ->getQuery() | ||
187 | ->getArrayResult(); | ||
188 | |||
189 | ob_start(); | ||
190 | $crawler = $client->request('GET', '/export/all.json'); | ||
191 | ob_end_clean(); | ||
192 | |||
193 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
194 | |||
195 | $headers = $client->getResponse()->headers; | ||
196 | $this->assertEquals('application/json', $headers->get('content-type')); | ||
197 | $this->assertEquals('attachment; filename="All articles.json"', $headers->get('content-disposition')); | ||
198 | $this->assertEquals('UTF-8', $headers->get('content-transfer-encoding')); | ||
199 | |||
200 | $content = json_decode($client->getResponse()->getContent(), true); | ||
201 | $this->assertEquals(count($contentInDB), count($content)); | ||
202 | $this->assertArrayHasKey('id', $content[0]); | ||
203 | $this->assertArrayHasKey('title', $content[0]); | ||
204 | $this->assertArrayHasKey('url', $content[0]); | ||
205 | $this->assertArrayHasKey('is_archived', $content[0]); | ||
206 | $this->assertArrayHasKey('is_starred', $content[0]); | ||
207 | $this->assertArrayHasKey('content', $content[0]); | ||
208 | $this->assertArrayHasKey('mimetype', $content[0]); | ||
209 | $this->assertArrayHasKey('language', $content[0]); | ||
210 | $this->assertArrayHasKey('reading_time', $content[0]); | ||
211 | $this->assertArrayHasKey('domain_name', $content[0]); | ||
212 | $this->assertArrayHasKey('tags', $content[0]); | ||
213 | } | ||
214 | |||
215 | public function testXmlExport() | ||
216 | { | ||
217 | $this->logInAs('admin'); | ||
218 | $client = $this->getClient(); | ||
219 | |||
220 | // to be sure results are the same | ||
221 | $contentInDB = $client->getContainer() | ||
222 | ->get('doctrine.orm.entity_manager') | ||
223 | ->getRepository('WallabagCoreBundle:Entry') | ||
224 | ->createQueryBuilder('e') | ||
225 | ->leftJoin('e.user', 'u') | ||
226 | ->where('u.username = :username')->setParameter('username', 'admin') | ||
227 | ->andWhere('e.isArchived = false') | ||
228 | ->getQuery() | ||
229 | ->getArrayResult(); | ||
230 | |||
231 | ob_start(); | ||
232 | $crawler = $client->request('GET', '/export/unread.xml'); | ||
233 | ob_end_clean(); | ||
234 | |||
235 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
236 | |||
237 | $headers = $client->getResponse()->headers; | ||
238 | $this->assertEquals('application/xml', $headers->get('content-type')); | ||
239 | $this->assertEquals('attachment; filename="Unread articles.xml"', $headers->get('content-disposition')); | ||
240 | $this->assertEquals('UTF-8', $headers->get('content-transfer-encoding')); | ||
241 | |||
242 | $content = new \SimpleXMLElement($client->getResponse()->getContent()); | ||
243 | $this->assertGreaterThan(0, $content->count()); | ||
244 | $this->assertEquals(count($contentInDB), $content->count()); | ||
245 | $this->assertNotEmpty('id', (string) $content->entry[0]->id); | ||
246 | $this->assertNotEmpty('title', (string) $content->entry[0]->title); | ||
247 | $this->assertNotEmpty('url', (string) $content->entry[0]->url); | ||
248 | $this->assertNotEmpty('content', (string) $content->entry[0]->content); | ||
249 | $this->assertNotEmpty('domain_name', (string) $content->entry[0]->domain_name); | ||
250 | } | ||
251 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php deleted file mode 100644 index 87a01b8e..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/RssControllerTest.php +++ /dev/null | |||
@@ -1,126 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | class RssControllerTest extends WallabagCoreTestCase | ||
8 | { | ||
9 | public function validateDom($xml, $nb = null) | ||
10 | { | ||
11 | $doc = new \DOMDocument(); | ||
12 | $doc->loadXML($xml); | ||
13 | |||
14 | $xpath = new \DOMXpath($doc); | ||
15 | |||
16 | if (null === $nb) { | ||
17 | $this->assertGreaterThan(0, $xpath->query('//item')->length); | ||
18 | } else { | ||
19 | $this->assertEquals($nb, $xpath->query('//item')->length); | ||
20 | } | ||
21 | |||
22 | $this->assertEquals(1, $xpath->query('/rss')->length); | ||
23 | $this->assertEquals(1, $xpath->query('/rss/channel')->length); | ||
24 | |||
25 | foreach ($xpath->query('//item') as $item) { | ||
26 | $this->assertEquals(1, $xpath->query('title', $item)->length); | ||
27 | $this->assertEquals(1, $xpath->query('source', $item)->length); | ||
28 | $this->assertEquals(1, $xpath->query('link', $item)->length); | ||
29 | $this->assertEquals(1, $xpath->query('guid', $item)->length); | ||
30 | $this->assertEquals(1, $xpath->query('pubDate', $item)->length); | ||
31 | $this->assertEquals(1, $xpath->query('description', $item)->length); | ||
32 | } | ||
33 | } | ||
34 | |||
35 | public function dataForBadUrl() | ||
36 | { | ||
37 | return [ | ||
38 | [ | ||
39 | '/admin/YZIOAUZIAO/unread.xml', | ||
40 | ], | ||
41 | [ | ||
42 | '/wallace/YZIOAUZIAO/starred.xml', | ||
43 | ], | ||
44 | [ | ||
45 | '/wallace/YZIOAUZIAO/archives.xml', | ||
46 | ], | ||
47 | ]; | ||
48 | } | ||
49 | |||
50 | /** | ||
51 | * @dataProvider dataForBadUrl | ||
52 | */ | ||
53 | public function testBadUrl($url) | ||
54 | { | ||
55 | $client = $this->getClient(); | ||
56 | |||
57 | $client->request('GET', $url); | ||
58 | |||
59 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
60 | } | ||
61 | |||
62 | public function testUnread() | ||
63 | { | ||
64 | $client = $this->getClient(); | ||
65 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
66 | $user = $em | ||
67 | ->getRepository('WallabagUserBundle:User') | ||
68 | ->findOneByUsername('admin'); | ||
69 | |||
70 | $config = $user->getConfig(); | ||
71 | $config->setRssToken('SUPERTOKEN'); | ||
72 | $config->setRssLimit(2); | ||
73 | $em->persist($config); | ||
74 | $em->flush(); | ||
75 | |||
76 | $client->request('GET', '/admin/SUPERTOKEN/unread.xml'); | ||
77 | |||
78 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
79 | |||
80 | $this->validateDom($client->getResponse()->getContent(), 2); | ||
81 | } | ||
82 | |||
83 | public function testStarred() | ||
84 | { | ||
85 | $client = $this->getClient(); | ||
86 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
87 | $user = $em | ||
88 | ->getRepository('WallabagUserBundle:User') | ||
89 | ->findOneByUsername('admin'); | ||
90 | |||
91 | $config = $user->getConfig(); | ||
92 | $config->setRssToken('SUPERTOKEN'); | ||
93 | $config->setRssLimit(1); | ||
94 | $em->persist($config); | ||
95 | $em->flush(); | ||
96 | |||
97 | $client = $this->getClient(); | ||
98 | $client->request('GET', '/admin/SUPERTOKEN/starred.xml'); | ||
99 | |||
100 | $this->assertEquals(200, $client->getResponse()->getStatusCode(), 1); | ||
101 | |||
102 | $this->validateDom($client->getResponse()->getContent()); | ||
103 | } | ||
104 | |||
105 | public function testArchives() | ||
106 | { | ||
107 | $client = $this->getClient(); | ||
108 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
109 | $user = $em | ||
110 | ->getRepository('WallabagUserBundle:User') | ||
111 | ->findOneByUsername('admin'); | ||
112 | |||
113 | $config = $user->getConfig(); | ||
114 | $config->setRssToken('SUPERTOKEN'); | ||
115 | $config->setRssLimit(null); | ||
116 | $em->persist($config); | ||
117 | $em->flush(); | ||
118 | |||
119 | $client = $this->getClient(); | ||
120 | $client->request('GET', '/admin/SUPERTOKEN/archive.xml'); | ||
121 | |||
122 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
123 | |||
124 | $this->validateDom($client->getResponse()->getContent()); | ||
125 | } | ||
126 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php deleted file mode 100644 index 2910fa4f..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/SecurityControllerTest.php +++ /dev/null | |||
@@ -1,72 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | class SecurityControllerTest extends WallabagCoreTestCase | ||
8 | { | ||
9 | public function testLoginWithout2Factor() | ||
10 | { | ||
11 | $this->logInAs('admin'); | ||
12 | $client = $this->getClient(); | ||
13 | $client->followRedirects(); | ||
14 | |||
15 | $crawler = $client->request('GET', '/config'); | ||
16 | $this->assertContains('config.form_rss.description', $crawler->filter('body')->extract(['_text'])[0]); | ||
17 | } | ||
18 | |||
19 | public function testLoginWith2Factor() | ||
20 | { | ||
21 | $client = $this->getClient(); | ||
22 | |||
23 | if (!$client->getContainer()->getParameter('twofactor_auth')) { | ||
24 | $this->markTestSkipped('twofactor_auth is not enabled.'); | ||
25 | |||
26 | return; | ||
27 | } | ||
28 | |||
29 | $client->followRedirects(); | ||
30 | |||
31 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
32 | $user = $em | ||
33 | ->getRepository('WallabagUserBundle:User') | ||
34 | ->findOneByUsername('admin'); | ||
35 | $user->setTwoFactorAuthentication(true); | ||
36 | $em->persist($user); | ||
37 | $em->flush(); | ||
38 | |||
39 | $this->logInAs('admin'); | ||
40 | $crawler = $client->request('GET', '/config'); | ||
41 | $this->assertContains('scheb_two_factor.trusted', $crawler->filter('body')->extract(['_text'])[0]); | ||
42 | |||
43 | // restore user | ||
44 | $user = $em | ||
45 | ->getRepository('WallabagUserBundle:User') | ||
46 | ->findOneByUsername('admin'); | ||
47 | $user->setTwoFactorAuthentication(false); | ||
48 | $em->persist($user); | ||
49 | $em->flush(); | ||
50 | } | ||
51 | |||
52 | public function testTrustedComputer() | ||
53 | { | ||
54 | $client = $this->getClient(); | ||
55 | |||
56 | if (!$client->getContainer()->getParameter('twofactor_auth')) { | ||
57 | $this->markTestSkipped('twofactor_auth is not enabled.'); | ||
58 | |||
59 | return; | ||
60 | } | ||
61 | |||
62 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | ||
63 | $user = $em | ||
64 | ->getRepository('WallabagUserBundle:User') | ||
65 | ->findOneByUsername('admin'); | ||
66 | |||
67 | $date = new \DateTime(); | ||
68 | $user->addTrustedComputer('ABCDEF', $date->add(new \DateInterval('P1M'))); | ||
69 | $this->assertTrue($user->isTrustedComputer('ABCDEF')); | ||
70 | $this->assertFalse($user->isTrustedComputer('FEDCBA')); | ||
71 | } | ||
72 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php deleted file mode 100644 index fd698b3e..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/SettingsControllerTest.php +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | /** | ||
8 | * The controller `SettingsController` does not exist. | ||
9 | * This test cover security against the internal settings page managed by CraueConfigBundle. | ||
10 | */ | ||
11 | class SettingsControllerTest extends WallabagCoreTestCase | ||
12 | { | ||
13 | public function testSettingsWithAdmin() | ||
14 | { | ||
15 | $this->logInAs('admin'); | ||
16 | $client = $this->getClient(); | ||
17 | |||
18 | $crawler = $client->request('GET', '/settings'); | ||
19 | |||
20 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
21 | } | ||
22 | |||
23 | public function testSettingsWithNormalUser() | ||
24 | { | ||
25 | $this->logInAs('bob'); | ||
26 | $client = $this->getClient(); | ||
27 | |||
28 | $crawler = $client->request('GET', '/settings'); | ||
29 | |||
30 | $this->assertEquals(403, $client->getResponse()->getStatusCode()); | ||
31 | } | ||
32 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/StaticControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/StaticControllerTest.php deleted file mode 100644 index 6d7976c4..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/StaticControllerTest.php +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | class StaticControllerTest extends WallabagCoreTestCase | ||
8 | { | ||
9 | public function testAbout() | ||
10 | { | ||
11 | $this->logInAs('admin'); | ||
12 | $client = $this->getClient(); | ||
13 | |||
14 | $client->request('GET', '/about'); | ||
15 | |||
16 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
17 | } | ||
18 | |||
19 | public function testHowto() | ||
20 | { | ||
21 | $this->logInAs('admin'); | ||
22 | $client = $this->getClient(); | ||
23 | |||
24 | $client->request('GET', '/howto'); | ||
25 | |||
26 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
27 | } | ||
28 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/TagControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/TagControllerTest.php deleted file mode 100644 index 8af37ea4..00000000 --- a/src/Wallabag/CoreBundle/Tests/Controller/TagControllerTest.php +++ /dev/null | |||
@@ -1,128 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Controller; | ||
4 | |||
5 | use Wallabag\CoreBundle\Tests\WallabagCoreTestCase; | ||
6 | |||
7 | class TagControllerTest extends WallabagCoreTestCase | ||
8 | { | ||
9 | public $tagName = 'opensource'; | ||
10 | |||
11 | public function testList() | ||
12 | { | ||
13 | $this->logInAs('admin'); | ||
14 | $client = $this->getClient(); | ||
15 | |||
16 | $client->request('GET', '/tag/list'); | ||
17 | |||
18 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
19 | } | ||
20 | |||
21 | public function testAddTagToEntry() | ||
22 | { | ||
23 | $this->logInAs('admin'); | ||
24 | $client = $this->getClient(); | ||
25 | |||
26 | $entry = $client->getContainer() | ||
27 | ->get('doctrine.orm.entity_manager') | ||
28 | ->getRepository('WallabagCoreBundle:Entry') | ||
29 | ->findOneByUsernameAndNotArchived('admin'); | ||
30 | |||
31 | $crawler = $client->request('GET', '/view/'.$entry->getId()); | ||
32 | |||
33 | $form = $crawler->filter('form[name=tag]')->form(); | ||
34 | |||
35 | $data = [ | ||
36 | 'tag[label]' => $this->tagName, | ||
37 | ]; | ||
38 | |||
39 | $client->submit($form, $data); | ||
40 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
41 | |||
42 | $this->assertEquals(1, count($entry->getTags())); | ||
43 | |||
44 | # tag already exists and already assigned | ||
45 | $client->submit($form, $data); | ||
46 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
47 | |||
48 | $newEntry = $client->getContainer() | ||
49 | ->get('doctrine.orm.entity_manager') | ||
50 | ->getRepository('WallabagCoreBundle:Entry') | ||
51 | ->find($entry->getId()); | ||
52 | |||
53 | $this->assertEquals(1, count($newEntry->getTags())); | ||
54 | |||
55 | # tag already exists but still not assigned to this entry | ||
56 | $data = [ | ||
57 | 'tag[label]' => 'foo', | ||
58 | ]; | ||
59 | |||
60 | $client->submit($form, $data); | ||
61 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
62 | |||
63 | $newEntry = $client->getContainer() | ||
64 | ->get('doctrine.orm.entity_manager') | ||
65 | ->getRepository('WallabagCoreBundle:Entry') | ||
66 | ->find($entry->getId()); | ||
67 | |||
68 | $this->assertEquals(2, count($newEntry->getTags())); | ||
69 | } | ||
70 | |||
71 | public function testAddMultipleTagToEntry() | ||
72 | { | ||
73 | $this->logInAs('admin'); | ||
74 | $client = $this->getClient(); | ||
75 | |||
76 | $entry = $client->getContainer() | ||
77 | ->get('doctrine.orm.entity_manager') | ||
78 | ->getRepository('WallabagCoreBundle:Entry') | ||
79 | ->findOneByUsernameAndNotArchived('admin'); | ||
80 | |||
81 | $crawler = $client->request('GET', '/view/'.$entry->getId()); | ||
82 | |||
83 | $form = $crawler->filter('form[name=tag]')->form(); | ||
84 | |||
85 | $data = [ | ||
86 | 'tag[label]' => 'foo2, bar2', | ||
87 | ]; | ||
88 | |||
89 | $client->submit($form, $data); | ||
90 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
91 | |||
92 | $newEntry = $client->getContainer() | ||
93 | ->get('doctrine.orm.entity_manager') | ||
94 | ->getRepository('WallabagCoreBundle:Entry') | ||
95 | ->find($entry->getId()); | ||
96 | |||
97 | $tags = $newEntry->getTags()->toArray(); | ||
98 | $this->assertGreaterThanOrEqual(2, count($tags)); | ||
99 | $this->assertNotEquals(false, array_search('foo2', $tags), 'Tag foo2 is assigned to the entry'); | ||
100 | $this->assertNotEquals(false, array_search('bar2', $tags), 'Tag bar2 is assigned to the entry'); | ||
101 | } | ||
102 | |||
103 | public function testRemoveTagFromEntry() | ||
104 | { | ||
105 | $this->logInAs('admin'); | ||
106 | $client = $this->getClient(); | ||
107 | |||
108 | $entry = $client->getContainer() | ||
109 | ->get('doctrine.orm.entity_manager') | ||
110 | ->getRepository('WallabagCoreBundle:Entry') | ||
111 | ->findOneByUsernameAndNotArchived('admin'); | ||
112 | |||
113 | $tag = $client->getContainer() | ||
114 | ->get('doctrine.orm.entity_manager') | ||
115 | ->getRepository('WallabagCoreBundle:Tag') | ||
116 | ->findOneByEntryAndTagLabel($entry, $this->tagName); | ||
117 | |||
118 | $client->request('GET', '/remove-tag/'.$entry->getId().'/'.$tag->getId()); | ||
119 | |||
120 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); | ||
121 | |||
122 | $this->assertNotContains($this->tagName, $entry->getTags()); | ||
123 | |||
124 | $client->request('GET', '/remove-tag/'.$entry->getId().'/'.$tag->getId()); | ||
125 | |||
126 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
127 | } | ||
128 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/EventListener/LocaleListenerTest.php b/src/Wallabag/CoreBundle/Tests/EventListener/LocaleListenerTest.php deleted file mode 100644 index b4c022d5..00000000 --- a/src/Wallabag/CoreBundle/Tests/EventListener/LocaleListenerTest.php +++ /dev/null | |||
@@ -1,82 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\EventListener; | ||
4 | |||
5 | use Symfony\Component\EventDispatcher\EventDispatcher; | ||
6 | use Symfony\Component\HttpFoundation\Request; | ||
7 | use Symfony\Component\HttpFoundation\Session\Session; | ||
8 | use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage; | ||
9 | use Symfony\Component\HttpKernel\Event\GetResponseEvent; | ||
10 | use Symfony\Component\HttpKernel\HttpKernelInterface; | ||
11 | use Symfony\Component\HttpKernel\KernelEvents; | ||
12 | use Wallabag\CoreBundle\EventListener\LocaleListener; | ||
13 | |||
14 | class LocaleListenerTest extends \PHPUnit_Framework_TestCase | ||
15 | { | ||
16 | private function getEvent(Request $request) | ||
17 | { | ||
18 | return new GetResponseEvent($this->getMock('Symfony\Component\HttpKernel\HttpKernelInterface'), $request, HttpKernelInterface::MASTER_REQUEST); | ||
19 | } | ||
20 | |||
21 | public function testWithoutSession() | ||
22 | { | ||
23 | $request = Request::create('/'); | ||
24 | |||
25 | $listener = new LocaleListener('fr'); | ||
26 | $event = $this->getEvent($request); | ||
27 | |||
28 | $listener->onKernelRequest($event); | ||
29 | $this->assertEquals('en', $request->getLocale()); | ||
30 | } | ||
31 | |||
32 | public function testWithPreviousSession() | ||
33 | { | ||
34 | $request = Request::create('/'); | ||
35 | // generate a previous session | ||
36 | $request->cookies->set('MOCKSESSID', 'foo'); | ||
37 | $request->setSession(new Session(new MockArraySessionStorage())); | ||
38 | |||
39 | $listener = new LocaleListener('fr'); | ||
40 | $event = $this->getEvent($request); | ||
41 | |||
42 | $listener->onKernelRequest($event); | ||
43 | $this->assertEquals('fr', $request->getLocale()); | ||
44 | } | ||
45 | |||
46 | public function testLocaleFromRequestAttribute() | ||
47 | { | ||
48 | $request = Request::create('/'); | ||
49 | // generate a previous session | ||
50 | $request->cookies->set('MOCKSESSID', 'foo'); | ||
51 | $request->setSession(new Session(new MockArraySessionStorage())); | ||
52 | $request->attributes->set('_locale', 'es'); | ||
53 | |||
54 | $listener = new LocaleListener('fr'); | ||
55 | $event = $this->getEvent($request); | ||
56 | |||
57 | $listener->onKernelRequest($event); | ||
58 | $this->assertEquals('en', $request->getLocale()); | ||
59 | $this->assertEquals('es', $request->getSession()->get('_locale')); | ||
60 | } | ||
61 | |||
62 | public function testSubscribedEvents() | ||
63 | { | ||
64 | $request = Request::create('/'); | ||
65 | // generate a previous session | ||
66 | $request->cookies->set('MOCKSESSID', 'foo'); | ||
67 | $request->setSession(new Session(new MockArraySessionStorage())); | ||
68 | |||
69 | $listener = new LocaleListener('fr'); | ||
70 | $event = $this->getEvent($request); | ||
71 | |||
72 | $dispatcher = new EventDispatcher(); | ||
73 | $dispatcher->addSubscriber($listener); | ||
74 | |||
75 | $dispatcher->dispatch( | ||
76 | KernelEvents::REQUEST, | ||
77 | $event | ||
78 | ); | ||
79 | |||
80 | $this->assertEquals('fr', $request->getLocale()); | ||
81 | } | ||
82 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/EventListener/RegistrationConfirmedListenerTest.php b/src/Wallabag/CoreBundle/Tests/EventListener/RegistrationConfirmedListenerTest.php deleted file mode 100644 index 7039dc61..00000000 --- a/src/Wallabag/CoreBundle/Tests/EventListener/RegistrationConfirmedListenerTest.php +++ /dev/null | |||
@@ -1,91 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\EventListener; | ||
4 | |||
5 | use FOS\UserBundle\Event\FilterUserResponseEvent; | ||
6 | use FOS\UserBundle\FOSUserEvents; | ||
7 | use Symfony\Component\EventDispatcher\EventDispatcher; | ||
8 | use Symfony\Component\HttpFoundation\Request; | ||
9 | use Symfony\Component\HttpFoundation\Response; | ||
10 | use Wallabag\CoreBundle\Entity\Config; | ||
11 | use Wallabag\CoreBundle\EventListener\RegistrationConfirmedListener; | ||
12 | use Wallabag\UserBundle\Entity\User; | ||
13 | |||
14 | class RegistrationConfirmedListenerTest extends \PHPUnit_Framework_TestCase | ||
15 | { | ||
16 | private $em; | ||
17 | private $listener; | ||
18 | private $dispatcher; | ||
19 | private $request; | ||
20 | private $response; | ||
21 | |||
22 | protected function setUp() | ||
23 | { | ||
24 | $this->em = $this->getMockBuilder('Doctrine\ORM\EntityManager') | ||
25 | ->disableOriginalConstructor() | ||
26 | ->getMock(); | ||
27 | |||
28 | $this->listener = new RegistrationConfirmedListener( | ||
29 | $this->em, | ||
30 | 'baggy', | ||
31 | 20, | ||
32 | 50, | ||
33 | 'fr' | ||
34 | ); | ||
35 | |||
36 | $this->dispatcher = new EventDispatcher(); | ||
37 | $this->dispatcher->addSubscriber($this->listener); | ||
38 | |||
39 | $this->request = Request::create('/'); | ||
40 | $this->response = Response::create(); | ||
41 | } | ||
42 | |||
43 | public function testWithInvalidUser() | ||
44 | { | ||
45 | $user = new User(); | ||
46 | $user->setEnabled(false); | ||
47 | |||
48 | $event = new FilterUserResponseEvent( | ||
49 | $user, | ||
50 | $this->request, | ||
51 | $this->response | ||
52 | ); | ||
53 | |||
54 | $this->em->expects($this->never())->method('persist'); | ||
55 | $this->em->expects($this->never())->method('flush'); | ||
56 | |||
57 | $this->dispatcher->dispatch( | ||
58 | FOSUserEvents::REGISTRATION_CONFIRMED, | ||
59 | $event | ||
60 | ); | ||
61 | } | ||
62 | |||
63 | public function testWithValidUser() | ||
64 | { | ||
65 | $user = new User(); | ||
66 | $user->setEnabled(true); | ||
67 | |||
68 | $event = new FilterUserResponseEvent( | ||
69 | $user, | ||
70 | $this->request, | ||
71 | $this->response | ||
72 | ); | ||
73 | |||
74 | $config = new Config($user); | ||
75 | $config->setTheme('baggy'); | ||
76 | $config->setItemsPerPage(20); | ||
77 | $config->setRssLimit(50); | ||
78 | $config->setLanguage('fr'); | ||
79 | |||
80 | $this->em->expects($this->once()) | ||
81 | ->method('persist') | ||
82 | ->will($this->returnValue($config)); | ||
83 | $this->em->expects($this->once()) | ||
84 | ->method('flush'); | ||
85 | |||
86 | $this->dispatcher->dispatch( | ||
87 | FOSUserEvents::REGISTRATION_CONFIRMED, | ||
88 | $event | ||
89 | ); | ||
90 | } | ||
91 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php b/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php deleted file mode 100644 index d9ffe30e..00000000 --- a/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\EventListener; | ||
4 | |||
5 | use Symfony\Component\HttpFoundation\Request; | ||
6 | use Symfony\Component\HttpFoundation\Session\Session; | ||
7 | use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage; | ||
8 | use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; | ||
9 | use Symfony\Component\Security\Http\Event\InteractiveLoginEvent; | ||
10 | use Wallabag\CoreBundle\Entity\Config; | ||
11 | use Wallabag\CoreBundle\EventListener\UserLocaleListener; | ||
12 | use Wallabag\UserBundle\Entity\User; | ||
13 | |||
14 | class UserLocaleListenerTest extends \PHPUnit_Framework_TestCase | ||
15 | { | ||
16 | public function testWithLanguage() | ||
17 | { | ||
18 | $session = new Session(new MockArraySessionStorage()); | ||
19 | $listener = new UserLocaleListener($session); | ||
20 | |||
21 | $user = new User(); | ||
22 | $user->setEnabled(true); | ||
23 | |||
24 | $config = new Config($user); | ||
25 | $config->setLanguage('fr'); | ||
26 | |||
27 | $user->setConfig($config); | ||
28 | |||
29 | $userToken = new UsernamePasswordToken($user, '', 'test'); | ||
30 | $request = Request::create('/'); | ||
31 | $event = new InteractiveLoginEvent($request, $userToken); | ||
32 | |||
33 | $listener->onInteractiveLogin($event); | ||
34 | |||
35 | $this->assertEquals('fr', $session->get('_locale')); | ||
36 | } | ||
37 | |||
38 | public function testWithoutLanguage() | ||
39 | { | ||
40 | $session = new Session(new MockArraySessionStorage()); | ||
41 | $listener = new UserLocaleListener($session); | ||
42 | |||
43 | $user = new User(); | ||
44 | $user->setEnabled(true); | ||
45 | |||
46 | $config = new Config($user); | ||
47 | |||
48 | $user->setConfig($config); | ||
49 | |||
50 | $userToken = new UsernamePasswordToken($user, '', 'test'); | ||
51 | $request = Request::create('/'); | ||
52 | $event = new InteractiveLoginEvent($request, $userToken); | ||
53 | |||
54 | $listener->onInteractiveLogin($event); | ||
55 | |||
56 | $this->assertEquals('', $session->get('_locale')); | ||
57 | } | ||
58 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Form/DataTransformer/StringToListTransformerTest.php b/src/Wallabag/CoreBundle/Tests/Form/DataTransformer/StringToListTransformerTest.php deleted file mode 100644 index 6b1e8613..00000000 --- a/src/Wallabag/CoreBundle/Tests/Form/DataTransformer/StringToListTransformerTest.php +++ /dev/null | |||
@@ -1,50 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Form\DataTransformer; | ||
4 | |||
5 | use Wallabag\CoreBundle\Form\DataTransformer\StringToListTransformer; | ||
6 | |||
7 | class StringToListTransformerTest extends \PHPUnit_Framework_TestCase | ||
8 | { | ||
9 | /** | ||
10 | * @dataProvider transformProvider | ||
11 | */ | ||
12 | public function testTransformWithValidData($inputData, $expectedResult) | ||
13 | { | ||
14 | $transformer = new StringToListTransformer(); | ||
15 | |||
16 | $this->assertSame($expectedResult, $transformer->transform($inputData)); | ||
17 | } | ||
18 | |||
19 | public function transformProvider() | ||
20 | { | ||
21 | return [ | ||
22 | [null, ''], | ||
23 | [[], ''], | ||
24 | [['single value'], 'single value'], | ||
25 | [['first value', 'second value'], 'first value,second value'], | ||
26 | ]; | ||
27 | } | ||
28 | |||
29 | /** | ||
30 | * @dataProvider reverseTransformProvider | ||
31 | */ | ||
32 | public function testReverseTransformWithValidData($inputData, $expectedResult) | ||
33 | { | ||
34 | $transformer = new StringToListTransformer(); | ||
35 | |||
36 | $this->assertSame($expectedResult, $transformer->reverseTransform($inputData)); | ||
37 | } | ||
38 | |||
39 | public function reverseTransformProvider() | ||
40 | { | ||
41 | return [ | ||
42 | [null, null], | ||
43 | ['', []], | ||
44 | ['single value', ['single value']], | ||
45 | ['first value,second value', ['first value', 'second value']], | ||
46 | ['first value, second value', ['first value', 'second value']], | ||
47 | ['first value, , second value', ['first value', 'second value']], | ||
48 | ]; | ||
49 | } | ||
50 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Helper/ContentProxyTest.php b/src/Wallabag/CoreBundle/Tests/Helper/ContentProxyTest.php deleted file mode 100644 index 9d7b0f36..00000000 --- a/src/Wallabag/CoreBundle/Tests/Helper/ContentProxyTest.php +++ /dev/null | |||
@@ -1,318 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Helper; | ||
4 | |||
5 | use Psr\Log\NullLogger; | ||
6 | use Wallabag\CoreBundle\Helper\ContentProxy; | ||
7 | use Wallabag\CoreBundle\Entity\Entry; | ||
8 | use Wallabag\CoreBundle\Entity\Tag; | ||
9 | use Wallabag\UserBundle\Entity\User; | ||
10 | |||
11 | class ContentProxyTest extends \PHPUnit_Framework_TestCase | ||
12 | { | ||
13 | public function testWithBadUrl() | ||
14 | { | ||
15 | $tagger = $this->getTaggerMock(); | ||
16 | $tagger->expects($this->once()) | ||
17 | ->method('tag'); | ||
18 | |||
19 | $graby = $this->getMockBuilder('Graby\Graby') | ||
20 | ->setMethods(['fetchContent']) | ||
21 | ->disableOriginalConstructor() | ||
22 | ->getMock(); | ||
23 | |||
24 | $graby->expects($this->any()) | ||
25 | ->method('fetchContent') | ||
26 | ->willReturn([ | ||
27 | 'html' => false, | ||
28 | 'title' => '', | ||
29 | 'url' => '', | ||
30 | 'content_type' => '', | ||
31 | 'language' => '', | ||
32 | ]); | ||
33 | |||
34 | $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger()); | ||
35 | $entry = $proxy->updateEntry(new Entry(new User()), 'http://user@:80'); | ||
36 | |||
37 | $this->assertEquals('http://user@:80', $entry->getUrl()); | ||
38 | $this->assertEmpty($entry->getTitle()); | ||
39 | $this->assertEquals('<p>Unable to retrieve readable content.</p>', $entry->getContent()); | ||
40 | $this->assertEmpty($entry->getPreviewPicture()); | ||
41 | $this->assertEmpty($entry->getMimetype()); | ||
42 | $this->assertEmpty($entry->getLanguage()); | ||
43 | $this->assertEquals(0.0, $entry->getReadingTime()); | ||
44 | $this->assertEquals(false, $entry->getDomainName()); | ||
45 | } | ||
46 | |||
47 | public function testWithEmptyContent() | ||
48 | { | ||
49 | $tagger = $this->getTaggerMock(); | ||
50 | $tagger->expects($this->once()) | ||
51 | ->method('tag'); | ||
52 | |||
53 | $graby = $this->getMockBuilder('Graby\Graby') | ||
54 | ->setMethods(['fetchContent']) | ||
55 | ->disableOriginalConstructor() | ||
56 | ->getMock(); | ||
57 | |||
58 | $graby->expects($this->any()) | ||
59 | ->method('fetchContent') | ||
60 | ->willReturn([ | ||
61 | 'html' => false, | ||
62 | 'title' => '', | ||
63 | 'url' => '', | ||
64 | 'content_type' => '', | ||
65 | 'language' => '', | ||
66 | ]); | ||
67 | |||
68 | $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger()); | ||
69 | $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0'); | ||
70 | |||
71 | $this->assertEquals('http://0.0.0.0', $entry->getUrl()); | ||
72 | $this->assertEmpty($entry->getTitle()); | ||
73 | $this->assertEquals('<p>Unable to retrieve readable content.</p>', $entry->getContent()); | ||
74 | $this->assertEmpty($entry->getPreviewPicture()); | ||
75 | $this->assertEmpty($entry->getMimetype()); | ||
76 | $this->assertEmpty($entry->getLanguage()); | ||
77 | $this->assertEquals(0.0, $entry->getReadingTime()); | ||
78 | $this->assertEquals('0.0.0.0', $entry->getDomainName()); | ||
79 | } | ||
80 | |||
81 | public function testWithEmptyContentButOG() | ||
82 | { | ||
83 | $tagger = $this->getTaggerMock(); | ||
84 | $tagger->expects($this->once()) | ||
85 | ->method('tag'); | ||
86 | |||
87 | $graby = $this->getMockBuilder('Graby\Graby') | ||
88 | ->setMethods(['fetchContent']) | ||
89 | ->disableOriginalConstructor() | ||
90 | ->getMock(); | ||
91 | |||
92 | $graby->expects($this->any()) | ||
93 | ->method('fetchContent') | ||
94 | ->willReturn([ | ||
95 | 'html' => false, | ||
96 | 'title' => '', | ||
97 | 'url' => '', | ||
98 | 'content_type' => '', | ||
99 | 'language' => '', | ||
100 | 'open_graph' => [ | ||
101 | 'og_title' => 'my title', | ||
102 | 'og_description' => 'desc', | ||
103 | ], | ||
104 | ]); | ||
105 | |||
106 | $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger()); | ||
107 | $entry = $proxy->updateEntry(new Entry(new User()), 'http://domain.io'); | ||
108 | |||
109 | $this->assertEquals('http://domain.io', $entry->getUrl()); | ||
110 | $this->assertEquals('my title', $entry->getTitle()); | ||
111 | $this->assertEquals('<p>Unable to retrieve readable content.</p><p><i>But we found a short description: </i></p>desc', $entry->getContent()); | ||
112 | $this->assertEmpty($entry->getPreviewPicture()); | ||
113 | $this->assertEmpty($entry->getLanguage()); | ||
114 | $this->assertEmpty($entry->getMimetype()); | ||
115 | $this->assertEquals(0.0, $entry->getReadingTime()); | ||
116 | $this->assertEquals('domain.io', $entry->getDomainName()); | ||
117 | } | ||
118 | |||
119 | public function testWithContent() | ||
120 | { | ||
121 | $tagger = $this->getTaggerMock(); | ||
122 | $tagger->expects($this->once()) | ||
123 | ->method('tag'); | ||
124 | |||
125 | $graby = $this->getMockBuilder('Graby\Graby') | ||
126 | ->setMethods(['fetchContent']) | ||
127 | ->disableOriginalConstructor() | ||
128 | ->getMock(); | ||
129 | |||
130 | $graby->expects($this->any()) | ||
131 | ->method('fetchContent') | ||
132 | ->willReturn([ | ||
133 | 'html' => str_repeat('this is my content', 325), | ||
134 | 'title' => 'this is my title', | ||
135 | 'url' => 'http://1.1.1.1', | ||
136 | 'content_type' => 'text/html', | ||
137 | 'language' => 'fr', | ||
138 | 'open_graph' => [ | ||
139 | 'og_title' => 'my OG title', | ||
140 | 'og_description' => 'OG desc', | ||
141 | 'og_image' => 'http://3.3.3.3/cover.jpg', | ||
142 | ], | ||
143 | ]); | ||
144 | |||
145 | $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger()); | ||
146 | $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0'); | ||
147 | |||
148 | $this->assertEquals('http://1.1.1.1', $entry->getUrl()); | ||
149 | $this->assertEquals('this is my title', $entry->getTitle()); | ||
150 | $this->assertContains('this is my content', $entry->getContent()); | ||
151 | $this->assertEquals('http://3.3.3.3/cover.jpg', $entry->getPreviewPicture()); | ||
152 | $this->assertEquals('text/html', $entry->getMimetype()); | ||
153 | $this->assertEquals('fr', $entry->getLanguage()); | ||
154 | $this->assertEquals(4.0, $entry->getReadingTime()); | ||
155 | $this->assertEquals('1.1.1.1', $entry->getDomainName()); | ||
156 | } | ||
157 | |||
158 | public function testWithForcedContent() | ||
159 | { | ||
160 | $tagger = $this->getTaggerMock(); | ||
161 | $tagger->expects($this->once()) | ||
162 | ->method('tag'); | ||
163 | |||
164 | $graby = $this->getMockBuilder('Graby\Graby')->getMock(); | ||
165 | |||
166 | $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger()); | ||
167 | $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0', [ | ||
168 | 'html' => str_repeat('this is my content', 325), | ||
169 | 'title' => 'this is my title', | ||
170 | 'url' => 'http://1.1.1.1', | ||
171 | 'content_type' => 'text/html', | ||
172 | 'language' => 'fr', | ||
173 | ]); | ||
174 | |||
175 | $this->assertEquals('http://1.1.1.1', $entry->getUrl()); | ||
176 | $this->assertEquals('this is my title', $entry->getTitle()); | ||
177 | $this->assertContains('this is my content', $entry->getContent()); | ||
178 | $this->assertEquals('text/html', $entry->getMimetype()); | ||
179 | $this->assertEquals('fr', $entry->getLanguage()); | ||
180 | $this->assertEquals(4.0, $entry->getReadingTime()); | ||
181 | $this->assertEquals('1.1.1.1', $entry->getDomainName()); | ||
182 | } | ||
183 | |||
184 | public function testTaggerThrowException() | ||
185 | { | ||
186 | $graby = $this->getMockBuilder('Graby\Graby') | ||
187 | ->disableOriginalConstructor() | ||
188 | ->getMock(); | ||
189 | |||
190 | $tagger = $this->getTaggerMock(); | ||
191 | $tagger->expects($this->once()) | ||
192 | ->method('tag') | ||
193 | ->will($this->throwException(new \Exception())); | ||
194 | |||
195 | $tagRepo = $this->getTagRepositoryMock(); | ||
196 | $proxy = new ContentProxy($graby, $tagger, $tagRepo, $this->getLogger()); | ||
197 | |||
198 | $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0', [ | ||
199 | 'html' => str_repeat('this is my content', 325), | ||
200 | 'title' => 'this is my title', | ||
201 | 'url' => 'http://1.1.1.1', | ||
202 | 'content_type' => 'text/html', | ||
203 | 'language' => 'fr', | ||
204 | ]); | ||
205 | |||
206 | $this->assertCount(0, $entry->getTags()); | ||
207 | } | ||
208 | |||
209 | public function testAssignTagsWithArrayAndExtraSpaces() | ||
210 | { | ||
211 | $graby = $this->getMockBuilder('Graby\Graby') | ||
212 | ->disableOriginalConstructor() | ||
213 | ->getMock(); | ||
214 | |||
215 | $tagRepo = $this->getTagRepositoryMock(); | ||
216 | $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger()); | ||
217 | |||
218 | $entry = new Entry(new User()); | ||
219 | |||
220 | $proxy->assignTagsToEntry($entry, [' tag1', 'tag2 ']); | ||
221 | |||
222 | $this->assertCount(2, $entry->getTags()); | ||
223 | $this->assertEquals('tag1', $entry->getTags()[0]->getLabel()); | ||
224 | $this->assertEquals('tag2', $entry->getTags()[1]->getLabel()); | ||
225 | } | ||
226 | |||
227 | public function testAssignTagsWithString() | ||
228 | { | ||
229 | $graby = $this->getMockBuilder('Graby\Graby') | ||
230 | ->disableOriginalConstructor() | ||
231 | ->getMock(); | ||
232 | |||
233 | $tagRepo = $this->getTagRepositoryMock(); | ||
234 | $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger()); | ||
235 | |||
236 | $entry = new Entry(new User()); | ||
237 | |||
238 | $proxy->assignTagsToEntry($entry, 'tag1, tag2'); | ||
239 | |||
240 | $this->assertCount(2, $entry->getTags()); | ||
241 | $this->assertEquals('tag1', $entry->getTags()[0]->getLabel()); | ||
242 | $this->assertEquals('tag2', $entry->getTags()[1]->getLabel()); | ||
243 | } | ||
244 | |||
245 | public function testAssignTagsWithEmptyArray() | ||
246 | { | ||
247 | $graby = $this->getMockBuilder('Graby\Graby') | ||
248 | ->disableOriginalConstructor() | ||
249 | ->getMock(); | ||
250 | |||
251 | $tagRepo = $this->getTagRepositoryMock(); | ||
252 | $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger()); | ||
253 | |||
254 | $entry = new Entry(new User()); | ||
255 | |||
256 | $proxy->assignTagsToEntry($entry, []); | ||
257 | |||
258 | $this->assertCount(0, $entry->getTags()); | ||
259 | } | ||
260 | |||
261 | public function testAssignTagsWithEmptyString() | ||
262 | { | ||
263 | $graby = $this->getMockBuilder('Graby\Graby') | ||
264 | ->disableOriginalConstructor() | ||
265 | ->getMock(); | ||
266 | |||
267 | $tagRepo = $this->getTagRepositoryMock(); | ||
268 | $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger()); | ||
269 | |||
270 | $entry = new Entry(new User()); | ||
271 | |||
272 | $proxy->assignTagsToEntry($entry, ''); | ||
273 | |||
274 | $this->assertCount(0, $entry->getTags()); | ||
275 | } | ||
276 | |||
277 | public function testAssignTagsAlreadyAssigned() | ||
278 | { | ||
279 | $graby = $this->getMockBuilder('Graby\Graby') | ||
280 | ->disableOriginalConstructor() | ||
281 | ->getMock(); | ||
282 | |||
283 | $tagRepo = $this->getTagRepositoryMock(); | ||
284 | $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger()); | ||
285 | |||
286 | $tagEntity = new Tag(); | ||
287 | $tagEntity->setLabel('tag1'); | ||
288 | |||
289 | $entry = new Entry(new User()); | ||
290 | $entry->addTag($tagEntity); | ||
291 | |||
292 | $proxy->assignTagsToEntry($entry, 'tag1, tag2'); | ||
293 | |||
294 | $this->assertCount(2, $entry->getTags()); | ||
295 | $this->assertEquals('tag1', $entry->getTags()[0]->getLabel()); | ||
296 | $this->assertEquals('tag2', $entry->getTags()[1]->getLabel()); | ||
297 | } | ||
298 | |||
299 | private function getTaggerMock() | ||
300 | { | ||
301 | return $this->getMockBuilder('Wallabag\CoreBundle\Helper\RuleBasedTagger') | ||
302 | ->setMethods(['tag']) | ||
303 | ->disableOriginalConstructor() | ||
304 | ->getMock(); | ||
305 | } | ||
306 | |||
307 | private function getTagRepositoryMock() | ||
308 | { | ||
309 | return $this->getMockBuilder('Wallabag\CoreBundle\Repository\TagRepository') | ||
310 | ->disableOriginalConstructor() | ||
311 | ->getMock(); | ||
312 | } | ||
313 | |||
314 | private function getLogger() | ||
315 | { | ||
316 | return new NullLogger(); | ||
317 | } | ||
318 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Helper/RedirectTest.php b/src/Wallabag/CoreBundle/Tests/Helper/RedirectTest.php deleted file mode 100644 index f4aecc80..00000000 --- a/src/Wallabag/CoreBundle/Tests/Helper/RedirectTest.php +++ /dev/null | |||
@@ -1,55 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Helper; | ||
4 | |||
5 | use Wallabag\CoreBundle\Helper\Redirect; | ||
6 | |||
7 | class RedirectTest extends \PHPUnit_Framework_TestCase | ||
8 | { | ||
9 | /** @var \PHPUnit_Framework_MockObject_MockObject */ | ||
10 | private $routerMock; | ||
11 | |||
12 | /** @var Redirect */ | ||
13 | private $redirect; | ||
14 | |||
15 | public function setUp() | ||
16 | { | ||
17 | $this->routerMock = $this->getRouterMock(); | ||
18 | $this->redirect = new Redirect($this->routerMock); | ||
19 | } | ||
20 | |||
21 | public function testRedirectToNullWithFallback() | ||
22 | { | ||
23 | $redirectUrl = $this->redirect->to(null, 'fallback'); | ||
24 | |||
25 | $this->assertEquals('fallback', $redirectUrl); | ||
26 | } | ||
27 | |||
28 | public function testRedirectToNullWithoutFallback() | ||
29 | { | ||
30 | $redirectUrl = $this->redirect->to(null); | ||
31 | |||
32 | $this->assertEquals($this->routerMock->generate('homepage'), $redirectUrl); | ||
33 | } | ||
34 | |||
35 | public function testRedirectToValidUrl() | ||
36 | { | ||
37 | $redirectUrl = $this->redirect->to('/unread/list'); | ||
38 | |||
39 | $this->assertEquals('/unread/list', $redirectUrl); | ||
40 | } | ||
41 | |||
42 | private function getRouterMock() | ||
43 | { | ||
44 | $mock = $this->getMockBuilder('Symfony\Component\Routing\Router') | ||
45 | ->disableOriginalConstructor() | ||
46 | ->getMock(); | ||
47 | |||
48 | $mock->expects($this->any()) | ||
49 | ->method('generate') | ||
50 | ->with('homepage') | ||
51 | ->willReturn('homepage'); | ||
52 | |||
53 | return $mock; | ||
54 | } | ||
55 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Helper/RuleBasedTaggerTest.php b/src/Wallabag/CoreBundle/Tests/Helper/RuleBasedTaggerTest.php deleted file mode 100644 index e9025b45..00000000 --- a/src/Wallabag/CoreBundle/Tests/Helper/RuleBasedTaggerTest.php +++ /dev/null | |||
@@ -1,212 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Helper; | ||
4 | |||
5 | use Wallabag\CoreBundle\Entity\Config; | ||
6 | use Wallabag\CoreBundle\Entity\Entry; | ||
7 | use Wallabag\CoreBundle\Entity\Tag; | ||
8 | use Wallabag\CoreBundle\Entity\TaggingRule; | ||
9 | use Wallabag\CoreBundle\Helper\RuleBasedTagger; | ||
10 | use Wallabag\UserBundle\Entity\User; | ||
11 | |||
12 | class RuleBasedTaggerTest extends \PHPUnit_Framework_TestCase | ||
13 | { | ||
14 | private $rulerz; | ||
15 | private $tagRepository; | ||
16 | private $entryRepository; | ||
17 | private $tagger; | ||
18 | |||
19 | public function setUp() | ||
20 | { | ||
21 | $this->rulerz = $this->getRulerZMock(); | ||
22 | $this->tagRepository = $this->getTagRepositoryMock(); | ||
23 | $this->entryRepository = $this->getEntryRepositoryMock(); | ||
24 | |||
25 | $this->tagger = new RuleBasedTagger($this->rulerz, $this->tagRepository, $this->entryRepository); | ||
26 | } | ||
27 | |||
28 | public function testTagWithNoRule() | ||
29 | { | ||
30 | $entry = new Entry($this->getUser()); | ||
31 | |||
32 | $this->tagger->tag($entry); | ||
33 | |||
34 | $this->assertTrue($entry->getTags()->isEmpty()); | ||
35 | } | ||
36 | |||
37 | public function testTagWithNoMatchingRule() | ||
38 | { | ||
39 | $taggingRule = $this->getTaggingRule('rule as string', ['foo', 'bar']); | ||
40 | $user = $this->getUser([$taggingRule]); | ||
41 | $entry = new Entry($user); | ||
42 | |||
43 | $this->rulerz | ||
44 | ->expects($this->once()) | ||
45 | ->method('satisfies') | ||
46 | ->with($entry, 'rule as string') | ||
47 | ->willReturn(false); | ||
48 | |||
49 | $this->tagger->tag($entry); | ||
50 | |||
51 | $this->assertTrue($entry->getTags()->isEmpty()); | ||
52 | } | ||
53 | |||
54 | public function testTagWithAMatchingRule() | ||
55 | { | ||
56 | $taggingRule = $this->getTaggingRule('rule as string', ['foo', 'bar']); | ||
57 | $user = $this->getUser([$taggingRule]); | ||
58 | $entry = new Entry($user); | ||
59 | |||
60 | $this->rulerz | ||
61 | ->expects($this->once()) | ||
62 | ->method('satisfies') | ||
63 | ->with($entry, 'rule as string') | ||
64 | ->willReturn(true); | ||
65 | |||
66 | $this->tagger->tag($entry); | ||
67 | |||
68 | $this->assertFalse($entry->getTags()->isEmpty()); | ||
69 | |||
70 | $tags = $entry->getTags(); | ||
71 | $this->assertSame('foo', $tags[0]->getLabel()); | ||
72 | $this->assertSame('bar', $tags[1]->getLabel()); | ||
73 | } | ||
74 | |||
75 | public function testTagWithAMixOfMatchingRules() | ||
76 | { | ||
77 | $taggingRule = $this->getTaggingRule('bla bla', ['hey']); | ||
78 | $otherTaggingRule = $this->getTaggingRule('rule as string', ['foo']); | ||
79 | |||
80 | $user = $this->getUser([$taggingRule, $otherTaggingRule]); | ||
81 | $entry = new Entry($user); | ||
82 | |||
83 | $this->rulerz | ||
84 | ->method('satisfies') | ||
85 | ->will($this->onConsecutiveCalls(false, true)); | ||
86 | |||
87 | $this->tagger->tag($entry); | ||
88 | |||
89 | $this->assertFalse($entry->getTags()->isEmpty()); | ||
90 | |||
91 | $tags = $entry->getTags(); | ||
92 | $this->assertSame('foo', $tags[0]->getLabel()); | ||
93 | } | ||
94 | |||
95 | public function testWhenTheTagExists() | ||
96 | { | ||
97 | $taggingRule = $this->getTaggingRule('rule as string', ['foo']); | ||
98 | $user = $this->getUser([$taggingRule]); | ||
99 | $entry = new Entry($user); | ||
100 | $tag = new Tag(); | ||
101 | |||
102 | $this->rulerz | ||
103 | ->expects($this->once()) | ||
104 | ->method('satisfies') | ||
105 | ->with($entry, 'rule as string') | ||
106 | ->willReturn(true); | ||
107 | |||
108 | $this->tagRepository | ||
109 | ->expects($this->once()) | ||
110 | // the method `findOneByLabel` doesn't exist, EntityRepository will then call `_call` method | ||
111 | // to magically call the `findOneBy` with ['label' => 'foo'] | ||
112 | ->method('__call') | ||
113 | ->willReturn($tag); | ||
114 | |||
115 | $this->tagger->tag($entry); | ||
116 | |||
117 | $this->assertFalse($entry->getTags()->isEmpty()); | ||
118 | |||
119 | $tags = $entry->getTags(); | ||
120 | $this->assertSame($tag, $tags[0]); | ||
121 | } | ||
122 | |||
123 | public function testSameTagWithDifferentfMatchingRules() | ||
124 | { | ||
125 | $taggingRule = $this->getTaggingRule('bla bla', ['hey']); | ||
126 | $otherTaggingRule = $this->getTaggingRule('rule as string', ['hey']); | ||
127 | |||
128 | $user = $this->getUser([$taggingRule, $otherTaggingRule]); | ||
129 | $entry = new Entry($user); | ||
130 | |||
131 | $this->rulerz | ||
132 | ->method('satisfies') | ||
133 | ->willReturn(true); | ||
134 | |||
135 | $this->tagger->tag($entry); | ||
136 | |||
137 | $this->assertFalse($entry->getTags()->isEmpty()); | ||
138 | |||
139 | $tags = $entry->getTags(); | ||
140 | $this->assertCount(1, $tags); | ||
141 | } | ||
142 | |||
143 | public function testTagAllEntriesForAUser() | ||
144 | { | ||
145 | $taggingRule = $this->getTaggingRule('bla bla', ['hey']); | ||
146 | |||
147 | $user = $this->getUser([$taggingRule]); | ||
148 | |||
149 | $this->rulerz | ||
150 | ->method('satisfies') | ||
151 | ->willReturn(true); | ||
152 | |||
153 | $this->rulerz | ||
154 | ->method('filter') | ||
155 | ->willReturn([new Entry($user), new Entry($user)]); | ||
156 | |||
157 | $entries = $this->tagger->tagAllForUser($user); | ||
158 | |||
159 | $this->assertCount(2, $entries); | ||
160 | |||
161 | foreach ($entries as $entry) { | ||
162 | $tags = $entry->getTags(); | ||
163 | |||
164 | $this->assertCount(1, $tags); | ||
165 | $this->assertEquals('hey', $tags[0]->getLabel()); | ||
166 | } | ||
167 | } | ||
168 | |||
169 | private function getUser(array $taggingRules = []) | ||
170 | { | ||
171 | $user = new User(); | ||
172 | $config = new Config($user); | ||
173 | |||
174 | $user->setConfig($config); | ||
175 | |||
176 | foreach ($taggingRules as $rule) { | ||
177 | $config->addTaggingRule($rule); | ||
178 | } | ||
179 | |||
180 | return $user; | ||
181 | } | ||
182 | |||
183 | private function getTaggingRule($rule, array $tags) | ||
184 | { | ||
185 | $taggingRule = new TaggingRule(); | ||
186 | $taggingRule->setRule($rule); | ||
187 | $taggingRule->setTags($tags); | ||
188 | |||
189 | return $taggingRule; | ||
190 | } | ||
191 | |||
192 | private function getRulerZMock() | ||
193 | { | ||
194 | return $this->getMockBuilder('RulerZ\RulerZ') | ||
195 | ->disableOriginalConstructor() | ||
196 | ->getMock(); | ||
197 | } | ||
198 | |||
199 | private function getTagRepositoryMock() | ||
200 | { | ||
201 | return $this->getMockBuilder('Wallabag\CoreBundle\Repository\TagRepository') | ||
202 | ->disableOriginalConstructor() | ||
203 | ->getMock(); | ||
204 | } | ||
205 | |||
206 | private function getEntryRepositoryMock() | ||
207 | { | ||
208 | return $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository') | ||
209 | ->disableOriginalConstructor() | ||
210 | ->getMock(); | ||
211 | } | ||
212 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Mock/InstallCommandMock.php b/src/Wallabag/CoreBundle/Tests/Mock/InstallCommandMock.php deleted file mode 100644 index ff9cdafd..00000000 --- a/src/Wallabag/CoreBundle/Tests/Mock/InstallCommandMock.php +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Mock; | ||
4 | |||
5 | use Wallabag\CoreBundle\Command\InstallCommand; | ||
6 | |||
7 | /** | ||
8 | * This mock aims to speed the test of InstallCommand by avoid calling external command | ||
9 | * like all doctrine commands. | ||
10 | * | ||
11 | * This speed the test but as a downside, it doesn't allow to fully test the InstallCommand | ||
12 | * | ||
13 | * Launching tests to avoid doctrine command: | ||
14 | * phpunit --exclude-group command-doctrine | ||
15 | */ | ||
16 | class InstallCommandMock extends InstallCommand | ||
17 | { | ||
18 | protected function runCommand($command, $parameters = []) | ||
19 | { | ||
20 | return $this; | ||
21 | } | ||
22 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/ParamConverter/UsernameRssTokenConverterTest.php b/src/Wallabag/CoreBundle/Tests/ParamConverter/UsernameRssTokenConverterTest.php deleted file mode 100644 index ee10938a..00000000 --- a/src/Wallabag/CoreBundle/Tests/ParamConverter/UsernameRssTokenConverterTest.php +++ /dev/null | |||
@@ -1,219 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Command; | ||
4 | |||
5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; | ||
6 | use Symfony\Component\HttpFoundation\Request; | ||
7 | use Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter; | ||
8 | use Wallabag\UserBundle\Entity\User; | ||
9 | |||
10 | class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | ||
11 | { | ||
12 | public function testSupportsWithNoRegistry() | ||
13 | { | ||
14 | $params = new ParamConverter([]); | ||
15 | $converter = new UsernameRssTokenConverter(); | ||
16 | |||
17 | $this->assertFalse($converter->supports($params)); | ||
18 | } | ||
19 | |||
20 | public function testSupportsWithNoRegistryManagers() | ||
21 | { | ||
22 | $registry = $this->getMockBuilder('Doctrine\Common\Persistence\ManagerRegistry') | ||
23 | ->disableOriginalConstructor() | ||
24 | ->getMock(); | ||
25 | |||
26 | $registry->expects($this->once()) | ||
27 | ->method('getManagers') | ||
28 | ->will($this->returnValue([])); | ||
29 | |||
30 | $params = new ParamConverter([]); | ||
31 | $converter = new UsernameRssTokenConverter($registry); | ||
32 | |||
33 | $this->assertFalse($converter->supports($params)); | ||
34 | } | ||
35 | |||
36 | public function testSupportsWithNoConfigurationClass() | ||
37 | { | ||
38 | $registry = $this->getMockBuilder('Doctrine\Common\Persistence\ManagerRegistry') | ||
39 | ->disableOriginalConstructor() | ||
40 | ->getMock(); | ||
41 | |||
42 | $registry->expects($this->once()) | ||
43 | ->method('getManagers') | ||
44 | ->will($this->returnValue(['default' => null])); | ||
45 | |||
46 | $params = new ParamConverter([]); | ||
47 | $converter = new UsernameRssTokenConverter($registry); | ||
48 | |||
49 | $this->assertFalse($converter->supports($params)); | ||
50 | } | ||
51 | |||
52 | public function testSupportsWithNotTheGoodClass() | ||
53 | { | ||
54 | $meta = $this->getMockBuilder('Doctrine\Common\Persistence\Mapping\ClassMetadata') | ||
55 | ->disableOriginalConstructor() | ||
56 | ->getMock(); | ||
57 | |||
58 | $meta->expects($this->once()) | ||
59 | ->method('getName') | ||
60 | ->will($this->returnValue('nothingrelated')); | ||
61 | |||
62 | $em = $this->getMockBuilder('Doctrine\Common\Persistence\ObjectManager') | ||
63 | ->disableOriginalConstructor() | ||
64 | ->getMock(); | ||
65 | |||
66 | $em->expects($this->once()) | ||
67 | ->method('getClassMetadata') | ||
68 | ->with('superclass') | ||
69 | ->will($this->returnValue($meta)); | ||
70 | |||
71 | $registry = $this->getMockBuilder('Doctrine\Common\Persistence\ManagerRegistry') | ||
72 | ->disableOriginalConstructor() | ||
73 | ->getMock(); | ||
74 | |||
75 | $registry->expects($this->once()) | ||
76 | ->method('getManagers') | ||
77 | ->will($this->returnValue(['default' => null])); | ||
78 | |||
79 | $registry->expects($this->once()) | ||
80 | ->method('getManagerForClass') | ||
81 | ->with('superclass') | ||
82 | ->will($this->returnValue($em)); | ||
83 | |||
84 | $params = new ParamConverter(['class' => 'superclass']); | ||
85 | $converter = new UsernameRssTokenConverter($registry); | ||
86 | |||
87 | $this->assertFalse($converter->supports($params)); | ||
88 | } | ||
89 | |||
90 | public function testSupportsWithGoodClass() | ||
91 | { | ||
92 | $meta = $this->getMockBuilder('Doctrine\Common\Persistence\Mapping\ClassMetadata') | ||
93 | ->disableOriginalConstructor() | ||
94 | ->getMock(); | ||
95 | |||
96 | $meta->expects($this->once()) | ||
97 | ->method('getName') | ||
98 | ->will($this->returnValue('Wallabag\UserBundle\Entity\User')); | ||
99 | |||
100 | $em = $this->getMockBuilder('Doctrine\Common\Persistence\ObjectManager') | ||
101 | ->disableOriginalConstructor() | ||
102 | ->getMock(); | ||
103 | |||
104 | $em->expects($this->once()) | ||
105 | ->method('getClassMetadata') | ||
106 | ->with('WallabagUserBundle:User') | ||
107 | ->will($this->returnValue($meta)); | ||
108 | |||
109 | $registry = $this->getMockBuilder('Doctrine\Common\Persistence\ManagerRegistry') | ||
110 | ->disableOriginalConstructor() | ||
111 | ->getMock(); | ||
112 | |||
113 | $registry->expects($this->once()) | ||
114 | ->method('getManagers') | ||
115 | ->will($this->returnValue(['default' => null])); | ||
116 | |||
117 | $registry->expects($this->once()) | ||
118 | ->method('getManagerForClass') | ||
119 | ->with('WallabagUserBundle:User') | ||
120 | ->will($this->returnValue($em)); | ||
121 | |||
122 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User']); | ||
123 | $converter = new UsernameRssTokenConverter($registry); | ||
124 | |||
125 | $this->assertTrue($converter->supports($params)); | ||
126 | } | ||
127 | |||
128 | /** | ||
129 | * @expectedException InvalidArgumentException | ||
130 | * @expectedExceptionMessage Route attribute is missing | ||
131 | */ | ||
132 | public function testApplyEmptyRequest() | ||
133 | { | ||
134 | $params = new ParamConverter([]); | ||
135 | $converter = new UsernameRssTokenConverter(); | ||
136 | |||
137 | $converter->apply(new Request(), $params); | ||
138 | } | ||
139 | |||
140 | /** | ||
141 | * @expectedException Symfony\Component\HttpKernel\Exception\NotFoundHttpException | ||
142 | * @expectedExceptionMessage User not found | ||
143 | */ | ||
144 | public function testApplyUserNotFound() | ||
145 | { | ||
146 | $repo = $this->getMockBuilder('Wallabag\UserBundle\Repository\UserRepository') | ||
147 | ->disableOriginalConstructor() | ||
148 | ->getMock(); | ||
149 | |||
150 | $repo->expects($this->once()) | ||
151 | ->method('findOneByUsernameAndRsstoken') | ||
152 | ->with('test', 'test') | ||
153 | ->will($this->returnValue(null)); | ||
154 | |||
155 | $em = $this->getMockBuilder('Doctrine\Common\Persistence\ObjectManager') | ||
156 | ->disableOriginalConstructor() | ||
157 | ->getMock(); | ||
158 | |||
159 | $em->expects($this->once()) | ||
160 | ->method('getRepository') | ||
161 | ->with('WallabagUserBundle:User') | ||
162 | ->will($this->returnValue($repo)); | ||
163 | |||
164 | $registry = $this->getMockBuilder('Doctrine\Common\Persistence\ManagerRegistry') | ||
165 | ->disableOriginalConstructor() | ||
166 | ->getMock(); | ||
167 | |||
168 | $registry->expects($this->once()) | ||
169 | ->method('getManagerForClass') | ||
170 | ->with('WallabagUserBundle:User') | ||
171 | ->will($this->returnValue($em)); | ||
172 | |||
173 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User']); | ||
174 | $converter = new UsernameRssTokenConverter($registry); | ||
175 | $request = new Request([], [], ['username' => 'test', 'token' => 'test']); | ||
176 | |||
177 | $converter->apply($request, $params); | ||
178 | } | ||
179 | |||
180 | public function testApplyUserFound() | ||
181 | { | ||
182 | $user = new User(); | ||
183 | |||
184 | $repo = $this->getMockBuilder('Wallabag\UserBundle\Repository\UserRepository') | ||
185 | ->disableOriginalConstructor() | ||
186 | ->getMock(); | ||
187 | |||
188 | $repo->expects($this->once()) | ||
189 | ->method('findOneByUsernameAndRsstoken') | ||
190 | ->with('test', 'test') | ||
191 | ->will($this->returnValue($user)); | ||
192 | |||
193 | $em = $this->getMockBuilder('Doctrine\Common\Persistence\ObjectManager') | ||
194 | ->disableOriginalConstructor() | ||
195 | ->getMock(); | ||
196 | |||
197 | $em->expects($this->once()) | ||
198 | ->method('getRepository') | ||
199 | ->with('WallabagUserBundle:User') | ||
200 | ->will($this->returnValue($repo)); | ||
201 | |||
202 | $registry = $this->getMockBuilder('Doctrine\Common\Persistence\ManagerRegistry') | ||
203 | ->disableOriginalConstructor() | ||
204 | ->getMock(); | ||
205 | |||
206 | $registry->expects($this->once()) | ||
207 | ->method('getManagerForClass') | ||
208 | ->with('WallabagUserBundle:User') | ||
209 | ->will($this->returnValue($em)); | ||
210 | |||
211 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User', 'name' => 'user']); | ||
212 | $converter = new UsernameRssTokenConverter($registry); | ||
213 | $request = new Request([], [], ['username' => 'test', 'token' => 'test']); | ||
214 | |||
215 | $converter->apply($request, $params); | ||
216 | |||
217 | $this->assertEquals($user, $request->attributes->get('user')); | ||
218 | } | ||
219 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Subscriber/TablePrefixSubscriberTest.php b/src/Wallabag/CoreBundle/Tests/Subscriber/TablePrefixSubscriberTest.php deleted file mode 100644 index e5eafab1..00000000 --- a/src/Wallabag/CoreBundle/Tests/Subscriber/TablePrefixSubscriberTest.php +++ /dev/null | |||
@@ -1,114 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Subscriber; | ||
4 | |||
5 | use Doctrine\Common\EventManager; | ||
6 | use Doctrine\ORM\Event\LoadClassMetadataEventArgs; | ||
7 | use Doctrine\ORM\Mapping\ClassMetadata; | ||
8 | use Wallabag\CoreBundle\Subscriber\TablePrefixSubscriber; | ||
9 | |||
10 | class TablePrefixSubscriberTest extends \PHPUnit_Framework_TestCase | ||
11 | { | ||
12 | public function dataForPrefix() | ||
13 | { | ||
14 | return [ | ||
15 | ['wallabag_', 'Wallabag\UserBundle\Entity\User', '`user`', 'user', 'wallabag_user', '"wallabag_user"', new \Doctrine\DBAL\Platforms\PostgreSqlPlatform()], | ||
16 | ['wallabag_', 'Wallabag\UserBundle\Entity\User', '`user`', 'user', 'wallabag_user', '`wallabag_user`', new \Doctrine\DBAL\Platforms\MySqlPlatform()], | ||
17 | ['wallabag_', 'Wallabag\UserBundle\Entity\User', '`user`', 'user', 'wallabag_user', '"wallabag_user"', new \Doctrine\DBAL\Platforms\SqlitePlatform()], | ||
18 | |||
19 | ['wallabag_', 'Wallabag\UserBundle\Entity\User', 'user', 'user', 'wallabag_user', 'wallabag_user', new \Doctrine\DBAL\Platforms\PostgreSqlPlatform()], | ||
20 | ['wallabag_', 'Wallabag\UserBundle\Entity\User', 'user', 'user', 'wallabag_user', 'wallabag_user', new \Doctrine\DBAL\Platforms\MySqlPlatform()], | ||
21 | ['wallabag_', 'Wallabag\UserBundle\Entity\User', 'user', 'user', 'wallabag_user', 'wallabag_user', new \Doctrine\DBAL\Platforms\SqlitePlatform()], | ||
22 | |||
23 | ['', 'Wallabag\UserBundle\Entity\User', '`user`', 'user', 'user', '"user"', new \Doctrine\DBAL\Platforms\PostgreSqlPlatform()], | ||
24 | ['', 'Wallabag\UserBundle\Entity\User', '`user`', 'user', 'user', '`user`', new \Doctrine\DBAL\Platforms\MySqlPlatform()], | ||
25 | ['', 'Wallabag\UserBundle\Entity\User', '`user`', 'user', 'user', '"user"', new \Doctrine\DBAL\Platforms\SqlitePlatform()], | ||
26 | |||
27 | ['', 'Wallabag\UserBundle\Entity\User', 'user', 'user', 'user', 'user', new \Doctrine\DBAL\Platforms\PostgreSqlPlatform()], | ||
28 | ['', 'Wallabag\UserBundle\Entity\User', 'user', 'user', 'user', 'user', new \Doctrine\DBAL\Platforms\MySqlPlatform()], | ||
29 | ['', 'Wallabag\UserBundle\Entity\User', 'user', 'user', 'user', 'user', new \Doctrine\DBAL\Platforms\SqlitePlatform()], | ||
30 | ]; | ||
31 | } | ||
32 | |||
33 | /** | ||
34 | * @dataProvider dataForPrefix | ||
35 | */ | ||
36 | public function testPrefix($prefix, $entityName, $tableName, $tableNameExpected, $finalTableName, $finalTableNameQuoted, $platform) | ||
37 | { | ||
38 | $em = $this->getMockBuilder('Doctrine\ORM\EntityManager') | ||
39 | ->disableOriginalConstructor() | ||
40 | ->getMock(); | ||
41 | |||
42 | $subscriber = new TablePrefixSubscriber($prefix); | ||
43 | |||
44 | $metaClass = new ClassMetadata($entityName); | ||
45 | $metaClass->setPrimaryTable(['name' => $tableName]); | ||
46 | |||
47 | $metaDataEvent = new LoadClassMetadataEventArgs($metaClass, $em); | ||
48 | |||
49 | $this->assertEquals($tableNameExpected, $metaDataEvent->getClassMetadata()->getTableName()); | ||
50 | |||
51 | $subscriber->loadClassMetadata($metaDataEvent); | ||
52 | |||
53 | $this->assertEquals($finalTableName, $metaDataEvent->getClassMetadata()->getTableName()); | ||
54 | $this->assertEquals($finalTableNameQuoted, $metaDataEvent->getClassMetadata()->getQuotedTableName($platform)); | ||
55 | } | ||
56 | |||
57 | /** | ||
58 | * @dataProvider dataForPrefix | ||
59 | */ | ||
60 | public function testSubscribedEvents($prefix, $entityName, $tableName, $tableNameExpected, $finalTableName, $finalTableNameQuoted, $platform) | ||
61 | { | ||
62 | $em = $this->getMockBuilder('Doctrine\ORM\EntityManager') | ||
63 | ->disableOriginalConstructor() | ||
64 | ->getMock(); | ||
65 | |||
66 | $metaClass = new ClassMetadata($entityName); | ||
67 | $metaClass->setPrimaryTable(['name' => $tableName]); | ||
68 | |||
69 | $metaDataEvent = new LoadClassMetadataEventArgs($metaClass, $em); | ||
70 | |||
71 | $subscriber = new TablePrefixSubscriber($prefix); | ||
72 | |||
73 | $evm = new EventManager(); | ||
74 | $evm->addEventSubscriber($subscriber); | ||
75 | |||
76 | $evm->dispatchEvent('loadClassMetadata', $metaDataEvent); | ||
77 | |||
78 | $this->assertEquals($finalTableName, $metaDataEvent->getClassMetadata()->getTableName()); | ||
79 | $this->assertEquals($finalTableNameQuoted, $metaDataEvent->getClassMetadata()->getQuotedTableName($platform)); | ||
80 | } | ||
81 | |||
82 | public function testPrefixManyToMany() | ||
83 | { | ||
84 | $em = $this->getMockBuilder('Doctrine\ORM\EntityManager') | ||
85 | ->disableOriginalConstructor() | ||
86 | ->getMock(); | ||
87 | |||
88 | $subscriber = new TablePrefixSubscriber('yo_'); | ||
89 | |||
90 | $metaClass = new ClassMetadata('Wallabag\UserBundle\Entity\Entry'); | ||
91 | $metaClass->setPrimaryTable(['name' => 'entry']); | ||
92 | $metaClass->mapManyToMany([ | ||
93 | 'fieldName' => 'tags', | ||
94 | 'joinTable' => ['name' => null, 'schema' => null], | ||
95 | 'targetEntity' => 'Tag', | ||
96 | 'mappedBy' => null, | ||
97 | 'inversedBy' => 'entries', | ||
98 | 'cascade' => ['persist'], | ||
99 | 'indexBy' => null, | ||
100 | 'orphanRemoval' => false, | ||
101 | 'fetch' => 2, | ||
102 | ]); | ||
103 | |||
104 | $metaDataEvent = new LoadClassMetadataEventArgs($metaClass, $em); | ||
105 | |||
106 | $this->assertEquals('entry', $metaDataEvent->getClassMetadata()->getTableName()); | ||
107 | |||
108 | $subscriber->loadClassMetadata($metaDataEvent); | ||
109 | |||
110 | $this->assertEquals('yo_entry', $metaDataEvent->getClassMetadata()->getTableName()); | ||
111 | $this->assertEquals('yo_entry_tag', $metaDataEvent->getClassMetadata()->associationMappings['tags']['joinTable']['name']); | ||
112 | $this->assertEquals('yo_entry', $metaDataEvent->getClassMetadata()->getQuotedTableName(new \Doctrine\DBAL\Platforms\MySqlPlatform())); | ||
113 | } | ||
114 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php b/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php deleted file mode 100644 index 9af8fad8..00000000 --- a/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests\Twig; | ||
4 | |||
5 | use Wallabag\CoreBundle\Twig\WallabagExtension; | ||
6 | |||
7 | class WallabagExtensionTest extends \PHPUnit_Framework_TestCase | ||
8 | { | ||
9 | public function testRemoveWww() | ||
10 | { | ||
11 | $extension = new WallabagExtension(); | ||
12 | |||
13 | $this->assertEquals('lemonde.fr', $extension->removeWww('www.lemonde.fr')); | ||
14 | $this->assertEquals('lemonde.fr', $extension->removeWww('lemonde.fr')); | ||
15 | $this->assertEquals('gist.github.com', $extension->removeWww('gist.github.com')); | ||
16 | } | ||
17 | } | ||
diff --git a/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php b/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php deleted file mode 100644 index 05450c0b..00000000 --- a/src/Wallabag/CoreBundle/Tests/WallabagCoreTestCase.php +++ /dev/null | |||
@@ -1,51 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\CoreBundle\Tests; | ||
4 | |||
5 | use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | ||
6 | |||
7 | abstract class WallabagCoreTestCase extends WebTestCase | ||
8 | { | ||
9 | private $client = null; | ||
10 | |||
11 | public function getClient() | ||
12 | { | ||
13 | return $this->client; | ||
14 | } | ||
15 | |||
16 | public function setUp() | ||
17 | { | ||
18 | parent::setUp(); | ||
19 | |||
20 | $this->client = static::createClient(); | ||
21 | } | ||
22 | |||
23 | public function logInAs($username) | ||
24 | { | ||
25 | $crawler = $this->client->request('GET', '/login'); | ||
26 | $form = $crawler->filter('button[type=submit]')->form(); | ||
27 | $data = [ | ||
28 | '_username' => $username, | ||
29 | '_password' => 'mypassword', | ||
30 | ]; | ||
31 | |||
32 | $this->client->submit($form, $data); | ||
33 | } | ||
34 | |||
35 | /** | ||
36 | * Return the user id of the logged in user. | ||
37 | * You should be sure that you called `logInAs` before. | ||
38 | * | ||
39 | * @return int | ||
40 | */ | ||
41 | public function getLoggedInUserId() | ||
42 | { | ||
43 | $token = static::$kernel->getContainer()->get('security.token_storage')->getToken(); | ||
44 | |||
45 | if (null !== $token) { | ||
46 | return $token->getUser()->getId(); | ||
47 | } | ||
48 | |||
49 | throw new \RuntimeException('No logged in User.'); | ||
50 | } | ||
51 | } | ||