Dag
f00f90328d
refactor: extract class PepperBridgeAbstract
2022-05-13 09:29:56 +02:00
Yaman Qalieh
bb6d553dd5
Revert "refactor: remove unnecesary includes" ( #2723 )
...
This reverts commit fd449be4eb
.
2022-05-12 16:28:03 -04:00
Dag
fd449be4eb
refactor: remove unnecesary includes
2022-05-12 15:15:09 +02:00
Yaman Qalieh
158ee41be4
[AtomFormat] Remove redundant fallback content ( #2702 )
2022-05-08 04:21:32 +02:00
Dag
0c7a7f320f
refactor: BridgeFactory ( #2691 )
2022-05-08 03:58:42 +02:00
Dag
641e2eedf5
test: exclude Pixiv for a particular test
2022-05-08 03:55:24 +02:00
Dag
0ef298f9cc
refactor: add php autoloader ( #2655 )
2022-04-26 00:57:59 +02:00
Dag
d62b977394
refactor: ./tests ( #2649 )
...
* refactor: ./tests
* test: consolidate testsuites
* refactor: move config setup into rssbridge.php
Makes it easier to unit test.
* lint
2022-04-13 21:04:10 +02:00
Eugene Molotov
071fdef599
[core] Drop php 5.6 and php 7.0 support ( #2224 )
2021-12-03 04:12:16 +05:00
Joseph
4529e3699a
[BridgeImplementationTest] Allow multiple contexts to have an empty parameters array ( #1954 )
2021-08-10 22:37:41 +05:00
Eugene Molotov
c580219627
[BridgeImplementationTest] Implement feature for testing detectParameters method
2021-06-05 09:34:16 +05:00
Sandro
8047041963
[Core] Include Media RSS namespace for Atom feeds
...
Include Media RSS namespace for Atom feeds
Fix #1511
Fix #1499
2020-05-19 10:00:12 +02:00
logmanoriginal
14e6dbb645
[ListActionTest] Fix broken test
2019-06-18 19:21:28 +02:00
logmanoriginal
fc8421ed50
format: Refactor format factory to non-static class
...
The format factory can be based on the abstract factory class if it
wasn't static. This allows for higher abstraction and makes future
extensions possible. Also, not all parts of RSS-Bridge need to work
on the same instance of the factory.
References #1001
2019-06-18 19:15:20 +02:00
fulmeek
dc1b1b13cc
[SQLiteCache] Implement cache based on SQLite 3 ( #1035 )
2019-02-24 12:04:27 +01:00
LogMANOriginal
51ee541d5a
core: Implement action factory ( #1002 )
2019-02-06 18:34:51 +01:00
fulmeek
80f6a8b3d4
[MrssFormat] Rework to make it valid RSS 2.0 + Media RSS ( #996 )
2019-02-06 17:18:33 +01:00
fulmeek
11a39af35c
[FormatImplementationTest] Add unit tests for format implementations ( #1008 )
2019-02-04 14:59:09 +01:00
fulmeek
f65a4076ba
[CacheImplementationTest] Add unit tests for cache implementations ( #1007 )
2019-02-04 14:58:11 +01:00
LogMANOriginal
394149b114
core: Add item uid ( #1017 )
...
'uid' represents the unique id for a feed item. This item is null by
default and can be set to any string value. The provided string value
is always hashed to sha1 to make it the same length in all cases.
References #977 , #1005
2019-02-03 20:56:41 +01:00
logmanoriginal
d532d0e0c4
[BridgeImplementationTest] Add test for "required" attribute on lists and checkboxes
...
Lists and checkboxes don't support the "required" flag and should not
define it. Note that the "required" flag can be set to false if so
desired.
2019-01-22 18:22:49 +01:00
fulmeek
ab2e566ee1
[AtomFormat] Update to comply with RFC 4287 ( #995 )
...
https://tools.ietf.org/html/rfc4287
2019-01-21 17:22:30 +01:00
fulmeek
600f2290b6
[BridgeImplementationTest] Refactor unit test to check bridges ( #980 )
2019-01-08 20:02:51 +01:00
fulmeek
8801ac9e64
format: Refactor JsonFormat to JSON Feed version 1 ( #988 )
...
JsonFormat now implements https://jsonfeed.org/version/1
Closes #618
2019-01-05 13:20:11 +01:00
logmanoriginal
e7d3a006c8
global: Fix code violations
2018-12-26 21:58:07 +01:00
logmanoriginal
88b0656954
bridge: Rename listBridge to getBridgeNames
2018-11-15 19:43:23 +01:00
logmanoriginal
2104fc4d58
core: Move initialization for static paths to rssbridge.php
...
Bridge, Format and Cache are all part of the core logic of RSS-Bridge
and should therefore be initialized centrally
2018-11-10 19:42:54 +01:00
logmanoriginal
697d63bb96
core: Rename RssBridge.php to rssbridge.php
...
Using lower case letters because the file doesn't implement a class.
2018-11-10 19:01:57 +01:00
logmanoriginal
9910310652
[BridgeImplementationTest] Use PATH_LIB_BRIDGES
2018-11-06 18:46:18 +01:00
logmanoriginal
a20d5f9af0
tests: reuse RssBridge.php instead of implementing a custom solution
2018-08-10 15:33:32 +02:00
logmanoriginal
6bceb2b2db
[tests] Add unit test for bridge implementation
...
Adds unit test for bridge implementations:
- Custom functions must be in protected or private scope
- getName() must return a valid string (non-empty)
- getURI() must return a valid URI
- Each bridge must define constants for NAME, URI, DESCRIPTION and
MAINTAINER. CACHE_TIMEOUT and PARAMETERS are optional.
The unit test is written for PHPUnit 6.x and will automatically be
tested by Travis-CI for PHP 7.0 (see .travis.yml).
Remarks:
Unit tests for bridge data were scrapped in #378 for complexity
reasons (tests would have to be maintained for each bridge). This
unit test, however, is written for testing all bridges without
taking specific implementation details into account.
2018-08-09 17:04:16 +02:00