aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/feed
Commit message (Collapse)AuthorAgeFilesLines
* New plugin hook: ability to add custom filters to Shaarli search engineArthurHoaro2021-02-041-1/+9
| | | | | | | A new plugin hook has been added: hook_test_filter_search_entry This hook allows to filter out bookmark with custom plugin code when a search is performed. Related to #143
* Daily RSS Cache: invalidate cache base on the dateArthurHoaro2020-12-171-9/+48
| | | | | | Currently the cache is only invalidated when the datastore changes, while it should rely on selected period of time. Fixes #1659
* Add mutex on datastore I/O operationsArthurHoaro2020-10-131-1/+3
| | | | | | To make sure that there is no concurrent operation on the datastore file. Fixes #1132
* Compatibility with PHPUnit 9ArthurHoaro2020-09-292-10/+10
|
* Comply with PHPUnit V8: setup/teardown functions must return voidArthurHoaro2020-09-261-2/+2
|
* Fix subfolder configuration in unit testsArthurHoaro2020-09-121-6/+7
|
* Fixed: Pinned bookmarks are displayed first in ATOM/RSS feedsArthurHoaro2020-08-291-6/+6
| | | | Fixes #1485
* Fix basePath in unit tests reference DBArthurHoaro2020-07-281-9/+9
|
* Use multi-level routes for existing controllers instead of 1 level everywhereArthurHoaro2020-07-231-3/+3
| | | | Also prefix most admin routes with /admin/
* RSS/ATOM feeds: process through Slim controllerArthurHoaro2020-07-231-3/+3
|
* Make FeedBuilder instance creation independant of the request stackArthurHoaro2020-07-231-48/+15
|
* Slim router: handle add tag routeArthurHoaro2020-07-231-1/+1
|
* Migrate cache purge function to a proper classArthurHoaro2020-07-231-92/+0
| | | | | | And update dependencies and tests. Note that SESSION['tags'] has been removed a log ago
* Fix an issue with private tags and fix nomarkdown tagArthurHoaro2020-01-181-1/+1
| | | | | | | | The new bookmark service wasn't handling private tags properly. nomarkdown tag is now shown only for logged in user in bookmarks, and hidden for everyone in tag clouds/lists. Fixes #726
* Add and update unit test for the new system (Bookmark + Service)ArthurHoaro2020-01-181-20/+83
| | | | See #1307
* Run Unit Tests against PHP 7.4ArthurHoaro2020-01-171-0/+1
| | | | | | | | Bump PHPUnit version and fix unit test - Globals are handled differently and are persistent through tests - Tests without assertions are marked as risky: some of them are just meant to check that no error is raised.
* Optimize and cleanup importsVirtualTam2019-01-131-1/+1
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* namespacing: \Shaarli\Bookmark\LinkDBVirtualTam2019-01-121-3/+1
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* namespacing: \Shaarli\Feed\{Cache,CachedPage,FeedBuilder}VirtualTam2019-01-123-0/+462
Signed-off-by: VirtualTam <virtualtam@flibidi.net>