aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller
Commit message (Collapse)AuthorAgeFilesLines
* Fix testsJeremy Benoist2019-11-131-2/+2
|
* Fix tests & update depsJeremy Benoist2019-10-221-1/+1
| | | | | | | | | | | | | | | | | | - Updating twig/twig (v2.12.0 => v2.12.1) - Updating symfony/mime (v4.3.4 => v4.3.5) - Updating friendsofsymfony/rest-bundle (2.5.0 => 2.6.0) - Updating j0k3r/graby-site-config (1.0.91 => 1.0.93) - Updating monolog/monolog (1.24.0 => 1.25.1) - Updating simplepie/simplepie (1.5.2 => 1.5.3) - Updating symfony/http-client-contracts (v1.1.6 => v1.1.7) - Updating symfony/http-client (v4.3.4 => v4.3.5) - Updating nette/utils (v3.0.1 => v3.0.2) - Updating phpstan/phpstan (0.11.17 => 0.11.18) - Updating zendframework/zend-code (3.3.2 => 3.4.0) - Updating php-amqplib/php-amqplib (v2.10.0 => v2.10.1) - Updating beberlei/assert (v3.2.3 => v3.2.6) - Updating zendframework/zend-diactoros (2.1.3 => 2.1.5) - Updating sentry/sentry (2.2.1 => 2.2.2)
* Fixed default value for reading speedNicolas Lœuillet2019-09-191-1/+1
|
* Fix testsJeremy Benoist2019-07-261-2/+2
|
* Merge pull request #4053 from wallabag/feature/manual-input-reading-speedJérémy Benoist2019-07-091-3/+3
|\ | | | | Add ability to manually define the reading speed
| * Add ability to manually define the reading speedJeremy Benoist2019-07-081-3/+3
| | | | | | | | Instead of using a select, let the user decide its own speed.
* | Add ability to import/export tagging rulesJeremy Benoist2019-07-081-0/+64
|/ | | | | | | | | - Add missing translations - Add some tests - Add `/api/taggingrule/export` API endpoint - Add baggy theme - Add error message when importing tagging rules failed - Also fix all translations (I think we are good now)
* Update test urlJeremy Benoist2019-06-181-2/+2
| | | | | The previous URL started to report title as `snippet intertitre` instead of the previous title which contains Google. It looks like a bug on the website side. Instead of updating the test to match that new title, I prefer to use a more recent url instead.
* Merge pull request #3959 from wallabag/mig-tag-collationJérémy Benoist2019-06-061-0/+46
|\ | | | | mysql: change collation of tag label
| * mysql: change collation of tag tableKevin Decherf2019-05-191-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | utf8mb4_unicode_ci considers that 'caché' is equal to 'cache' which can lead to attaching incorrect tags to entries. This issue is due to some unicode normalization done by MySQL. utf8mb4_bin makes no unicode normalization, letting wallabag to consider 'cache' and 'caché' as two different tags. We change the collation of the whole table as Doctrine does not support setting a collation on a column for a specific platform (it tries to apply utf8mb4_bin even for pgsql and sqlite). Fixes #3302 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* | Add ability to revoke feed tokenJeremy Benoist2019-06-051-1/+17
| |
* | Use two indexes instead of one for hashed urlsJeremy Benoist2019-06-051-0/+3
| | | | | | | | | | When using `OR` in a where clause, a composite index can't be used. We should use a `UNION` to take advantages of it. Instead, create 2 indexes on each hashed urls and make 2 queries to find an url. It'll be faster than the previous solution.
* | Added given_url in entry tableNicolas Lœuillet2019-05-291-1/+35
| | | | | | | | | | | | | | | | | | | | - Added index on entry table for given_url field - Fix tests: The previous `bit.ly` url redirected to doc.wallabag but that url doesn't exist in the fixtures. I used our own internal "redirector" to create a redirect to an url which exist in the fixtures. Also, updating current migration to use the new `WallabagMigration`.
* | Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2019-05-271-1/+1
|\ \ | |/ |/|
| * Fix testJeremy Benoist2019-05-271-1/+1
| |
| * FIx unrelated failing testJeremy Benoist2019-04-231-1/+1
| |
* | Handle redirection from previous feedsJeremy Benoist2019-04-261-0/+33
| |
* | Fix tests & cs & migrationJeremy Benoist2019-04-263-29/+29
| |
* | Changed RSS to Atom feed and improve pagingThomas Citharel2019-04-254-238/+245
| |
* | Change the way to enable 2FAJeremy Benoist2019-01-231-113/+81
| | | | | | | | And add a step to validate a generated code from the OTP app
* | Enable OTP 2FAJeremy Benoist2019-01-232-8/+133
| | | | | | | | | | | | | | | | | | - Update SchebTwoFactorBundle to version 3 - Enable Google 2fa on the bundle - Disallow ability to use both email and google as 2fa - Update Ocramius Proxy Manager to handle typed function & attributes (from PHP 7) - use `$this->addFlash` shortcut instead of `$this->get('session')->getFlashBag()->add` - update admin to be able to create/reset the 2fa
* | Use only one method to randomizeJeremy Benoist2019-01-191-0/+26
| | | | | | | | Instead of one per type, one for all is ok.
* | Enable PHPStanJeremy Benoist2019-01-184-9/+8
| | | | | | | | | | - Fix error for level 0 & 1 (level 7 has 699 errors...) - Add `updated_at` to site_credential (so the `timestamps()` method applies correctly)
* | Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2019-01-151-3/+8
|\|
| * EntriesExport: sanitize filename and fix testsKevin Decherf2019-01-081-3/+8
| | | | | | | | | | | | | | | | Filename will now only use a-zA-Z0-9-' and space. Fixes remaining filename issue on #3811 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* | Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2018-11-251-3/+2
|\| | | | | | | | | | | | | | | # Conflicts: # web/wallassets/baggy.js # web/wallassets/manifest.json # web/wallassets/material.css # web/wallassets/material.js
| * Prepare 2.3.4 releaseJeremy Benoist2018-11-231-3/+2
| |
* | Merge pull request #3574 from shulard/feature/rename-tagsJérémy Benoist2018-10-151-0/+45
|\ \ | | | | | | Allow to rename tags from the web interface.
| * | Add tests about the tag renaming process.Stéphane HULARD2018-09-251-0/+45
| | |
* | | Ensure language is validJeremy Benoist2018-10-131-0/+35
| | | | | | | | | | | | | | | - Do not override locale if user has choosen a locale from the login screen. - Add some tests about locale url
* | | Jump to Symfony 3.4Jeremy Benoist2018-10-041-5/+7
|/ / | | | | | | | | | | | | Thanks to the BC compatibility, almost nothing have to be changed. All changes are related to new bundle version of: - SensioFrameworkExtraBundle - DoctrineFixturesBundle
* / Entry: add archived_at property and updateArchived methodSébastien Viande2018-09-212-5/+5
|/
* Liberation goes httpsJeremy Benoist2018-09-211-1/+2
|
* Fix testsJeremy Benoist2018-09-071-4/+4
|
* php-cs-fixerKevin Decherf2018-09-053-4/+4
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Removing failing test from TravisJeremy Benoist2018-08-191-4/+0
|
* Fix testsJeremy Benoist2018-06-062-9/+9
|
* Allow login by emailFloran Brutel2018-04-011-1/+11
|
* Replace zataz urlFloran Brutel2018-03-301-3/+3
|
* Use https instead of http for bild.de to fix testsFloran Brutel2018-03-291-1/+1
|
* Fixed testsNicolas Lœuillet2018-01-121-2/+2
|
* php-csKevin Decherf2017-12-311-1/+1
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Add test to prevent regression for #3534Kevin Decherf2017-12-311-0/+20
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fix typoJeremy Benoist2017-12-181-3/+3
|
* Add test on EntryControllerTest for #3442Kevin Decherf2017-12-131-0/+49
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fix All RSS not accessible if not logged in + TestsChristophe VERGNE2017-12-111-0/+25
|
* Merge pull request #3431 from wallabag/disable-site-credentialsJérémy Benoist2017-11-221-0/+14
|\ | | | | Disable controller access if feature disabled
| * Disable controller access if feature disabledJeremy Benoist2017-11-221-0/+14
| | | | | | | | If `restricted_access` is disabled, accessing `/site-credentials/` must be disabled.
* | Merge pull request #3425 from wallabag/add-setting-for-headersNicolas Lœuillet2017-11-211-0/+3
|\| | | | | Added internal setting to enable/disable headers storage
| * Added internal setting to enable/disable headers storageNicolas Lœuillet2017-11-201-0/+3
| |