aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2013-12-09Set 'NA' as the default value for missing fields in the output template ↵Jaime Marquínez Ferrándiz
(fixes #1931) Remove the `except KeyError` clause, it won't get raised anymore
2013-12-09[soundcloud] Do not match sets (Fixes #1930)Philipp Hagemeister
2013-12-09Lower number of expected entries in top listPhilipp Hagemeister
2013-12-09Merge remote-tracking branch 'jaimeMF/yt-toplists'Philipp Hagemeister
2013-12-06[vimeo] Add an extractor for groupsJaime Marquínez Ferrándiz
2013-12-06[vimeo] Add an extractor for albums (closes #1911)Jaime Marquínez Ferrándiz
2013-12-06[dailymotion] Extract view count (#1895)Jaime Marquínez Ferrándiz
2013-12-04Update description value for the write_info_json test (required after ↵Jaime Marquínez Ferrándiz
27dcce19045670fc348ff1119c0d2283aaed3ae2)
2013-12-02Merge branch 'smotri.com' of https://github.com/dstftw/youtube-dlPhilipp Hagemeister
2013-12-02Added extractors for smotri.comdst
2013-12-02Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister
2013-12-01[vimeo] Add an extractor for users (closes #1871)Jaime Marquínez Ferrándiz
2013-12-01Make socket timeout configurable, and bump default to 10 minutes (#1862)Philipp Hagemeister
2013-11-30[youtube] Add support for downloading top lists (fixes #1868)Jaime Marquínez Ferrándiz
It needs to know the channel and the title of the list, because the ids change every time you browse the channels and are attached to a 'VISITOR_INFO1_LIVE' cookie.
2013-11-28[youtube/subtitles] Change MD5 of vtt subtitle in testPhilipp Hagemeister
2013-11-26[youtube:playlist] Add support for YouTube mixes (fixes #1839)Jaime Marquínez Ferrándiz
2013-11-25[tests] Remove global_setup functionPhilipp Hagemeister
2013-11-24Update the keywords tests for the rename of the old ComedyCentralIEJaime Marquínez Ferrándiz
2013-11-24[youtube] Add an extractor for downloading the watch history (closes #1821)Jaime Marquínez Ferrándiz
2013-11-22Merge branch 'master' of github.com:rg3/youtube-dlPhilipp Hagemeister
2013-11-22Match --download-archive during playlist processing (Fixes #1745)Philipp Hagemeister
2013-11-22[bambuser:channel] Update testJaime Marquínez Ferrándiz
2013-11-22Merge remote-tracking branch 'jaimeMF/yt-playlists'Philipp Hagemeister
2013-11-22[bandcamp] add support for albums (reported in #1270)Jaime Marquínez Ferrándiz
2013-11-21utils.shell_quote: Convert the args to unicode stringsJaime Marquínez Ferrándiz
The youtube test video failed with `UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 34: ordinal not in range(128)`, the problem was with the filenames being encoded.
2013-11-20Adapt age restriction tests to new .info.json filenamesPhilipp Hagemeister
2013-11-20Adapt test to changed .info.json namePhilipp Hagemeister
2013-11-13Update test_write_info_json.pyJanez Troha
2013-11-13[youtube:playlist] Don't use the gdata api (closes #1508)Jaime Marquínez Ferrándiz
Parse the playlist pages instead
2013-11-10Merge all the subtitles test into a single fileJaime Marquínez Ferrándiz
They reuse a base class
2013-11-10[ted] Return a single info_dict for talks urlsJaime Marquínez Ferrándiz
It failed with the --list-subs option
2013-11-10Merge pull request #1705 from iemejia/masterJaime Marquínez Ferrándiz
[ted] support for subtitles
2013-11-09[soundcloud] Allow to download tracks marked as not 'streamable'Jaime Marquínez Ferrándiz
They use the rtmp protocol but if the are marked as 'downloadable' it can use the direct download link.
2013-11-06tests: don't run the test if any of the extractors listed in the 'add_ie' ↵Jaime Marquínez Ferrándiz
field is marked as not working
2013-11-05[ted] fixed error in case of no subtitles presentIsmaël Mejía
I created a test, but I leave it commented since TED videos get new subtitles frequently.
2013-11-03Set the 'extractor_key' field in the info_dictJaime Marquínez Ferrándiz
It's the string returned by the class method 'ie_key', which allows to retrieve the extractor with 'get_info_extractor'
2013-11-03Add the 'webpage_url' field to info_dictJaime Marquínez Ferrándiz
The url for the video page, it must allow to reproduce the result. It's automatically set by YoutubeDL if it's missing.
2013-11-03Set the extra_info inside YoutubeDL.process_ie_result and set only if the ↵Jaime Marquínez Ferrándiz
keys are missing
2013-11-02Merge remote-tracking branch 'iemejia/master'Ismaël Mejía
2013-11-02[bambuser] Add an extractor for channels (closes #1702)Jaime Marquínez Ferrándiz
2013-11-02Merge branch 'ted_subtitles'Ismaël Mejía
2013-11-02[ted] Added support for subtitle downloadIsmaël Mejía
2013-10-31Fix the test for dailymotion subtitlesJaime Marquínez Ferrándiz
The extractor returns a single info_dict now.
2013-10-28[tests] a HTTP 503 is a transient issueFilippo Valsorda
2013-10-28Fix YouTubeDL testPhilipp Hagemeister
2013-10-28[tests] don't fail on network errorsFilippo Valsorda
This is suboptimal, but at least this way we will need to look at the logs only to check for network errors that happen too often, instead of parsing a ton of lines each time to see if there is some true test failing
2013-10-28tests: build the filename from the info_dict if the 'file' key is missingJaime Marquínez Ferrándiz
It will need to have the 'id' and 'ext' keys to work.
2013-10-21Allow to use the extension for the format selectionJaime Marquínez Ferrándiz
The best format with the extension is downloaded.
2013-10-21Accept requested formats to be in the format 35/best (closes #1552)Jaime Marquínez Ferrándiz
The format selection code is now an independent function.
2013-10-18Extend #980 with --max-quality supportPhilipp Hagemeister