#!/usr/bin/env python3 import unittest import requests from html import escape from tmdb.tmdb_api import Movie, TvShow, MoviePopular from tmdb.tmdb import TmdbBot, MessageConstructor from tmdb.database import Database from sqlalchemy import create_engine def apiRequests(command): api_key = '51d75c00dc1502dc894b7773ec3e7a15' base_url = "https://api.themoviedb.org/3/" url = base_url + command.lstrip('/') params = {'api_key': api_key} params.update({'language': 'en'}) return requests.get(url, params=params).json() class TestTmdbMethods(unittest.TestCase): # TMDB API def test_search_item(self): movie = Movie() id = movie.search_title('Breakfast Club') self.assertEqual(id, 2108) def test_cast(self): movie = Movie() movie.search_title('Breakfast Club') self.assertEqual('Emilio Estevez', movie.cast[0]) def test_title(self): movie = Movie() movie.search_title('Breakfast Club') self.assertEqual('The Breakfast Club', movie.title) def test_overview(self): movie = Movie() movie.search_title('Breakfast Club') description = 'Five high school students from different walks of' self.assertEqual(description, movie.overview[:len(description)]) def test_change_language(self): movie = Movie() movie.set_language('en') movie.search_title('Breakfast Club') description = 'Five high school students from different walks of life endure a Saturday detention' self.assertEqual(description, movie.overview[:len(description)]) def test_html_construction(self): movie = Movie() movie.query_details('550') constructor = MessageConstructor(movie) constructor.overview_length = 10 message = constructor.construct_html_message() self.assertEqual(message, """

Fight Club

A ticking- [...]

Acting: Edward Norton, Brad Pitt, Helena Bonham Carter

Taken from www.themoviedb.org

""") def test_database_language(self): engine = create_engine('sqlite:///test.db', echo=True) 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') def test_id_lookup(self): movie = Movie() movie.query_details('2108') self.assertEqual('The Breakfast Club', movie.title) def test_search_fails(self): movie = Movie() id = movie.search_title('Breakfast Club 2019') self.assertEqual(id, None) self.assertEqual(None, movie.title) def test_search_year(self): movie = Movie() id = movie.search_title('Dune') self.assertEqual(id, 438631) id = movie.search_title('Dune', 1984) self.assertEqual(id, 841) def test_split_year(self): tmdb = TmdbBot("", "", "", "", "", "", "", "", "") 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) def test_set_poster_size(self): movie = Movie() size = movie.set_poster_size("w500") self.assertEqual(size, "w500") self.assertEqual(movie.base_url_poster, f"{movie.base_url_images}w500") size = movie.set_poster_size("w666") self.assertEqual(size, None) # TV Shows def test_search_tvshow(self): movie = TvShow() id = movie.search_title('The Flash') self.assertEqual(id, 60735) def test_tv_title(self): movie = TvShow() movie.search_title('The Flash') self.assertEqual('The Flash', movie.title) def test_cast_2(self): movie = TvShow() movie.search_title('The Flash') self.assertEqual('Danielle Panabaker', movie.cast[2]) def test_poster_path(self): movie = Movie() movie.search_title('Dune') self.assertEqual(movie.poster_url, "http://image.tmdb.org/t/p/w92/9HNZTw2D3cM1yA08FF5SeWEO9eX.jpg") def test_movie_popular_length(self): results = apiRequests('/movie/popular') list = MoviePopular() self.assertEqual(list.query(), results['total_results']) def test_movie_popular_id(self): results = apiRequests('/movie/popular') list = MoviePopular() list.query() self.assertEqual(list.list[2]['id'], results['results'][2]['id']) def test_movie_popular_html(self): results = apiRequests('/movie/popular') list = MoviePopular() list.query() test_result = escape(results['results'][-1]['title']) tested = list.getListHtml()[(len(results['results'][-1]['title']) + 8) * -1:] self.assertEqual(tested, f"""{test_result}

""") def test_movie_popular_text(self): results = apiRequests('/movie/popular') list = MoviePopular() list.query() test_result = results['results'][-1]['title'] tested = list.getListText()[(len(results['results'][-1]['title'])) * -1:] self.assertEqual(tested, test_result) if __name__ == '__main__': unittest.main()