[imgbb] fix & update (#7936)

This commit is contained in:
Mike Fährmann
2025-09-13 23:03:55 +02:00
parent b5fac68ea6
commit dbe5891d76
2 changed files with 174 additions and 164 deletions

View File

@@ -16,31 +16,39 @@ __tests__ = (
"#patten" : r"https://i\.ibb\.co/\w{7}/[\w-]+\.jpg",
"#count" : 91,
"#sha1_url" : "efe7e5a76531436e3b82c87e4ebd34c4dfeb484c",
"#sha1_metadata": "f1ab5492adb6333409f3367566a6dd7110537e21",
"album_id" : "i5PggF",
"album_name" : "British Scrap Book",
"extension" : "jpg",
"id" : r"re:^\w{7}$",
"title" : str,
"url" : r"re:https://i\.ibb\.co/\w{7}/[\w-]+\.jpg",
"user" : "folkie",
"user_id" : "GvFMGK",
"displayname": "Folkie",
"width" : range(501, 1034),
"height" : range(335, 768),
"size" : range(74758, 439037),
"extension": "jpg",
"filename" : str,
"id" : r"re:^\w{7}$",
"title" : str,
"url" : r"re:https://i\.ibb\.co/\w{7}/[\w-]+\.jpg",
"width" : range(501, 1034),
"height" : range(335, 768),
"size" : range(74758, 439037),
"mime" : "image/jpeg",
"album" : {
"count" : 91,
"description": "Brief description of this album",
"id" : "cgJrwc",
"title" : "British Scrap Book",
"url" : "https://ibb.co/album/cgJrwc",
},
"user" : {
"id" : "GvFMGK",
"name" : "Folkie",
"url" : "https://folkie.imgbb.com/",
"url_albums": "https://folkie.imgbb.com/albums",
"username" : "folkie",
},
},
{
"#url" : "https://ibb.co/album/i5PggF?sort=title_asc",
"#url" : "https://ibb.co/album/cgJrwc?sort=name_asc",
"#comment" : "'sort' query argument",
"#category": ("", "imgbb", "album"),
"#class" : imgbb.ImgbbAlbumExtractor,
"#patten" : r"https://i\.ibb\.co/\w{7}/[\w-]+\.jpg",
"#count" : 91,
"#sha1_url" : "cde36552cc132a27178f22a1b9aceaa4df7e1575",
"#sha1_metadata": "b98bbb7671e31ebf9c7585fb9fc691b71bcdb546",
"#patten" : r"https://i\.ibb\.co/\w{7}/[\w-]+\.jpg",
"#count" : 91,
"#sha1_url": "a1bf67f74a6644b360a989a887ff413fd4eab2a6",
},
{
@@ -57,7 +65,7 @@ __tests__ = (
{
"#url" : "https://ibb.co/album/hqgWrF",
"#comment" : "private",
"#comment" : "private / That page doesn't exist",
"#category": ("", "imgbb", "album"),
"#class" : imgbb.ImgbbAlbumExtractor,
"#exception": exception.HttpError,
@@ -65,28 +73,46 @@ __tests__ = (
{
"#url" : "https://folkie.imgbb.com",
"#category": ("", "imgbb", "user"),
"#class" : imgbb.ImgbbUserExtractor,
"#auth" : True,
"#patten" : r"https://i\.ibb\.co/\w{7}/[\w-]+\.jpg",
"#range" : "1-80",
},
{
"#url" : "https://folkie.imgbb.com",
"#class" : imgbb.ImgbbUserExtractor,
"#auth" : False,
"#exception": exception.AuthRequired,
},
{
"#url" : "https://ibb.co/fUqh5b",
"#category": ("", "imgbb", "image"),
"#class" : imgbb.ImgbbImageExtractor,
"#pattern" : r"https://i\.ibb\.co/g3kvx80/Arundel-Ireeman-5\.jpg",
"#auth" : False,
"#results" : "https://i.ibb.co/g3kvx80/Arundel-Ireeman-5.jpg",
"#sha1_content": "c5a0965178a8b357acd8aa39660092918c63795e",
"id" : "fUqh5b",
"title" : "Arundel Ireeman 5",
"url" : "https://i.ibb.co/g3kvx80/Arundel-Ireeman-5.jpg",
"width" : 960,
"height" : 719,
"user" : "folkie",
"user_id" : "GvFMGK",
"displayname": "Folkie",
"extension" : "jpg",
"id" : "qdT0v8H",
"title" : "Arundel Ireeman 5",
"url" : "https://i.ibb.co/g3kvx80/Arundel-Ireeman-5.jpg",
"width" : 960,
"height" : 719,
"filename" : "Arundel-Ireeman-5",
"extension": "jpg",
"date" : "dt:2017-09-29 13:50:25",
"album" : {
"id" : "cgJrwc",
"title": "British Scrap Book",
},
"user" : {
"id" : "GvFMGK",
"name" : "Folkie",
"url" : "https://folkie.imgbb.com/",
"url_albums": "https://folkie.imgbb.com/albums",
"username" : "folkie",
},
},
)