100% misc.autoupdate coverage
This commit is contained in:
parent
182dd26fb7
commit
e499d8932f
@ -49,9 +49,12 @@ class PyPIVersionClient(QObject):
|
|||||||
success = pyqtSignal(str)
|
success = pyqtSignal(str)
|
||||||
error = pyqtSignal(str)
|
error = pyqtSignal(str)
|
||||||
|
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None, client=None):
|
||||||
super().__init__(parent)
|
super().__init__(parent)
|
||||||
self._client = httpclient.HTTPClient(self)
|
if client is None:
|
||||||
|
self._client = httpclient.HTTPClient(self)
|
||||||
|
else:
|
||||||
|
self._client = client
|
||||||
self._client.error.connect(self.error)
|
self._client.error.connect(self.error)
|
||||||
self._client.success.connect(self.on_client_success)
|
self._client.success.connect(self.on_client_success)
|
||||||
|
|
||||||
|
105
tests/unit/misc/test_autoupdate.py
Normal file
105
tests/unit/misc/test_autoupdate.py
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
|
||||||
|
|
||||||
|
# Copyright 2015 Alexander Cogneau (acogneau) <alexander.cogneau@gmail.com>:
|
||||||
|
#
|
||||||
|
# This file is part of qutebrowser.
|
||||||
|
#
|
||||||
|
# qutebrowser 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
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# qutebrowser 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 qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
"""Tests for qutebrowser.misc.autoupdate"""
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from PyQt5.QtTest import QSignalSpy
|
||||||
|
|
||||||
|
from qutebrowser.misc import autoupdate, httpclient
|
||||||
|
|
||||||
|
|
||||||
|
class HTTPGetStub(httpclient.HTTPClient):
|
||||||
|
"""A stub class for HTTPClient.
|
||||||
|
|
||||||
|
Attributes:
|
||||||
|
_success: Wether get() will emit a success signal.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, success=True, json=None):
|
||||||
|
self._success = success
|
||||||
|
if json:
|
||||||
|
self._json = json
|
||||||
|
else:
|
||||||
|
self._json = '{"info": {"version": "test"}}'
|
||||||
|
|
||||||
|
super(HTTPGetStub, self).__init__()
|
||||||
|
|
||||||
|
def get(self, url):
|
||||||
|
if self._success is True:
|
||||||
|
self.success.emit(self._json)
|
||||||
|
else:
|
||||||
|
self.error.emit("error")
|
||||||
|
|
||||||
|
|
||||||
|
def test_constructor():
|
||||||
|
client = autoupdate.PyPIVersionClient()
|
||||||
|
assert isinstance(client._client, httpclient.HTTPClient)
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_version_success(qtbot):
|
||||||
|
"""Test get_version() when success is emitted."""
|
||||||
|
HTTPStub = HTTPGetStub(success=True)
|
||||||
|
client = autoupdate.PyPIVersionClient(client=HTTPStub)
|
||||||
|
|
||||||
|
# Use a spy to inspect the signal
|
||||||
|
success_spy = QSignalSpy(client.success)
|
||||||
|
error_spy = QSignalSpy(client.error)
|
||||||
|
|
||||||
|
with qtbot.waitSignal(client.success, timeout=2000, raising=False):
|
||||||
|
client.get_version('test')
|
||||||
|
|
||||||
|
assert len(success_spy) == 1
|
||||||
|
assert len(error_spy) == 0
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_version_error(qtbot):
|
||||||
|
"""Test get_version() when error is emitted."""
|
||||||
|
HTTPStub = HTTPGetStub(success=False)
|
||||||
|
client = autoupdate.PyPIVersionClient(client=HTTPStub)
|
||||||
|
|
||||||
|
# Use a spy to inspect the signal
|
||||||
|
success_spy = QSignalSpy(client.success)
|
||||||
|
error_spy = QSignalSpy(client.error)
|
||||||
|
|
||||||
|
with qtbot.waitSignal(client.error, timeout=2000, raising=False):
|
||||||
|
client.get_version('test')
|
||||||
|
|
||||||
|
assert len(success_spy) == 0
|
||||||
|
assert len(error_spy) == 1
|
||||||
|
|
||||||
|
|
||||||
|
def test_invalid_json():
|
||||||
|
"""Test on_client_success() with invalid JSON."""
|
||||||
|
json = '{"invalid": { "json"}'
|
||||||
|
HTTPStub = HTTPGetStub(json=json)
|
||||||
|
client = autoupdate.PyPIVersionClient(client=HTTPStub)
|
||||||
|
error_spy = QSignalSpy(client.error)
|
||||||
|
client.get_version('test')
|
||||||
|
assert len(error_spy) == 1
|
||||||
|
|
||||||
|
|
||||||
|
def test_invalid_keys():
|
||||||
|
"""Test on_client_success() with valid JSON and wrong keys."""
|
||||||
|
json = '{"wrong": "keys"}'
|
||||||
|
HTTPStub = HTTPGetStub(json=json)
|
||||||
|
client = autoupdate.PyPIVersionClient(client=HTTPStub)
|
||||||
|
error_spy = QSignalSpy(client.error)
|
||||||
|
client.get_version('test')
|
||||||
|
assert len(error_spy) == 1
|
Loading…
Reference in New Issue
Block a user