# location-guessing-game-telegram-bot - Telegram Bot Sending Random Wikimedia Commons Photos # # Copyright (C) 2021 Fabian Peter Hammerle # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . import unittest.mock from location_guessing_game_telegram_bot import _run def test__run(tmp_path, wikimap_export_path): telegram_token_path = tmp_path.joinpath("token") telegram_token_path.write_text("secret\n") with unittest.mock.patch("telegram.ext.Updater") as updater_mock: _run( telegram_token_path=telegram_token_path, wikimap_export_path=wikimap_export_path, ) assert updater_mock.call_count == 1 assert not updater_mock.call_args.args assert set(updater_mock.call_args.kwargs.keys()) == { "persistence", "token", "use_context", } assert updater_mock.call_args.kwargs["token"] == "secret" assert updater_mock.call_args.kwargs["use_context"] is True persistence = updater_mock.call_args.kwargs["persistence"] photos = persistence.get_bot_data()["photos"] assert len(photos) == 25 assert ( photos[1].photo_url == "https://upload.wikimedia.org/wikipedia/commons/6/65/Gro%C3%9Fvenediger3.JPG" )