59 lines
2.3 KiB
Python
59 lines
2.3 KiB
Python
# -*- 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 imagehosts
|
|
from gallery_dl import exception
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://www.imagevenue.com/ME13LS07",
|
|
"#category": ("imagehost", "imagevenue", "image"),
|
|
"#class" : imagehosts.ImagevenueImageExtractor,
|
|
"#results" : "https://cdn-images.imagevenue.com/10/ac/05/ME13LS07_o.png",
|
|
"#sha1_metadata": "ae15d6e3b2095f019eee84cd896700cd34b09c36",
|
|
"#sha1_content" : "cfaa8def53ed1a575e0c665c9d6d8cf2aac7a0ee",
|
|
|
|
"extension": "png",
|
|
"filename" : "test-テスト-\"&>",
|
|
"token" : "ME13LS07",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.imagevenue.com/view/o?i=92518_13732377annakarina424200712535AM_122_486lo.jpg&h=img150&l=loc486",
|
|
"#category": ("imagehost", "imagevenue", "image"),
|
|
"#class" : imagehosts.ImagevenueImageExtractor,
|
|
"#results" : "https://cdno-data.imagevenue.com/html.img150/upload2328/loc486/92518_13732377annakarina424200712535AM_122_486lo.jpg",
|
|
"#sha1_url": "8bf0254e29250d8f5026c0105bbdda3ee3d84980",
|
|
},
|
|
|
|
{
|
|
"#url" : "http://img28116.imagevenue.com/img.php?image=th_52709_test_122_64lo.jpg",
|
|
"#category": ("imagehost", "imagevenue", "image"),
|
|
"#class" : imagehosts.ImagevenueImageExtractor,
|
|
"#results" : "https://cdno-data.imagevenue.com/html.img8116/upload2328/loc64/th_52709_test_122_64lo.jpg",
|
|
"#sha1_url": "f98e3091df7f48a05fb60fbd86f789fc5ec56331",
|
|
},
|
|
|
|
{
|
|
"#url" : "http://img159.imagevenue.com/img.php?image=73874_203_123_83lo.jpg",
|
|
"#comment" : "404 image (#7570)",
|
|
"#category": ("imagehost", "imagevenue", "image"),
|
|
"#class" : imagehosts.ImagevenueImageExtractor,
|
|
"#results" : "https://cdno-data.imagevenue.com/html.img159/upload2328/loc83/73874_203_123_83lo.jpg",
|
|
"#sha1_content": "da39a3ee5e6b4b0d3255bfef95601890afd80709",
|
|
},
|
|
|
|
{
|
|
"#url" : "http://img42.imagevenue.com/img.php?loc=loc1003%E2%84%91=20377_Alessandra_Ambrosio_Celebrity_City_Arriving_Mokai_Nightclub_17_13_1003lo.jpg",
|
|
"#comment" : "dead link / '404 Image Unavailable' redirect (#8477)",
|
|
"#category": ("imagehost", "imagevenue", "image"),
|
|
"#class" : imagehosts.ImagevenueImageExtractor,
|
|
"#exception": exception.NotFoundError,
|
|
},
|
|
|
|
)
|