aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Tests/Import/PocketImportTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Convert array + phpDocJeremy Benoist2016-04-121-1/+1
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Convert english translation fileJeremy Benoist2016-03-201-1/+1
| | | | | | | - convert english translation to translate key - remove baggy template for login (never used since user isn't logged in and it'll use the default theme: material) - fix tests about text in response (now checking translation key instead of translated text) - remove all ugly `<div class="hidden">{{ form_rest(form) }}</div>`
* Improve testsJeremy Benoist2016-03-111-4/+0
| | | | | | - add more tests for coverage - add a test on annotation deletion - fix post annontation with ranges
* Added 'wallabag' in page titleNicolas LÅ“uillet2016-03-081-1/+1
|
* Adding testJeremy Benoist2016-03-041-3/+91
| | | | Reformat json file (thanks pro.jsonlint.com)
* Move assignTagsToEntry in ContentProxy helperJeremy Benoist2016-02-191-16/+2
|
* Add CraueConfig for internal settingsJeremy Benoist2016-01-311-1/+10
|
* Fix `findOneByUrl` side effect in testsJeremy Benoist2016-01-151-1/+1
| | | | Fix #1566
* updated testsNicolas LÅ“uillet2016-01-071-1/+1
|
* Fix tag related test for PocketJeremy Benoist2016-01-031-1/+3
|
* Add tagged services for importJeremy Benoist2016-01-021-1/+2
| | | | | | | | | - list services in /import - add url to import service - ImportBundle routing are now prefixed by /import - optimize flush in each import (flushing each 20 contents) - improve design of each import - add more tests
* Rewrote Pocket ImportJeremy Benoist2016-01-021-17/+211
| | | | | | | For the moment, we won't do a queue system, just a plain synchronous import. We also use ContentProxy to grab content for each article from Pocket. Error from Pocket are now logged using the logger. The ImportInterface need to be simple and not related to oAuth (not all import will use that method).
* First test on PocketImportJeremy Benoist2016-01-021-0/+117
Giving ability to define the Client add abitliy to easliy test the import.