2015-02-16 20:28:49 +00:00
|
|
|
<?php
|
|
|
|
|
2016-11-28 10:12:35 +00:00
|
|
|
namespace tests\Wallabag\CoreBundle\Controller;
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Wallabag\AnnotationBundle\Entity\Annotation;
|
2016-10-08 12:07:13 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Config;
|
2016-10-01 07:26:32 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
|
|
|
use Wallabag\CoreBundle\Entity\Tag;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Wallabag\UserBundle\Entity\User;
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2015-03-29 08:53:10 +00:00
|
|
|
class ConfigControllerTest extends WallabagCoreTestCase
|
2015-02-16 20:28:49 +00:00
|
|
|
{
|
|
|
|
public function testLogin()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-16 20:28:49 +00:00
|
|
|
$this->assertContains('login', $client->getResponse()->headers->get('location'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIndex()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2015-02-17 20:03:23 +00:00
|
|
|
$this->assertCount(1, $crawler->filter('button[id=config_save]'));
|
|
|
|
$this->assertCount(1, $crawler->filter('button[id=change_passwd_save]'));
|
2015-03-27 23:10:39 +00:00
|
|
|
$this->assertCount(1, $crawler->filter('button[id=update_user_save]'));
|
2015-03-28 20:43:49 +00:00
|
|
|
$this->assertCount(1, $crawler->filter('button[id=rss_config_save]'));
|
2015-02-16 20:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2015-02-17 20:03:23 +00:00
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-12-29 08:59:46 +00:00
|
|
|
'config[theme]' => 'baggy',
|
2015-02-16 20:28:49 +00:00
|
|
|
'config[items_per_page]' => '30',
|
2016-03-18 12:12:09 +00:00
|
|
|
'config[reading_speed]' => '0.5',
|
2016-11-06 11:02:39 +00:00
|
|
|
'config[action_mark_as_read]' => '0',
|
2015-10-01 14:28:38 +00:00
|
|
|
'config[language]' => 'en',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-02-16 20:28:49 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-16 20:28:49 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2016-10-01 14:47:48 +00:00
|
|
|
$this->assertContains('flashes.config.notice.config_saved', $crawler->filter('body')->extract(['_text'])[0]);
|
2015-02-16 20:28:49 +00:00
|
|
|
}
|
|
|
|
|
2016-05-02 19:14:23 +00:00
|
|
|
public function testChangeReadingSpeed()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2016-05-02 19:14:23 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://0.0.0.0/test-entry1')
|
|
|
|
->setReadingTime(22);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
|
|
|
|
2016-05-02 19:14:23 +00:00
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$dataFilters = [
|
|
|
|
'entry_filter[readingTime][right_number]' => 22,
|
|
|
|
'entry_filter[readingTime][left_number]' => 22,
|
|
|
|
];
|
|
|
|
$crawler = $client->submit($form, $dataFilters);
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
// Change reading speed
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
|
|
|
$data = [
|
|
|
|
'config[reading_speed]' => '2',
|
|
|
|
];
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
// Is the entry still available via filters?
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$crawler = $client->submit($form, $dataFilters);
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
// Restore old configuration
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
|
|
|
$data = [
|
|
|
|
'config[reading_speed]' => '0.5',
|
|
|
|
];
|
|
|
|
$client->submit($form, $data);
|
|
|
|
}
|
|
|
|
|
2015-02-16 20:28:49 +00:00
|
|
|
public function dataForUpdateFailed()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
return [
|
|
|
|
[[
|
2015-12-29 08:59:46 +00:00
|
|
|
'config[theme]' => 'baggy',
|
2015-02-16 20:28:49 +00:00
|
|
|
'config[items_per_page]' => '',
|
2015-10-01 14:28:38 +00:00
|
|
|
'config[language]' => 'en',
|
2016-04-12 09:36:01 +00:00
|
|
|
]],
|
|
|
|
];
|
2015-02-16 20:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForUpdateFailed
|
|
|
|
*/
|
|
|
|
public function testUpdateFailed($data)
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2015-02-17 20:03:23 +00:00
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
2015-02-16 20:28:49 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-16 20:28:49 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text']));
|
2015-02-16 20:28:49 +00:00
|
|
|
$this->assertContains('This value should not be blank', $alert[0]);
|
|
|
|
}
|
2015-02-17 20:03:23 +00:00
|
|
|
|
|
|
|
public function dataForChangePasswordFailed()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
[
|
2015-08-04 20:51:21 +00:00
|
|
|
'change_passwd[old_password]' => 'material',
|
2015-02-17 20:03:23 +00:00
|
|
|
'change_passwd[new_password][first]' => '',
|
|
|
|
'change_passwd[new_password][second]' => '',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2016-03-09 07:59:08 +00:00
|
|
|
'validator.password_wrong_value',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
[
|
2015-02-17 20:03:23 +00:00
|
|
|
'change_passwd[old_password]' => 'mypassword',
|
|
|
|
'change_passwd[new_password][first]' => '',
|
|
|
|
'change_passwd[new_password][second]' => '',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2015-02-17 21:45:20 +00:00
|
|
|
'This value should not be blank',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
[
|
2015-02-17 20:03:23 +00:00
|
|
|
'change_passwd[old_password]' => 'mypassword',
|
|
|
|
'change_passwd[new_password][first]' => 'hop',
|
|
|
|
'change_passwd[new_password][second]' => '',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2016-03-09 07:59:08 +00:00
|
|
|
'validator.password_must_match',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
[
|
2015-02-17 20:03:23 +00:00
|
|
|
'change_passwd[old_password]' => 'mypassword',
|
|
|
|
'change_passwd[new_password][first]' => 'hop',
|
|
|
|
'change_passwd[new_password][second]' => 'hop',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2016-03-09 07:59:08 +00:00
|
|
|
'validator.password_too_short',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
];
|
2015-02-17 20:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForChangePasswordFailed
|
|
|
|
*/
|
|
|
|
public function testChangePasswordFailed($data, $expectedMessage)
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-17 20:03:23 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=change_passwd_save]')->form();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-17 20:03:23 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text']));
|
2015-02-17 20:03:23 +00:00
|
|
|
$this->assertContains($expectedMessage, $alert[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testChangePassword()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-17 20:03:23 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=change_passwd_save]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-02-17 20:03:23 +00:00
|
|
|
'change_passwd[old_password]' => 'mypassword',
|
|
|
|
'change_passwd[new_password][first]' => 'mypassword',
|
|
|
|
'change_passwd[new_password][second]' => 'mypassword',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-02-17 20:03:23 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-17 20:03:23 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2016-10-01 14:47:48 +00:00
|
|
|
$this->assertContains('flashes.config.notice.password_updated', $crawler->filter('body')->extract(['_text'])[0]);
|
2015-02-17 20:03:23 +00:00
|
|
|
}
|
2015-02-17 21:45:20 +00:00
|
|
|
|
|
|
|
public function dataForUserFailed()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
[
|
2015-03-27 23:10:39 +00:00
|
|
|
'update_user[name]' => '',
|
|
|
|
'update_user[email]' => '',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2016-03-09 07:59:08 +00:00
|
|
|
'fos_user.email.blank',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
[
|
2015-03-27 23:10:39 +00:00
|
|
|
'update_user[name]' => '',
|
|
|
|
'update_user[email]' => 'test',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2016-03-09 07:59:08 +00:00
|
|
|
'fos_user.email.invalid',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
];
|
2015-02-17 21:45:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForUserFailed
|
|
|
|
*/
|
|
|
|
public function testUserFailed($data, $expectedMessage)
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-17 21:45:20 +00:00
|
|
|
|
2015-03-27 23:10:39 +00:00
|
|
|
$form = $crawler->filter('button[id=update_user_save]')->form();
|
2015-02-17 21:45:20 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-17 21:45:20 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text']));
|
2015-02-17 21:45:20 +00:00
|
|
|
$this->assertContains($expectedMessage, $alert[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUserUpdate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-17 21:45:20 +00:00
|
|
|
|
2015-03-27 23:10:39 +00:00
|
|
|
$form = $crawler->filter('button[id=update_user_save]')->form();
|
2015-02-17 21:45:20 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-03-27 23:10:39 +00:00
|
|
|
'update_user[name]' => 'new name',
|
|
|
|
'update_user[email]' => 'admin@wallabag.io',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-02-17 21:45:20 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-17 21:45:20 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text']));
|
2016-03-11 13:48:46 +00:00
|
|
|
$this->assertContains('flashes.config.notice.user_updated', $alert[0]);
|
2015-02-17 21:45:20 +00:00
|
|
|
}
|
2015-02-22 08:30:25 +00:00
|
|
|
|
2015-03-28 20:43:49 +00:00
|
|
|
public function testRssUpdateResetToken()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
// reset the token
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
$user = $em
|
2015-10-02 12:51:41 +00:00
|
|
|
->getRepository('WallabagUserBundle:User')
|
2015-03-28 20:43:49 +00:00
|
|
|
->findOneByUsername('admin');
|
|
|
|
|
|
|
|
if (!$user) {
|
|
|
|
$this->markTestSkipped('No user found in db.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$config = $user->getConfig();
|
|
|
|
$config->setRssToken(null);
|
|
|
|
$em->persist($config);
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-03-28 20:43:49 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-03-09 07:59:08 +00:00
|
|
|
$this->assertContains('config.form_rss.no_token', $body[0]);
|
2015-03-28 20:43:49 +00:00
|
|
|
|
|
|
|
$client->request('GET', '/generate-token');
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-03-28 20:43:49 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-03-09 07:59:08 +00:00
|
|
|
$this->assertNotContains('config.form_rss.no_token', $body[0]);
|
2015-03-28 20:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGenerateTokenAjax()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request(
|
|
|
|
'GET',
|
|
|
|
'/generate-token',
|
2016-04-12 09:36:01 +00:00
|
|
|
[],
|
|
|
|
[],
|
|
|
|
['HTTP_X-Requested-With' => 'XMLHttpRequest']
|
2015-03-28 20:43:49 +00:00
|
|
|
);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-04-01 19:53:57 +00:00
|
|
|
$content = json_decode($client->getResponse()->getContent(), true);
|
2015-03-28 20:43:49 +00:00
|
|
|
$this->assertArrayHasKey('token', $content);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRssUpdate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-03-28 20:43:49 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=rss_config_save]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-03-28 20:43:49 +00:00
|
|
|
'rss_config[rss_limit]' => 12,
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-03-28 20:43:49 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-03-28 20:43:49 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2016-10-01 14:47:48 +00:00
|
|
|
$this->assertContains('flashes.config.notice.rss_updated', $crawler->filter('body')->extract(['_text'])[0]);
|
2015-03-28 20:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function dataForRssFailed()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
[
|
2015-03-28 20:43:49 +00:00
|
|
|
'rss_config[rss_limit]' => 0,
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2015-03-28 20:43:49 +00:00
|
|
|
'This value should be 1 or more.',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
[
|
2015-03-28 20:43:49 +00:00
|
|
|
'rss_config[rss_limit]' => 1000000000000,
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
2016-11-12 12:18:39 +00:00
|
|
|
'validator.rss_limit_too_high',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
];
|
2015-03-28 20:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForRssFailed
|
|
|
|
*/
|
|
|
|
public function testRssFailed($data, $expectedMessage)
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-03-28 20:43:49 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=rss_config_save]')->form();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-03-28 20:43:49 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(['_text']));
|
2015-03-28 20:43:49 +00:00
|
|
|
$this->assertContains($expectedMessage, $alert[0]);
|
|
|
|
}
|
2015-10-31 15:21:56 +00:00
|
|
|
|
|
|
|
public function testTaggingRuleCreation()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-10-31 15:21:56 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-10-31 15:21:56 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=tagging_rule_save]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-10-31 15:21:56 +00:00
|
|
|
'tagging_rule[rule]' => 'readingTime <= 3',
|
|
|
|
'tagging_rule[tags]' => 'short reading',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-10-31 15:21:56 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-10-31 15:21:56 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2016-10-01 14:47:48 +00:00
|
|
|
$this->assertContains('flashes.config.notice.tagging_rules_updated', $crawler->filter('body')->extract(['_text'])[0]);
|
|
|
|
|
|
|
|
$editLink = $crawler->filter('.mode_edit')->last()->link();
|
|
|
|
|
|
|
|
$crawler = $client->click($editLink);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-01 14:47:48 +00:00
|
|
|
$this->assertContains('?tagging-rule=', $client->getResponse()->headers->get('location'));
|
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=tagging_rule_save]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'tagging_rule[rule]' => 'readingTime <= 30',
|
|
|
|
'tagging_rule[tags]' => 'short reading',
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-01 14:47:48 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertContains('flashes.config.notice.tagging_rules_updated', $crawler->filter('body')->extract(['_text'])[0]);
|
|
|
|
|
|
|
|
$this->assertContains('readingTime <= 30', $crawler->filter('body')->extract(['_text'])[0]);
|
2015-10-31 15:21:56 +00:00
|
|
|
|
2015-11-13 20:23:39 +00:00
|
|
|
$deleteLink = $crawler->filter('.delete')->last()->link();
|
2015-10-31 15:21:56 +00:00
|
|
|
|
|
|
|
$crawler = $client->click($deleteLink);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-10-31 15:21:56 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
2016-10-01 14:47:48 +00:00
|
|
|
$this->assertContains('flashes.config.notice.tagging_rules_deleted', $crawler->filter('body')->extract(['_text'])[0]);
|
2015-10-31 15:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function dataForTaggingRuleFailed()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
[
|
2016-01-21 17:06:10 +00:00
|
|
|
'tagging_rule[rule]' => 'unknownVar <= 3',
|
|
|
|
'tagging_rule[tags]' => 'cool tag',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
[
|
2016-01-21 17:06:10 +00:00
|
|
|
'The variable',
|
|
|
|
'does not exist.',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
[
|
2016-01-21 17:06:10 +00:00
|
|
|
'tagging_rule[rule]' => 'length(domainName) <= 42',
|
|
|
|
'tagging_rule[tags]' => 'cool tag',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
[
|
2016-01-21 17:06:10 +00:00
|
|
|
'The operator',
|
|
|
|
'does not exist.',
|
2016-04-12 09:36:01 +00:00
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
2015-10-31 15:21:56 +00:00
|
|
|
}
|
2016-01-21 17:06:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForTaggingRuleFailed
|
|
|
|
*/
|
|
|
|
public function testTaggingRuleCreationFail($data, $messages)
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-01-21 17:06:10 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=tagging_rule_save]')->form();
|
|
|
|
|
2016-03-11 08:42:08 +00:00
|
|
|
$crawler = $client->submit($form, $data);
|
2016-01-21 17:06:10 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-01-21 17:06:10 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-03-11 08:42:08 +00:00
|
|
|
|
2016-01-21 17:06:10 +00:00
|
|
|
foreach ($messages as $message) {
|
2016-03-11 08:42:08 +00:00
|
|
|
$this->assertContains($message, $body[0]);
|
2016-01-21 17:06:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 10:10:39 +00:00
|
|
|
public function testTaggingRuleTooLong()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-12-03 10:10:39 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=tagging_rule_save]')->form();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, [
|
|
|
|
'tagging_rule[rule]' => str_repeat('title', 60),
|
|
|
|
'tagging_rule[tags]' => 'cool tag',
|
|
|
|
]);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-12-03 10:10:39 +00:00
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
|
|
|
|
|
|
|
$this->assertContains('255 characters', $body[0]);
|
|
|
|
}
|
|
|
|
|
2016-01-21 17:06:10 +00:00
|
|
|
public function testDeletingTaggingRuleFromAnOtherUser()
|
|
|
|
{
|
|
|
|
$this->logInAs('bob');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$rule = $client->getContainer()->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:TaggingRule')
|
|
|
|
->findAll()[0];
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$crawler = $client->request('GET', '/tagging-rule/edit/' . $rule->getId());
|
2016-10-01 14:47:48 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(403, $client->getResponse()->getStatusCode());
|
2016-10-01 14:47:48 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
|
|
|
$this->assertContains('You can not access this tagging rule', $body[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEditingTaggingRuleFromAnOtherUser()
|
|
|
|
{
|
|
|
|
$this->logInAs('bob');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$rule = $client->getContainer()->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:TaggingRule')
|
|
|
|
->findAll()[0];
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$crawler = $client->request('GET', '/tagging-rule/edit/' . $rule->getId());
|
2016-03-11 08:42:08 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(403, $client->getResponse()->getStatusCode());
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-03-11 08:42:08 +00:00
|
|
|
$this->assertContains('You can not access this tagging rule', $body[0]);
|
2016-01-21 17:06:10 +00:00
|
|
|
}
|
2016-02-22 12:33:22 +00:00
|
|
|
|
|
|
|
public function testDemoMode()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$config = $client->getContainer()->get('craue_config');
|
|
|
|
$config->set('demo_mode_enabled', 1);
|
|
|
|
$config->set('demo_mode_username', 'admin');
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-02-22 12:33:22 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=change_passwd_save]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2016-02-22 12:33:22 +00:00
|
|
|
'change_passwd[old_password]' => 'mypassword',
|
|
|
|
'change_passwd[new_password][first]' => 'mypassword',
|
|
|
|
'change_passwd[new_password][second]' => 'mypassword',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2016-02-22 12:33:22 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-03-11 13:48:46 +00:00
|
|
|
$this->assertContains('flashes.config.notice.password_not_updated_demo', $client->getContainer()->get('session')->getFlashBag()->get('notice')[0]);
|
2016-02-22 12:33:22 +00:00
|
|
|
|
|
|
|
$config->set('demo_mode_enabled', 0);
|
|
|
|
$config->set('demo_mode_username', 'wallabag');
|
|
|
|
}
|
2016-09-08 13:47:03 +00:00
|
|
|
|
|
|
|
public function testDeleteUserButtonVisibility()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-10-08 17:39:50 +00:00
|
|
|
$this->assertContains('config.form_user.delete.button', $body[0]);
|
2016-09-08 13:47:03 +00:00
|
|
|
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
$user = $em
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->findOneByUsername('empty');
|
2016-11-21 14:12:11 +00:00
|
|
|
$user->setEnabled(false);
|
2016-09-08 13:47:03 +00:00
|
|
|
$em->persist($user);
|
|
|
|
|
|
|
|
$user = $em
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->findOneByUsername('bob');
|
2016-11-21 14:12:11 +00:00
|
|
|
$user->setEnabled(false);
|
2016-09-08 13:47:03 +00:00
|
|
|
$em->persist($user);
|
|
|
|
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-10-08 17:39:50 +00:00
|
|
|
$this->assertNotContains('config.form_user.delete.button', $body[0]);
|
2016-09-08 13:47:03 +00:00
|
|
|
|
|
|
|
$client->request('GET', '/account/delete');
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(403, $client->getResponse()->getStatusCode());
|
2016-09-08 13:47:03 +00:00
|
|
|
|
|
|
|
$user = $em
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->findOneByUsername('empty');
|
2016-11-21 14:12:11 +00:00
|
|
|
$user->setEnabled(true);
|
2016-09-08 13:47:03 +00:00
|
|
|
$em->persist($user);
|
|
|
|
|
|
|
|
$user = $em
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->findOneByUsername('bob');
|
2016-11-21 14:12:11 +00:00
|
|
|
$user->setEnabled(true);
|
2016-09-08 13:47:03 +00:00
|
|
|
$em->persist($user);
|
|
|
|
|
|
|
|
$em->flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeleteAccount()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
2016-10-08 12:07:13 +00:00
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
$user = new User();
|
|
|
|
$user->setName('Wallace');
|
|
|
|
$user->setEmail('wallace@wallabag.org');
|
|
|
|
$user->setUsername('wallace');
|
|
|
|
$user->setPlainPassword('wallace');
|
|
|
|
$user->setEnabled(true);
|
|
|
|
$user->addRole('ROLE_SUPER_ADMIN');
|
|
|
|
|
|
|
|
$em->persist($user);
|
|
|
|
|
|
|
|
$config = new Config($user);
|
|
|
|
|
|
|
|
$config->setTheme('material');
|
|
|
|
$config->setItemsPerPage(30);
|
|
|
|
$config->setReadingSpeed(1);
|
|
|
|
$config->setLanguage('en');
|
|
|
|
$config->setPocketConsumerKey('xxxxx');
|
|
|
|
|
|
|
|
$em->persist($config);
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$this->logInAs('wallace');
|
2016-10-08 17:39:50 +00:00
|
|
|
$loggedInUserId = $this->getLoggedInUserId();
|
2016-09-08 13:47:03 +00:00
|
|
|
|
2016-09-09 08:08:12 +00:00
|
|
|
// create entry to check after user deletion
|
|
|
|
// that this entry is also deleted
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-09-09 08:08:12 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url = 'https://github.com/wallabag/wallabag',
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-09-09 08:08:12 +00:00
|
|
|
|
2016-09-08 13:47:03 +00:00
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
2016-09-08 14:00:39 +00:00
|
|
|
$deleteLink = $crawler->filter('.delete-account')->last()->link();
|
2016-09-08 13:47:03 +00:00
|
|
|
|
|
|
|
$client->click($deleteLink);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-09-08 13:47:03 +00:00
|
|
|
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
$user = $em
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->createQueryBuilder('u')
|
|
|
|
->where('u.username = :username')->setParameter('username', 'wallace')
|
|
|
|
->getQuery()
|
|
|
|
->getOneOrNullResult()
|
|
|
|
;
|
|
|
|
|
2016-09-08 14:00:39 +00:00
|
|
|
$this->assertNull($user);
|
2016-09-09 08:08:12 +00:00
|
|
|
|
|
|
|
$entries = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-10-08 17:39:50 +00:00
|
|
|
->findByUser($loggedInUserId);
|
2016-09-09 08:08:12 +00:00
|
|
|
|
|
|
|
$this->assertEmpty($entries);
|
2016-09-08 13:47:03 +00:00
|
|
|
}
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
public function testReset()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
$user = static::$kernel->getContainer()->get('security.token_storage')->getToken()->getUser();
|
|
|
|
|
|
|
|
$tag = new Tag();
|
|
|
|
$tag->setLabel('super');
|
|
|
|
$em->persist($tag);
|
|
|
|
|
|
|
|
$entry = new Entry($user);
|
2018-06-06 15:34:20 +00:00
|
|
|
$entry->setUrl('https://www.lemonde.fr/europe/article/2016/10/01/pour-le-psoe-chaque-election-s-est-transformee-en-une-agonie_5006476_3214.html');
|
2016-10-01 07:26:32 +00:00
|
|
|
$entry->setContent('Youhou');
|
|
|
|
$entry->setTitle('Youhou');
|
|
|
|
$entry->addTag($tag);
|
|
|
|
$em->persist($entry);
|
|
|
|
|
|
|
|
$entry2 = new Entry($user);
|
|
|
|
$entry2->setUrl('http://www.lemonde.de/europe/article/2016/10/01/pour-le-psoe-chaque-election-s-est-transformee-en-une-agonie_5006476_3214.html');
|
|
|
|
$entry2->setContent('Youhou');
|
|
|
|
$entry2->setTitle('Youhou');
|
|
|
|
$entry2->addTag($tag);
|
|
|
|
$em->persist($entry2);
|
|
|
|
|
|
|
|
$annotation = new Annotation($user);
|
|
|
|
$annotation->setText('annotated');
|
|
|
|
$annotation->setQuote('annotated');
|
|
|
|
$annotation->setRanges([]);
|
|
|
|
$annotation->setEntry($entry);
|
|
|
|
$em->persist($annotation);
|
|
|
|
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
// reset annotations
|
|
|
|
$crawler = $client->request('GET', '/config#set3');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
$crawler = $client->click($crawler->selectLink('config.reset.annotations')->link());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
$this->assertContains('flashes.config.notice.annotations_reset', $client->getContainer()->get('session')->getFlashBag()->get('notice')[0]);
|
|
|
|
|
|
|
|
$annotationsReset = $em
|
|
|
|
->getRepository('WallabagAnnotationBundle:Annotation')
|
|
|
|
->findAnnotationsByPageId($entry->getId(), $user->getId());
|
|
|
|
|
|
|
|
$this->assertEmpty($annotationsReset, 'Annotations were reset');
|
|
|
|
|
|
|
|
// reset tags
|
|
|
|
$crawler = $client->request('GET', '/config#set3');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
$crawler = $client->click($crawler->selectLink('config.reset.tags')->link());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
$this->assertContains('flashes.config.notice.tags_reset', $client->getContainer()->get('session')->getFlashBag()->get('notice')[0]);
|
|
|
|
|
|
|
|
$tagReset = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Tag')
|
|
|
|
->countAllTags($user->getId());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(0, $tagReset, 'Tags were reset');
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
// reset entries
|
|
|
|
$crawler = $client->request('GET', '/config#set3');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
$crawler = $client->click($crawler->selectLink('config.reset.entries')->link());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
$this->assertContains('flashes.config.notice.entries_reset', $client->getContainer()->get('session')->getFlashBag()->get('notice')[0]);
|
|
|
|
|
|
|
|
$entryReset = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-03-30 14:07:48 +00:00
|
|
|
->countAllEntriesByUser($user->getId());
|
2016-10-01 07:26:32 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(0, $entryReset, 'Entries were reset');
|
2016-10-01 07:26:32 +00:00
|
|
|
}
|
|
|
|
|
2017-03-30 14:24:59 +00:00
|
|
|
public function testResetArchivedEntries()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
$user = static::$kernel->getContainer()->get('security.token_storage')->getToken()->getUser();
|
|
|
|
|
|
|
|
$tag = new Tag();
|
|
|
|
$tag->setLabel('super');
|
|
|
|
$em->persist($tag);
|
|
|
|
|
|
|
|
$entry = new Entry($user);
|
2018-06-06 15:34:20 +00:00
|
|
|
$entry->setUrl('https://www.lemonde.fr/europe/article/2016/10/01/pour-le-psoe-chaque-election-s-est-transformee-en-une-agonie_5006476_3214.html');
|
2017-03-30 14:24:59 +00:00
|
|
|
$entry->setContent('Youhou');
|
|
|
|
$entry->setTitle('Youhou');
|
|
|
|
$entry->addTag($tag);
|
|
|
|
$em->persist($entry);
|
|
|
|
|
|
|
|
$annotation = new Annotation($user);
|
|
|
|
$annotation->setText('annotated');
|
|
|
|
$annotation->setQuote('annotated');
|
|
|
|
$annotation->setRanges([]);
|
|
|
|
$annotation->setEntry($entry);
|
|
|
|
$em->persist($annotation);
|
|
|
|
|
|
|
|
$tagArchived = new Tag();
|
|
|
|
$tagArchived->setLabel('super');
|
|
|
|
$em->persist($tagArchived);
|
|
|
|
|
|
|
|
$entryArchived = new Entry($user);
|
2018-06-06 15:34:20 +00:00
|
|
|
$entryArchived->setUrl('https://www.lemonde.fr/europe/article/2016/10/01/pour-le-psoe-chaque-election-s-est-transformee-en-une-agonie_5006476_3214.html');
|
2017-03-30 14:24:59 +00:00
|
|
|
$entryArchived->setContent('Youhou');
|
|
|
|
$entryArchived->setTitle('Youhou');
|
|
|
|
$entryArchived->addTag($tagArchived);
|
2018-04-11 09:42:52 +00:00
|
|
|
$entryArchived->updateArchived(true);
|
2017-03-30 14:24:59 +00:00
|
|
|
$em->persist($entryArchived);
|
|
|
|
|
|
|
|
$annotationArchived = new Annotation($user);
|
|
|
|
$annotationArchived->setText('annotated');
|
|
|
|
$annotationArchived->setQuote('annotated');
|
|
|
|
$annotationArchived->setRanges([]);
|
|
|
|
$annotationArchived->setEntry($entryArchived);
|
|
|
|
$em->persist($annotationArchived);
|
|
|
|
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config#set3');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-03-30 14:24:59 +00:00
|
|
|
|
|
|
|
$crawler = $client->click($crawler->selectLink('config.reset.archived')->link());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-03-30 14:24:59 +00:00
|
|
|
$this->assertContains('flashes.config.notice.archived_reset', $client->getContainer()->get('session')->getFlashBag()->get('notice')[0]);
|
|
|
|
|
|
|
|
$entryReset = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-03-31 08:46:47 +00:00
|
|
|
->countAllEntriesByUser($user->getId());
|
2017-03-30 14:24:59 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(1, $entryReset, 'Entries were reset');
|
2017-03-30 14:24:59 +00:00
|
|
|
|
|
|
|
$tagReset = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Tag')
|
|
|
|
->countAllTags($user->getId());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(1, $tagReset, 'Tags were reset');
|
2017-03-30 14:24:59 +00:00
|
|
|
|
|
|
|
$annotationsReset = $em
|
|
|
|
->getRepository('WallabagAnnotationBundle:Annotation')
|
|
|
|
->findAnnotationsByPageId($annotationArchived->getId(), $user->getId());
|
|
|
|
|
|
|
|
$this->assertEmpty($annotationsReset, 'Annotations were reset');
|
|
|
|
}
|
|
|
|
|
2016-10-01 07:26:32 +00:00
|
|
|
public function testResetEntriesCascade()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
$user = static::$kernel->getContainer()->get('security.token_storage')->getToken()->getUser();
|
|
|
|
|
|
|
|
$tag = new Tag();
|
|
|
|
$tag->setLabel('super');
|
|
|
|
$em->persist($tag);
|
|
|
|
|
|
|
|
$entry = new Entry($user);
|
2018-06-06 15:34:20 +00:00
|
|
|
$entry->setUrl('https://www.lemonde.fr/europe/article/2016/10/01/pour-le-psoe-chaque-election-s-est-transformee-en-une-agonie_5006476_3214.html');
|
2016-10-01 07:26:32 +00:00
|
|
|
$entry->setContent('Youhou');
|
|
|
|
$entry->setTitle('Youhou');
|
|
|
|
$entry->addTag($tag);
|
|
|
|
$em->persist($entry);
|
|
|
|
|
|
|
|
$annotation = new Annotation($user);
|
|
|
|
$annotation->setText('annotated');
|
|
|
|
$annotation->setQuote('annotated');
|
|
|
|
$annotation->setRanges([]);
|
|
|
|
$annotation->setEntry($entry);
|
|
|
|
$em->persist($annotation);
|
|
|
|
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/config#set3');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
$crawler = $client->click($crawler->selectLink('config.reset.entries')->link());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-01 07:26:32 +00:00
|
|
|
$this->assertContains('flashes.config.notice.entries_reset', $client->getContainer()->get('session')->getFlashBag()->get('notice')[0]);
|
|
|
|
|
|
|
|
$entryReset = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-03-30 14:07:48 +00:00
|
|
|
->countAllEntriesByUser($user->getId());
|
2016-10-01 07:26:32 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(0, $entryReset, 'Entries were reset');
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
$tagReset = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Tag')
|
|
|
|
->countAllTags($user->getId());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(0, $tagReset, 'Tags were reset');
|
2016-10-01 07:26:32 +00:00
|
|
|
|
|
|
|
$annotationsReset = $em
|
|
|
|
->getRepository('WallabagAnnotationBundle:Annotation')
|
|
|
|
->findAnnotationsByPageId($entry->getId(), $user->getId());
|
|
|
|
|
|
|
|
$this->assertEmpty($annotationsReset, 'Annotations were reset');
|
|
|
|
}
|
2016-11-28 10:12:35 +00:00
|
|
|
|
|
|
|
public function testSwitchViewMode()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2016-11-28 10:12:35 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$this->assertNotContains('listmode', $client->getResponse()->getContent());
|
|
|
|
|
|
|
|
$client->request('GET', '/config/view-mode');
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$this->assertContains('listmode', $client->getResponse()->getContent());
|
2016-11-28 10:26:08 +00:00
|
|
|
|
|
|
|
$client->request('GET', '/config/view-mode');
|
2016-11-28 10:12:35 +00:00
|
|
|
}
|
2018-10-13 07:24:39 +00:00
|
|
|
|
|
|
|
public function testChangeLocaleWithoutReferer()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/locale/de');
|
|
|
|
$client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertSame('de', $client->getRequest()->getLocale());
|
|
|
|
$this->assertSame('de', $client->getContainer()->get('session')->get('_locale'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testChangeLocaleWithReferer()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/login');
|
|
|
|
$client->request('GET', '/locale/de');
|
|
|
|
$client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertSame('de', $client->getRequest()->getLocale());
|
|
|
|
$this->assertSame('de', $client->getContainer()->get('session')->get('_locale'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testChangeLocaleToBadLocale()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/login');
|
|
|
|
$client->request('GET', '/locale/yuyuyuyu');
|
|
|
|
$client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertNotSame('yuyuyuyu', $client->getRequest()->getLocale());
|
|
|
|
$this->assertNotSame('yuyuyuyu', $client->getContainer()->get('session')->get('_locale'));
|
|
|
|
}
|
2015-02-16 20:28:49 +00:00
|
|
|
}
|