You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gallery-dl/test/results/hotleak.py

105 lines
2.8 KiB

# -*- coding: utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
from gallery_dl.extractor import hotleak
from gallery_dl import exception
__tests__ = (
{
"#url" : "https://hotleak.vip/kaiyakawaii/photo/1617145",
"#category": ("", "hotleak", "post"),
"#class" : hotleak.HotleakPostExtractor,
"#pattern" : r"https://hotleak\.vip/storage/images/3625/1617145/fefdd5988dfcf6b98cc9e11616018868\.jpg",
"id" : 1617145,
"creator" : "kaiyakawaii",
"type" : "photo",
"filename" : "fefdd5988dfcf6b98cc9e11616018868",
"extension": "jpg",
},
{
"#url" : "https://hotleak.vip/lilmochidoll/video/1625538",
"#category": ("", "hotleak", "post"),
"#class" : hotleak.HotleakPostExtractor,
"#pattern" : r"ytdl:https://cdn8-leak\.camhdxx\.com/1661/1625538/index\.m3u8",
"id" : 1625538,
"creator" : "lilmochidoll",
"type" : "video",
"filename" : "index",
"extension": "mp4",
},
{
"#url" : "https://hotleak.vip/kaiyakawaii",
"#category": ("", "hotleak", "creator"),
"#class" : hotleak.HotleakCreatorExtractor,
"#range" : "1-200",
"#count" : 200,
},
{
"#url" : "https://hotleak.vip/stellaviolet",
"#category": ("", "hotleak", "creator"),
"#class" : hotleak.HotleakCreatorExtractor,
"#count" : "> 600",
},
{
"#url" : "https://hotleak.vip/doesnotexist",
"#category": ("", "hotleak", "creator"),
"#class" : hotleak.HotleakCreatorExtractor,
"#exception": exception.NotFoundError,
},
{
"#url" : "https://hotleak.vip/photos",
"#category": ("", "hotleak", "category"),
"#class" : hotleak.HotleakCategoryExtractor,
"#pattern" : hotleak.HotleakPostExtractor.pattern,
"#range" : "1-50",
"#count" : 50,
},
{
"#url" : "https://hotleak.vip/videos",
"#category": ("", "hotleak", "category"),
"#class" : hotleak.HotleakCategoryExtractor,
},
{
"#url" : "https://hotleak.vip/creators",
"#category": ("", "hotleak", "category"),
"#class" : hotleak.HotleakCategoryExtractor,
"#pattern" : hotleak.HotleakCreatorExtractor.pattern,
"#range" : "1-50",
"#count" : 50,
},
{
"#url" : "https://hotleak.vip/hot",
"#category": ("", "hotleak", "category"),
"#class" : hotleak.HotleakCategoryExtractor,
},
{
"#url" : "https://hotleak.vip/search?search=gallery-dl",
"#category": ("", "hotleak", "search"),
"#class" : hotleak.HotleakSearchExtractor,
"#count" : 0,
},
{
"#url" : "https://hotleak.vip/search?search=hannah",
"#category": ("", "hotleak", "search"),
"#class" : hotleak.HotleakSearchExtractor,
"#count" : "> 30",
},
)