aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle
Commit message (Collapse)AuthorAgeFilesLines
* add a few testsThomas Citharel2017-07-091-0/+3
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Rebase & Rename all rss to feedsThomas Citharel2017-07-094-47/+52
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Changed RSS to Atom feed and improve pagingThomas Citharel2017-07-092-36/+60
|
* CSJeremy Benoist2017-07-031-5/+5
|
* Fix validateAndSetPreviewPictureJeremy Benoist2017-07-031-0/+35
| | | | Which wasn't covered by a test!
* Fix PATCH methodJeremy Benoist2017-07-031-5/+2
| | | | | The PATCH method for the entry should only update what user sent to us and not the whole entry as it was before. Also, sending tags when patching an entry will now remove all current tags & assocatied new ones.
* Fix testsJeremy Benoist2017-07-035-23/+18
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-0126-453/+453
|
* Fix testsJeremy Benoist2017-06-211-1/+1
|
* Add RSS tags feedsJeremy Benoist2017-06-211-8/+33
|
* Merge pull request #2683 from wallabag/credentials-in-dbJérémy Benoist2017-06-204-8/+283
|\ | | | | Store credentials in DB
| * Fix reviewsThomas Citharel2017-06-202-2/+1
| | | | | | | | | | | | | | | | Encrypt username too Redirect to list after saving credentials Fix typos Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * Crypt site credential passwordJeremy Benoist2017-06-203-3/+42
| |
| * Add a live test for restricted articleJeremy Benoist2017-06-203-25/+78
| | | | | | | | | | | | | | It is not aimed to test if we can get the full article (since we aren't using real login/password) but mostly to test the full work (with authentication, etc.) Do not clean fixtured to avoid SQLite to re-use id for entry tag relation 😓
| * Add menu access to site credentials CRUDJeremy Benoist2017-06-202-3/+187
| |
* | Fix empty language and preview picsThomas Citharel2017-06-121-3/+3
| |
* | Add isPublic filter on entriesJeremy Benoist2017-06-101-0/+14
|/
* Merge pull request #3173 from wallabag/domain-name-paramJérémy Benoist2017-06-101-1/+1
|\ | | | | remove craueconfig domain name setting and add a proper one in parame…
| * Promote httpsJeremy Benoist2017-06-091-1/+1
| |
| * ReviewJeremy Benoist2017-06-081-1/+1
| |
* | Cleanup testJeremy Benoist2017-06-091-1/+0
| | | | | | | | | | Looks like we didn't ALWAYS get a value for language from 20minutes. Ahem.
* | Convert - to _ in languageJeremy Benoist2017-06-091-4/+8
| | | | | | | | Mostly to increase language supports
* | Use Locale instead of LanguageJeremy Benoist2017-06-091-14/+78
| |
* | Validate language & preview picture fieldsJeremy Benoist2017-06-081-12/+117
| | | | | | | | | | Instead of saving the value of each field right into the content without any validation, it seems better to validate them. This might sounds obvious now we say that.
* | CSJeremy Benoist2017-06-071-2/+0
| |
* | Merge pull request #3184 from wallabag/better-way-image-extensionJérémy Benoist2017-06-072-0/+25
|\ \ | | | | | | Use an alternative way to detect images
| * | Use an alternative way to detect imageJeremy Benoist2017-06-052-0/+25
| |/ | | | | | | | | | | | | When parsing content to retrieve images to save locally, we only check for the content-type of the image response. In some case, that value is empty. Now we’re also checking for the first few bytes of the content as an alternative to detect if it’s an image wallabag can handle. We might get higher image supports using that alternative method.
* | Fix reviewThomas Citharel2017-06-041-1/+1
| | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | Add show user commandThomas Citharel2017-06-021-0/+95
|/ | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Merge pull request #2708 from jcharaoui/import-disablecontentupdateJérémy Benoist2017-06-022-32/+44
|\ | | | | Import disableContentUpdate
| * Rewrote code & fix testsJeremy Benoist2017-06-012-20/+19
| |
| * Fix testsJeremy Benoist2017-06-011-2/+8
| |
| * Add disableContentUpdate import optionJerome Charaoui2017-06-011-5/+4
| | | | | | | | | | | | This commit also decouples the "import" and "update" functions inside ContentProxy. If a content array is available, it must be passed to the new importEntry method.
| * Avoid returning objects passed by reference.Jerome Charaoui2017-06-011-11/+19
| | | | | | | | | | | | Objects are always passed by reference, so it doesn't make sense to return an object which is passed by reference as it will always be the same object. This change makes the code a bit more readable.
* | Replace images with &Jeremy Benoist2017-06-011-3/+21
|/ | | | | | Images with `&` in the path weren’t well replaced because they might be with `&amp;` in the html instead. Replacing `&` with `&amp;` fix the problem.
* Merge pull request #3137 from aaa2000/isolated-testsJérémy Benoist2017-06-017-219/+357
|\ | | | | Isolated tests
| * Isolated testsadev2017-05-317-219/+357
| | | | | | | | Use https://github.com/dmaicher/doctrine-test-bundle to have test isolation.
* | Fix tests following rebaseJeremy Benoist2017-05-311-2/+2
| |
* | CSJeremy Benoist2017-05-311-3/+3
| |
* | Forced date can now be a timestamp tooJeremy Benoist2017-05-311-0/+81
| | | | | | | | Add adding more tests for forced content
* | Remove htmlawed and use graby insteadJeremy Benoist2017-05-311-13/+13
| | | | | | | | | | Instead of using htmlawed (which is already used in graby) use graby directly (which require some refacto on graby side). Still needs some tests.
* | Use graby ContentExtractor to clean htmlJeremy Benoist2017-05-311-0/+55
|/ | | | It might be better to re-use some graby functionalities to clean html instead of building a new system.
* Merge pull request #3168 from wallabag/instapaper-tags-importNicolas Lœuillet2017-05-314-4/+3
|\ | | | | Add support for tag in Instapaper import
| * CS & improve tags assertionsJeremy Benoist2017-05-314-4/+3
| |
* | Merge pull request #3138 from Kdecherf/2835-tagsNicolas Lœuillet2017-05-312-0/+28
|\ \ | | | | | | Ignore ActionMarkAsRead when removing tag from entry
| * | Ensure retrieved data are freshJeremy Benoist2017-05-311-0/+6
| | |
| * | TagController: ignore ActionMarkAsRead when removing tag from entryKevin Decherf2017-05-312-0/+22
| |/ | | | | | | | | | | Fixes #2835 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* / Use a better way to set input for commandJeremy Benoist2017-05-301-76/+30
|/ | | | | | Actually use the correct to way handle that http://symfony.com/doc/current/components/console/helpers/questionhelper.html#testing-a-command-that-expects-input
* Merge remote-tracking branch 'origin/master' into 2.3Jeremy Benoist2017-05-301-1/+1
|\
| * Fix documentation URL for "How can I help to fix that?"Damien Cassou2017-05-241-1/+1
| |