forked from openlp/openlp
[bug 1409031] Fix retry counter when fetching a webpage
bzr-revno: 2470 Fixes: https://launchpad.net/bugs/1409031
This commit is contained in:
commit
91933c3e2f
@ -401,7 +401,7 @@ def get_web_page(url, header=None, update_openlp=False):
|
|||||||
req.add_header(header[0], header[1])
|
req.add_header(header[0], header[1])
|
||||||
page = None
|
page = None
|
||||||
log.debug('Downloading URL = %s' % url)
|
log.debug('Downloading URL = %s' % url)
|
||||||
retries = 0
|
retries = 1
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
page = urllib.request.urlopen(req, timeout=CONNECTION_TIMEOUT)
|
page = urllib.request.urlopen(req, timeout=CONNECTION_TIMEOUT)
|
||||||
@ -411,6 +411,7 @@ def get_web_page(url, header=None, update_openlp=False):
|
|||||||
log.exception('The web page could not be downloaded')
|
log.exception('The web page could not be downloaded')
|
||||||
raise
|
raise
|
||||||
else:
|
else:
|
||||||
|
retries += 1
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
continue
|
continue
|
||||||
break
|
break
|
||||||
|
64
tests/functional/openlp_core_utils/test_first_time.py
Normal file
64
tests/functional/openlp_core_utils/test_first_time.py
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# Copyright (c) 2008-2015 Raoul Snyman #
|
||||||
|
# Portions copyright (c) 2008-2015 Tim Bentley, Gerald Britton, Jonathan #
|
||||||
|
# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
|
||||||
|
# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. #
|
||||||
|
# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, #
|
||||||
|
# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
|
||||||
|
# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, #
|
||||||
|
# Frode Woldsund, Martin Zibricky, Patrick Zimmermann #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# 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; version 2 of the License. #
|
||||||
|
# #
|
||||||
|
# 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., 59 #
|
||||||
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
||||||
|
###############################################################################
|
||||||
|
"""
|
||||||
|
Package to test the openlp.core.utils.__init__ package.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from unittest import TestCase
|
||||||
|
import urllib.request
|
||||||
|
import urllib.error
|
||||||
|
import urllib.parse
|
||||||
|
|
||||||
|
from tests.functional import MagicMock, patch
|
||||||
|
from tests.helpers.testmixin import TestMixin
|
||||||
|
|
||||||
|
from openlp.core.utils import CONNECTION_TIMEOUT, CONNECTION_RETRIES, get_web_page
|
||||||
|
|
||||||
|
|
||||||
|
class TestFirstTimeWizard(TestMixin, TestCase):
|
||||||
|
"""
|
||||||
|
Test First Time Wizard import functions
|
||||||
|
"""
|
||||||
|
def webpage_connection_retry_test(self):
|
||||||
|
"""
|
||||||
|
Test get_web_page will attempt CONNECTION_RETRIES+1 connections - bug 1409031
|
||||||
|
"""
|
||||||
|
# GIVEN: Initial settings and mocks
|
||||||
|
with patch.object(urllib.request, 'urlopen') as mocked_urlopen:
|
||||||
|
mocked_urlopen.side_effect = ConnectionError
|
||||||
|
|
||||||
|
# WHEN: A webpage is requested
|
||||||
|
try:
|
||||||
|
get_web_page(url='http://localhost')
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# THEN: urlopen should have been called CONNECTION_RETRIES + 1 count
|
||||||
|
self.assertEquals(mocked_urlopen.call_count, CONNECTION_RETRIES + 1,
|
||||||
|
'get_web_page() should have tried {} times'.format(CONNECTION_RETRIES))
|
Loading…
Reference in New Issue
Block a user