aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php
Commit message (Collapse)AuthorAgeFilesLines
* 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 tests about the tag renaming process.Stéphane HULARD2018-09-251-0/+45
|
* php-cs-fixerKevin Decherf2018-09-051-1/+1
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Tag: render tags case-insensitive by storing them in lowercaseKevin Decherf2017-08-271-2/+4
| | | | | | Fixes #2502 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-18/+18
|
* Rewrote code & fix testsJeremy Benoist2017-06-011-1/+1
|
* Isolated testsadev2017-05-311-37/+22
| | | | Use https://github.com/dmaicher/doctrine-test-bundle to have test isolation.
* Ensure retrieved data are freshJeremy Benoist2017-05-311-0/+6
|
* TagController: ignore ActionMarkAsRead when removing tag from entryKevin Decherf2017-05-311-0/+4
| | | | | | Fixes #2835 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Added notmatches operator for tagging ruleNicolas Lœuillet2017-04-201-3/+3
|
* Fixed export by tags with a tag which contains spaceNicolas Lœuillet2016-12-271-1/+1
|
* Ensure orphan tag are remove in APIJeremy Benoist2016-10-071-10/+23
| | | | | | When the association between a tag and an entry is removed, if the tag doesn’t have other entries, we can remove it. Also add more tests for that part and ensure TagControllerTest is isolated from the rest of the test suite (finally!)
* Fix tag testJeremy Benoist2016-10-071-11/+15
|
* Some fixes about upgrade from 2.0.x -> 2.1.0Nicolas Lœuillet2016-09-281-2/+2
|
* Add tests for tag list routesNicolas Lœuillet2016-08-231-0/+31
|
* Change the way to login user in testsJeremy Benoist2016-06-241-0/+6
| | | | | | | | | Instead of using a HTTP request we just login user like FOSUser does. It allows us to mock service in container for functional tests. Also, fix a bad config name in fos_user for firewall And finally, add functional test to PocketImport
* Jump to Symfony 3.1Jeremy Benoist2016-06-221-0/+128