maubot-tmdb/test_tmdb.py

218 lines
7.5 KiB
Python
Raw Normal View History

2020-06-22 20:21:22 +01:00
#!/usr/bin/env python3
import unittest
2021-03-16 20:45:27 +00:00
from html import escape
2021-03-16 16:56:02 +00:00
from tmdb.tmdb_api import Movie, TvShow, MoviePopular
2021-09-23 21:22:35 +01:00
from tmdb.tmdb import TmdbBot
2020-06-23 16:34:34 +01:00
from tmdb.database import Database
from sqlalchemy import create_engine
2021-09-23 21:22:35 +01:00
import aiohttp
2020-06-23 16:34:34 +01:00
2021-03-16 20:45:27 +00:00
2021-09-23 21:22:35 +01:00
async def apiRequests(command):
2021-03-16 16:56:02 +00:00
api_key = '51d75c00dc1502dc894b7773ec3e7a15'
base_url = "https://api.themoviedb.org/3/"
url = base_url + command.lstrip('/')
2021-03-16 20:45:27 +00:00
params = {'api_key': api_key}
2021-03-16 16:56:02 +00:00
params.update({'language': 'en'})
2021-09-23 21:22:35 +01:00
async with aiohttp.ClientSession() as client:
async with client.get(url, params=params) as resp:
return await resp.json()
2021-03-16 16:56:02 +00:00
2020-06-22 20:21:22 +01:00
class TestTmdbMethods(unittest.IsolatedAsyncioTestCase):
# TMDB API
async def test_search_item(self):
2020-06-22 20:21:22 +01:00
movie = Movie()
await movie.load_parameters()
id = await movie.search_title('Breakfast Club')
2020-06-22 20:21:22 +01:00
self.assertEqual(id, 2108)
2021-08-20 09:07:57 +01:00
self.assertEqual(movie.valid, True)
await movie.close_session()
2020-06-22 20:21:22 +01:00
2021-11-10 14:38:28 +00:00
async def test_vote(self):
movie = Movie()
await movie.load_parameters()
await movie.search_title('Dune')
vote = movie.vote_average
2022-11-14 15:01:50 +00:00
self.assertEqual(vote, 7.845)
2021-11-10 14:38:28 +00:00
await movie.close_session()
async def test_cast(self):
2020-06-22 20:21:22 +01:00
movie = Movie()
await movie.load_parameters()
await movie.search_title('Breakfast Club')
self.assertEqual('Emilio Estevez', movie.cast[0])
await movie.close_session()
async def test_title(self):
2020-06-22 20:21:22 +01:00
movie = Movie()
await movie.load_parameters()
await movie.search_title('Breakfast Club')
2020-06-22 20:21:22 +01:00
self.assertEqual('The Breakfast Club', movie.title)
await movie.close_session()
async def test_overview(self):
2020-06-22 20:21:22 +01:00
movie = Movie()
await movie.load_parameters()
await movie.search_title('Breakfast Club')
description = 'Five high school students from different walks of'
2020-06-22 20:21:22 +01:00
self.assertEqual(description, movie.overview[:len(description)])
await movie.close_session()
async def test_change_language(self):
2020-06-22 20:21:22 +01:00
movie = Movie()
await movie.load_parameters()
2020-06-22 20:21:22 +01:00
movie.set_language('en')
await movie.search_title('Breakfast Club')
2020-06-22 20:21:22 +01:00
description = 'Five high school students from different walks of life endure a Saturday detention'
self.assertEqual(description, movie.overview[:len(description)])
await movie.close_session()
2020-06-23 16:34:34 +01:00
def test_database_language(self):
engine = create_engine('sqlite:///test.db', echo=True)
2020-06-23 16:34:34 +01:00
db = Database(engine)
db.set_language('@testuser:example.com', 'de')
self.assertEqual(str(db.get_language('@testuser:example.com')), 'de')
db.set_language('@testuser:example.com', 'en')
self.assertEqual(str(db.get_language('@testuser:example.com')), 'en')
async def test_id_lookup(self):
2020-06-24 09:45:18 +01:00
movie = Movie()
await movie.load_parameters()
await movie.query_details('2108')
2020-06-24 09:45:18 +01:00
self.assertEqual('The Breakfast Club', movie.title)
await movie.close_session()
2020-06-24 09:45:18 +01:00
async def test_search_fails(self):
2020-06-24 09:45:18 +01:00
movie = Movie()
await movie.load_parameters()
id = await movie.search_title('Breakfast Club 2019')
2020-06-24 09:45:18 +01:00
self.assertEqual(id, None)
self.assertEqual(None, movie.title)
2021-08-20 09:07:57 +01:00
self.assertEqual(movie.valid, False)
await movie.close_session()
2020-06-26 15:41:44 +01:00
async def test_search_year(self):
2020-06-26 15:41:44 +01:00
movie = Movie()
await movie.load_parameters()
id = await movie.search_title('Dune')
2020-06-26 15:41:44 +01:00
self.assertEqual(id, 438631)
id = await movie.search_title('Dune', 1984)
self.assertEqual(id, 841)
await movie.close_session()
2020-06-26 15:41:44 +01:00
def test_split_year(self):
2021-08-20 09:31:47 +01:00
tmdb = TmdbBot("", "", "", "", "", "", "", "", "", "")
2020-06-26 15:41:44 +01:00
title, year = tmdb.split_title_year('Dune')
self.assertEqual('Dune', title)
self.assertEqual(None, year)
title, year = tmdb.split_title_year('Dune y:2020 ')
self.assertEqual('Dune', title)
self.assertEqual(2020, year)
async def test_set_poster_size(self):
movie = Movie()
await movie.load_parameters()
size = movie.set_poster_size("w500")
self.assertEqual(size, "w500")
2020-09-11 10:15:04 +01:00
self.assertEqual(movie.base_url_poster, f"{movie.base_url_images}w500")
size = movie.set_poster_size("w666")
self.assertEqual(size, None)
await movie.close_session()
2021-08-20 09:39:08 +01:00
2021-11-11 12:54:53 +00:00
async def test_year_no_y(self):
2021-08-20 09:07:57 +01:00
movie = Movie()
2021-11-11 12:54:53 +00:00
await movie.load_parameters()
id = await movie.search_title('infinite 2021')
2021-08-20 09:07:57 +01:00
self.assertEqual(id, None)
self.assertEqual(movie.valid, False)
2020-06-26 15:41:44 +01:00
# TV Shows
async def test_search_tvshow(self):
2020-06-24 09:45:18 +01:00
movie = TvShow()
await movie.load_parameters()
id = await movie.search_title('The Flash')
self.assertEqual(id, 60735)
await movie.close_session()
2020-06-24 09:45:18 +01:00
async def test_tv_title(self):
2020-06-24 09:45:18 +01:00
movie = TvShow()
await movie.load_parameters()
await movie.search_title('The Flash')
2020-06-24 09:45:18 +01:00
self.assertEqual('The Flash', movie.title)
await movie.close_session()
2020-06-24 09:45:18 +01:00
2021-12-12 10:26:28 +00:00
async def test_search_tvshow_v(self):
movie = TvShow()
await movie.load_parameters()
mid = await movie.search_title('V')
self.assertEqual(mid, 21494)
await movie.close_session()
async def test_tv_title_v(self):
movie = TvShow()
await movie.load_parameters()
await movie.search_title('V')
self.assertEqual('V', movie.title)
await movie.close_session()
async def test_search_tvshow_v_2009(self):
movie = TvShow()
await movie.load_parameters()
mid = await movie.search_title('V', 1983)
self.assertEqual(mid, 14141)
await movie.close_session()
async def test_tv_title_v_1983(self):
movie = TvShow()
await movie.load_parameters()
await movie.search_title('V', 1983)
self.assertEqual('V', movie.title)
await movie.close_session()
async def test_cast_2(self):
2020-06-24 09:45:18 +01:00
movie = TvShow()
await movie.load_parameters()
await movie.search_title('The Flash')
self.assertEqual('Danielle Panabaker', movie.cast[2])
await movie.close_session()
async def test_poster_path(self):
movie = Movie()
await movie.load_parameters()
await movie.search_title('Dune')
2021-11-08 21:48:18 +00:00
self.assertEqual(movie.poster_url, "http://image.tmdb.org/t/p/w92/d5NXSklXo0qyIYkgV94XAgMIckC.jpg")
await movie.close_session()
2020-06-24 09:45:18 +01:00
async def test_movie_popular_length(self):
2021-09-23 21:22:35 +01:00
results = await apiRequests('/movie/popular')
2021-03-16 16:56:02 +00:00
list = MoviePopular()
await list.load_parameters()
text = await list.query()
self.assertEqual(text, results['total_results'])
await list.close_session()
async def test_movie_popular_id(self):
2021-09-23 21:22:35 +01:00
results = await apiRequests('/movie/popular')
2021-03-16 20:45:27 +00:00
list = MoviePopular()
await list.load_parameters()
await list.query()
2021-03-16 20:45:27 +00:00
self.assertEqual(list.list[2]['id'], results['results'][2]['id'])
await list.close_session()
2021-03-16 20:45:27 +00:00
async def test_movie_popular_text(self):
2021-09-23 21:22:35 +01:00
results = await apiRequests('/movie/popular')
2021-03-16 20:45:27 +00:00
list = MoviePopular()
await list.load_parameters()
await list.query()
2021-03-16 20:45:27 +00:00
test_result = results['results'][-1]['title']
2021-11-08 21:48:18 +00:00
tested = list.getListText()
tested = tested[(len(results['results'][-1]['title'])) * -1:]
2021-03-16 20:45:27 +00:00
self.assertEqual(tested, test_result)
await list.close_session()
2021-03-16 20:45:27 +00:00
2021-11-10 14:38:28 +00:00
2020-06-22 20:21:22 +01:00
if __name__ == '__main__':
unittest.main()