-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathtest_youtube_search.py
63 lines (47 loc) · 1.92 KB
/
test_youtube_search.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import random
import unittest
import os
import pprint
from serpapi import YoutubeSearch
class TestYoutubeSearchApi(unittest.TestCase):
def setUp(self):
YoutubeSearch.SERP_API_KEY = os.getenv("API_KEY", "demo")
@unittest.skipIf((os.getenv("API_KEY") == None), "no api_key provided")
def test_get_json(self):
search = YoutubeSearch({"search_query": "chair"})
data = search.get_dict()
self.assertIsNone(data.get("error"))
self.assertEqual(data["search_metadata"]["status"], "Success")
self.assertIsNotNone(data["search_metadata"]["youtube_url"])
self.assertIsNotNone(data["search_metadata"]["id"])
@unittest.skipIf((os.getenv("API_KEY") == None), "no api_key provided")
def test_get_object(self):
search = YoutubeSearch({"search_query": "chair"})
data = search.get_object()
self.assertEqual(data.search_metadata.status, "Success")
self.assertIsNotNone(data.search_metadata.id)
self.assertIsNotNone(data.search_metadata.youtube_url)
self.assertEqual(data.search_parameters.search_query, "chair")
self.assertEqual(data.search_parameters.engine, "youtube")
self.assertGreater(data.search_information.total_results, 10)
@unittest.skipIf((os.getenv("API_KEY") == None), "no api_key provided")
def test_paginate(self):
search = YoutubeSearch({"search_query": "chair"})
limit = 3
pages = search.pagination(limit=limit)
titles = []
page_count = 0
count = 0
for page in pages:
page_count += 1
for video_result in page.get("video_results", []):
count += 1
title_index = 0
for title in titles:
title_index += 1
if title == video_result.get("title"):
print("%d duplicated title: %s at index: %d" % (count, title, title_index))
titles.append(video_result.get("title"))
self.assertEqual(page_count, limit, "Number of pages doesn't match.")
if __name__ == "__main__":
unittest.main()