aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ApiBundle/Controller/DeveloperControllerTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2019-01-151-0/+14
|\
| * Cast client id to avoid PG errorJeremy Benoist2019-01-091-0/+14
| | | | | | | | If someone send a malformated client_id when trying to authenticate using the API we got a 500 if wallabag use postgres because the request send a string instead of an integer.
* | Jump to Symfony 3.4Jeremy Benoist2018-10-041-1/+1
|/ | | | | | | Thanks to the BC compatibility, almost nothing have to be changed. All changes are related to new bundle version of: - SensioFrameworkExtraBundle - DoctrineFixturesBundle
* php-cs-fixerKevin Decherf2018-09-051-2/+2
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fixed testsNicolas Lœuillet2018-01-121-1/+1
|
* Revert client_credentials grant typesJeremy Benoist2017-07-081-21/+1
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-12/+12
|
* Add client_credentials oAuth2 auth methodThomas Citharel2017-06-141-3/+24
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Isolated testsadev2017-05-311-12/+28
| | | | Use https://github.com/dmaicher/doctrine-test-bundle to have test isolation.
* Fixed migration and added testsNicolas Lœuillet2016-10-281-3/+16
|
* Ensure access_token are removedJeremy Benoist2016-10-081-0/+104
When we remove the client, we should ensure that access_token are also removed. To ensure that, I created a test that generated an access_token. So when we remove the client, this association should be cascaded and shouldn’t generate an error. Also I moved some Api related stuff to the ApiBundle (like the developer controler and ClientType form)