#!/usr/bin/env python # -*- coding: utf-8 -*- # # missingnotice_tests.py # # Copyright 2018 Jonathan Golder # # 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 2 of the License, or # (at your option) 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, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, # MA 02110-1301, USA. # # """ Test module bot/missingnotice.py """ import unittest from unittest import mock # noqa import context # noqa from bots.missingnotice import MissingNoticeBot # noqa class TestMissingNoticeBot(unittest.TestCase): """ Test class MissingNoticeBot """ @mock.patch( 'sqlalchemy.engine.Engine.execute', return_value=( { "page_title": b"a", }, { "page_title": b"b", }, { "page_title": b"c", }, { "page_title": b"d", }, ) ) def test_get_categorized_articles(self, execute_mock): """ Test method get_categorized_articles() """ self.assertFalse(execute_mock.called) result = MissingNoticeBot.get_categorized_articles() self.assertTrue(execute_mock.called) self.assertEqual(result, ["a", "b", "c", "d"] ) if __name__ == '__main__': unittest.main()