mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-01-01 11:28:12 -05:00
Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2e2aa8c4a0 | ||
|
|
f57e03db2d | ||
|
|
66085e2239 | ||
|
|
4d3c9b78c4 | ||
|
|
392e4c5f68 | ||
|
|
4d6d3b8eb2 | ||
|
|
d5610221a9 | ||
|
|
aa7b398d3b | ||
|
|
8d6ec500f9 | ||
|
|
bab0be9994 | ||
|
|
0294e2a1f1 | ||
|
|
0ab00e4119 | ||
|
|
b20fce057b | ||
|
|
dec59f47dd | ||
|
|
ca85b2428b | ||
|
|
d8a00d58a6 | ||
|
|
d4cd1cedfd | ||
|
|
161122b94d | ||
|
|
cec36695b6 | ||
|
|
4cc8be8f5d | ||
|
|
f5eb32aa19 | ||
|
|
a76345ff6b | ||
|
|
c3bbeee54d | ||
|
|
13a3f7577b | ||
|
|
f5b9adfbd5 | ||
|
|
8d210e7f3e |
@@ -14,13 +14,19 @@ test_package:
|
|||||||
|
|
||||||
deploy_package:
|
deploy_package:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
|
variables:
|
||||||
|
TWINE_USERNAME: $PYPI_USERNAME
|
||||||
|
TWINE_PASSWORD: $PYPI_PASSWORD
|
||||||
script:
|
script:
|
||||||
|
- pip install twine wheel
|
||||||
|
- rm -rf dist
|
||||||
- export VERSION=$(python setup.py --version)
|
- export VERSION=$(python setup.py --version)
|
||||||
- python setup.py sdist --formats=gztar upload -r gog-pypi
|
- python setup.py sdist --formats=gztar bdist_wheel
|
||||||
|
- twine upload dist/*
|
||||||
- curl -X POST --silent --show-error --fail
|
- curl -X POST --silent --show-error --fail
|
||||||
"https://gitlab.gog.com/api/v4/projects/${CI_PROJECT_ID}/repository/tags?tag_name=${VERSION}&ref=${CI_COMMIT_REF_NAME}&private_token=${PACKAGE_DEPLOYER_API_TOKEN}"
|
"https://gitlab.gog.com/api/v4/projects/${CI_PROJECT_ID}/repository/tags?tag_name=${VERSION}&ref=${CI_COMMIT_REF_NAME}&private_token=${PACKAGE_DEPLOYER_API_TOKEN}"
|
||||||
when: manual
|
when: manual
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
except:
|
except:
|
||||||
- tags
|
- tags
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ Platform ID list for GOG Galaxy 2.0 Integrations
|
|||||||
| nswitch | Nintendo Switch |
|
| nswitch | Nintendo Switch |
|
||||||
| nwiiu | Nintendo Wii U |
|
| nwiiu | Nintendo Wii U |
|
||||||
| nwii | Nintendo Wii |
|
| nwii | Nintendo Wii |
|
||||||
| ncube | Nintendo Game Cube |
|
| ncube | Nintendo GameCube |
|
||||||
| riot | Riot |
|
| riot | Riot |
|
||||||
| wargaming | Wargaming |
|
| wargaming | Wargaming |
|
||||||
| ngameboy | Nintendo Game Boy |
|
| ngameboy | Nintendo Game Boy |
|
||||||
@@ -58,25 +58,25 @@ Platform ID list for GOG Galaxy 2.0 Integrations
|
|||||||
| bb | BestBuy |
|
| bb | BestBuy |
|
||||||
| gameuk | Game UK |
|
| gameuk | Game UK |
|
||||||
| fanatical | Fanatical store |
|
| fanatical | Fanatical store |
|
||||||
| playasia | PlayAsia |
|
| playasia | Play-Asia |
|
||||||
| stadia | Google Stadia |
|
| stadia | Google Stadia |
|
||||||
| arc | ARC |
|
| arc | ARC |
|
||||||
| eso | ESO |
|
| eso | ESO |
|
||||||
| glyph | Trion World |
|
| glyph | Trion World |
|
||||||
| aionl | Aion: Legions of War |
|
| aionl | Aion: Legions of War |
|
||||||
| aion | Aion |
|
| aion | Aion |
|
||||||
| blade | Blade and Soul |
|
| blade | Blade & Soul |
|
||||||
| gw | Guild Wars |
|
| gw | Guild Wars |
|
||||||
| gw2 | Guild Wars 2 |
|
| gw2 | Guild Wars 2 |
|
||||||
| lin2 | Lineage 2 |
|
| lin2 | Lineage 2 |
|
||||||
| ffxi | Final Fantasy XI |
|
| ffxi | Final Fantasy XI |
|
||||||
| ffxiv | Final Fantasy XIV |
|
| ffxiv | Final Fantasy XIV |
|
||||||
| totalwar | TotalWar |
|
| totalwar | Total War |
|
||||||
| winstore | Windows Store |
|
| winstore | Windows Store |
|
||||||
| elites | Elite Dangerous |
|
| elites | Elite Dangerous |
|
||||||
| star | Star Citizen |
|
| star | Star Citizen |
|
||||||
| psp | Playstation Portable |
|
| psp | PlayStation Portable |
|
||||||
| psvita | Playstation Vita |
|
| psvita | PlayStation Vita |
|
||||||
| nds | Nintendo DS |
|
| nds | Nintendo DS |
|
||||||
| 3ds | Nintendo 3DS |
|
| 3ds | Nintendo 3DS |
|
||||||
| pathofexile | Path of Exile |
|
| pathofexile | Path of Exile |
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
Sphinx==2.0.1
|
Sphinx==2.0.1
|
||||||
sphinx-rtd-theme==0.4.3
|
sphinx-rtd-theme==0.4.3
|
||||||
sphinx-autodoc-typehints==1.6.0
|
sphinx-autodoc-typehints==1.6.0
|
||||||
|
sphinxcontrib-asyncio==0.2.0
|
||||||
m2r==0.2.1
|
m2r==0.2.1
|
||||||
@@ -32,12 +32,13 @@ release = _version
|
|||||||
# ones.
|
# ones.
|
||||||
extensions = [
|
extensions = [
|
||||||
'sphinx.ext.autodoc',
|
'sphinx.ext.autodoc',
|
||||||
|
'sphinxcontrib.asyncio',
|
||||||
'sphinx_autodoc_typehints',
|
'sphinx_autodoc_typehints',
|
||||||
'm2r' # mdinclude directive for makrdown files
|
'm2r' # mdinclude directive for makrdown files
|
||||||
]
|
]
|
||||||
autodoc_member_order = 'bysource'
|
autodoc_member_order = 'bysource'
|
||||||
autodoc_inherit_docstrings = False
|
autodoc_inherit_docstrings = False
|
||||||
autodoc_mock_imports = ["galaxy.http"]
|
autodoc_mock_imports = ["aiohttp"]
|
||||||
|
|
||||||
set_type_checking_flag = True
|
set_type_checking_flag = True
|
||||||
|
|
||||||
@@ -47,7 +48,7 @@ templates_path = ['_templates']
|
|||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
# This pattern also affects html_static_path and html_extra_path.
|
# This pattern also affects html_static_path and html_extra_path.
|
||||||
exclude_patterns = []
|
exclude_patterns = [] # type: ignore
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTML output -------------------------------------------------
|
# -- Options for HTML output -------------------------------------------------
|
||||||
|
|||||||
8
docs/source/galaxy.http.rst
Normal file
8
docs/source/galaxy.http.rst
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
galaxy.http
|
||||||
|
=================
|
||||||
|
|
||||||
|
.. automodule:: galaxy.http
|
||||||
|
:members:
|
||||||
|
:special-members: __init__
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
@@ -6,7 +6,8 @@ GOG Galaxy Integrations Python API
|
|||||||
:includehidden:
|
:includehidden:
|
||||||
|
|
||||||
Overview <overview>
|
Overview <overview>
|
||||||
API <galaxy.api>
|
galaxy.api
|
||||||
|
galaxy.http
|
||||||
Platform ID's <platforms>
|
Platform ID's <platforms>
|
||||||
|
|
||||||
Index
|
Index
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
[pytest]
|
[pytest]
|
||||||
addopts = --flakes
|
addopts = --flakes --mypy
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
pytest==4.2.0
|
pytest==4.2.0
|
||||||
pytest-asyncio==0.10.0
|
pytest-asyncio==0.10.0
|
||||||
pytest-mock==1.10.3
|
pytest-mock==1.10.3
|
||||||
|
pytest-mypy==0.4.1
|
||||||
pytest-flakes==4.0.0
|
pytest-flakes==4.0.0
|
||||||
# because of pip bug https://github.com/pypa/pip/issues/4780
|
# because of pip bug https://github.com/pypa/pip/issues/4780
|
||||||
aiohttp==3.5.4
|
aiohttp==3.5.4
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="galaxy.plugin.api",
|
name="galaxy.plugin.api",
|
||||||
version="0.45",
|
version="0.52",
|
||||||
description="GOG Galaxy Integrations Python API",
|
description="GOG Galaxy Integrations Python API",
|
||||||
author='Galaxy team',
|
author='Galaxy team',
|
||||||
author_email='galaxy@gog.com',
|
author_email='galaxy@gog.com',
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
__path__: str = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore
|
||||||
|
|||||||
@@ -81,6 +81,16 @@ class Platform(Enum):
|
|||||||
NintendoDs = "nds"
|
NintendoDs = "nds"
|
||||||
Nintendo3Ds = "3ds"
|
Nintendo3Ds = "3ds"
|
||||||
PathOfExile = "pathofexile"
|
PathOfExile = "pathofexile"
|
||||||
|
Twitch = "twitch"
|
||||||
|
Minecraft = "minecraft"
|
||||||
|
GameSessions = "gamesessions"
|
||||||
|
Nuuvem = "nuuvem"
|
||||||
|
FXStore = "fxstore"
|
||||||
|
IndieGala = "indiegala"
|
||||||
|
Playfire = "playfire"
|
||||||
|
Oculus = "oculus"
|
||||||
|
Test = "test"
|
||||||
|
|
||||||
|
|
||||||
class Feature(Enum):
|
class Feature(Enum):
|
||||||
"""Possible features that can be implemented by an integration.
|
"""Possible features that can be implemented by an integration.
|
||||||
@@ -99,6 +109,8 @@ class Feature(Enum):
|
|||||||
VerifyGame = "VerifyGame"
|
VerifyGame = "VerifyGame"
|
||||||
ImportFriends = "ImportFriends"
|
ImportFriends = "ImportFriends"
|
||||||
ShutdownPlatformClient = "ShutdownPlatformClient"
|
ShutdownPlatformClient = "ShutdownPlatformClient"
|
||||||
|
LaunchPlatformClient = "LaunchPlatformClient"
|
||||||
|
ImportGameLibrarySettings = "ImportGameLibrarySettings"
|
||||||
|
|
||||||
|
|
||||||
class LicenseType(Enum):
|
class LicenseType(Enum):
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
from galaxy.api.jsonrpc import ApplicationError, UnknownError
|
from galaxy.api.jsonrpc import ApplicationError, UnknownError
|
||||||
|
|
||||||
UnknownError = UnknownError
|
assert UnknownError
|
||||||
|
|
||||||
class AuthenticationRequired(ApplicationError):
|
class AuthenticationRequired(ApplicationError):
|
||||||
def __init__(self, data=None):
|
def __init__(self, data=None):
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import inspect
|
|||||||
import json
|
import json
|
||||||
|
|
||||||
from galaxy.reader import StreamLineReader
|
from galaxy.reader import StreamLineReader
|
||||||
|
from galaxy.task_manager import TaskManager
|
||||||
|
|
||||||
class JsonRpcError(Exception):
|
class JsonRpcError(Exception):
|
||||||
def __init__(self, code, message, data=None):
|
def __init__(self, code, message, data=None):
|
||||||
@@ -17,6 +18,17 @@ class JsonRpcError(Exception):
|
|||||||
def __eq__(self, other):
|
def __eq__(self, other):
|
||||||
return self.code == other.code and self.message == other.message and self.data == other.data
|
return self.code == other.code and self.message == other.message and self.data == other.data
|
||||||
|
|
||||||
|
def json(self):
|
||||||
|
obj = {
|
||||||
|
"code": self.code,
|
||||||
|
"message": self.message
|
||||||
|
}
|
||||||
|
|
||||||
|
if self.data is not None:
|
||||||
|
obj["error"]["data"] = self.data
|
||||||
|
|
||||||
|
return obj
|
||||||
|
|
||||||
class ParseError(JsonRpcError):
|
class ParseError(JsonRpcError):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__(-32700, "Parse error")
|
super().__init__(-32700, "Parse error")
|
||||||
@@ -52,7 +64,8 @@ class UnknownError(ApplicationError):
|
|||||||
super().__init__(0, "Unknown error", data)
|
super().__init__(0, "Unknown error", data)
|
||||||
|
|
||||||
Request = namedtuple("Request", ["method", "params", "id"], defaults=[{}, None])
|
Request = namedtuple("Request", ["method", "params", "id"], defaults=[{}, None])
|
||||||
Method = namedtuple("Method", ["callback", "signature", "internal", "sensitive_params"])
|
Method = namedtuple("Method", ["callback", "signature", "immediate", "sensitive_params"])
|
||||||
|
|
||||||
|
|
||||||
def anonymise_sensitive_params(params, sensitive_params):
|
def anonymise_sensitive_params(params, sensitive_params):
|
||||||
anomized_data = "****"
|
anomized_data = "****"
|
||||||
@@ -74,9 +87,9 @@ class Server():
|
|||||||
self._encoder = encoder
|
self._encoder = encoder
|
||||||
self._methods = {}
|
self._methods = {}
|
||||||
self._notifications = {}
|
self._notifications = {}
|
||||||
self._eof_listeners = []
|
self._task_manager = TaskManager("jsonrpc server")
|
||||||
|
|
||||||
def register_method(self, name, callback, internal, sensitive_params=False):
|
def register_method(self, name, callback, immediate, sensitive_params=False):
|
||||||
"""
|
"""
|
||||||
Register method
|
Register method
|
||||||
|
|
||||||
@@ -86,9 +99,9 @@ class Server():
|
|||||||
:param sensitive_params: list of parameters that are anonymized before logging; \
|
:param sensitive_params: list of parameters that are anonymized before logging; \
|
||||||
if False - no params are considered sensitive, if True - all params are considered sensitive
|
if False - no params are considered sensitive, if True - all params are considered sensitive
|
||||||
"""
|
"""
|
||||||
self._methods[name] = Method(callback, inspect.signature(callback), internal, sensitive_params)
|
self._methods[name] = Method(callback, inspect.signature(callback), immediate, sensitive_params)
|
||||||
|
|
||||||
def register_notification(self, name, callback, internal, sensitive_params=False):
|
def register_notification(self, name, callback, immediate, sensitive_params=False):
|
||||||
"""
|
"""
|
||||||
Register notification
|
Register notification
|
||||||
|
|
||||||
@@ -98,10 +111,7 @@ class Server():
|
|||||||
:param sensitive_params: list of parameters that are anonymized before logging; \
|
:param sensitive_params: list of parameters that are anonymized before logging; \
|
||||||
if False - no params are considered sensitive, if True - all params are considered sensitive
|
if False - no params are considered sensitive, if True - all params are considered sensitive
|
||||||
"""
|
"""
|
||||||
self._notifications[name] = Method(callback, inspect.signature(callback), internal, sensitive_params)
|
self._notifications[name] = Method(callback, inspect.signature(callback), immediate, sensitive_params)
|
||||||
|
|
||||||
def register_eof(self, callback):
|
|
||||||
self._eof_listeners.append(callback)
|
|
||||||
|
|
||||||
async def run(self):
|
async def run(self):
|
||||||
while self._active:
|
while self._active:
|
||||||
@@ -118,14 +128,16 @@ class Server():
|
|||||||
self._handle_input(data)
|
self._handle_input(data)
|
||||||
await asyncio.sleep(0) # To not starve task queue
|
await asyncio.sleep(0) # To not starve task queue
|
||||||
|
|
||||||
def stop(self):
|
def close(self):
|
||||||
|
logging.info("Closing JSON-RPC server - not more messages will be read")
|
||||||
self._active = False
|
self._active = False
|
||||||
|
|
||||||
|
async def wait_closed(self):
|
||||||
|
await self._task_manager.wait()
|
||||||
|
|
||||||
def _eof(self):
|
def _eof(self):
|
||||||
logging.info("Received EOF")
|
logging.info("Received EOF")
|
||||||
self.stop()
|
self.close()
|
||||||
for listener in self._eof_listeners:
|
|
||||||
listener()
|
|
||||||
|
|
||||||
def _handle_input(self, data):
|
def _handle_input(self, data):
|
||||||
try:
|
try:
|
||||||
@@ -145,7 +157,7 @@ class Server():
|
|||||||
logging.error("Received unknown notification: %s", request.method)
|
logging.error("Received unknown notification: %s", request.method)
|
||||||
return
|
return
|
||||||
|
|
||||||
callback, signature, internal, sensitive_params = method
|
callback, signature, immediate, sensitive_params = method
|
||||||
self._log_request(request, sensitive_params)
|
self._log_request(request, sensitive_params)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -153,12 +165,11 @@ class Server():
|
|||||||
except TypeError:
|
except TypeError:
|
||||||
self._send_error(request.id, InvalidParams())
|
self._send_error(request.id, InvalidParams())
|
||||||
|
|
||||||
if internal:
|
if immediate:
|
||||||
# internal requests are handled immediately
|
|
||||||
callback(*bound_args.args, **bound_args.kwargs)
|
callback(*bound_args.args, **bound_args.kwargs)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
asyncio.create_task(callback(*bound_args.args, **bound_args.kwargs))
|
self._task_manager.create_task(callback(*bound_args.args, **bound_args.kwargs), request.method)
|
||||||
except Exception:
|
except Exception:
|
||||||
logging.exception("Unexpected exception raised in notification handler")
|
logging.exception("Unexpected exception raised in notification handler")
|
||||||
|
|
||||||
@@ -169,7 +180,7 @@ class Server():
|
|||||||
self._send_error(request.id, MethodNotFound())
|
self._send_error(request.id, MethodNotFound())
|
||||||
return
|
return
|
||||||
|
|
||||||
callback, signature, internal, sensitive_params = method
|
callback, signature, immediate, sensitive_params = method
|
||||||
self._log_request(request, sensitive_params)
|
self._log_request(request, sensitive_params)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -177,8 +188,7 @@ class Server():
|
|||||||
except TypeError:
|
except TypeError:
|
||||||
self._send_error(request.id, InvalidParams())
|
self._send_error(request.id, InvalidParams())
|
||||||
|
|
||||||
if internal:
|
if immediate:
|
||||||
# internal requests are handled immediately
|
|
||||||
response = callback(*bound_args.args, **bound_args.kwargs)
|
response = callback(*bound_args.args, **bound_args.kwargs)
|
||||||
self._send_response(request.id, response)
|
self._send_response(request.id, response)
|
||||||
else:
|
else:
|
||||||
@@ -190,11 +200,13 @@ class Server():
|
|||||||
self._send_error(request.id, MethodNotFound())
|
self._send_error(request.id, MethodNotFound())
|
||||||
except JsonRpcError as error:
|
except JsonRpcError as error:
|
||||||
self._send_error(request.id, error)
|
self._send_error(request.id, error)
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
self._send_error(request.id, Aborted())
|
||||||
except Exception as e: #pylint: disable=broad-except
|
except Exception as e: #pylint: disable=broad-except
|
||||||
logging.exception("Unexpected exception raised in plugin handler")
|
logging.exception("Unexpected exception raised in plugin handler")
|
||||||
self._send_error(request.id, UnknownError(str(e)))
|
self._send_error(request.id, UnknownError(str(e)))
|
||||||
|
|
||||||
asyncio.create_task(handle())
|
self._task_manager.create_task(handle(), request.method)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _parse_request(data):
|
def _parse_request(data):
|
||||||
@@ -215,7 +227,7 @@ class Server():
|
|||||||
logging.debug("Sending data: %s", line)
|
logging.debug("Sending data: %s", line)
|
||||||
data = (line + "\n").encode("utf-8")
|
data = (line + "\n").encode("utf-8")
|
||||||
self._writer.write(data)
|
self._writer.write(data)
|
||||||
asyncio.create_task(self._writer.drain())
|
self._task_manager.create_task(self._writer.drain(), "drain")
|
||||||
except TypeError as error:
|
except TypeError as error:
|
||||||
logging.error(str(error))
|
logging.error(str(error))
|
||||||
|
|
||||||
@@ -231,15 +243,9 @@ class Server():
|
|||||||
response = {
|
response = {
|
||||||
"jsonrpc": "2.0",
|
"jsonrpc": "2.0",
|
||||||
"id": request_id,
|
"id": request_id,
|
||||||
"error": {
|
"error": error.json()
|
||||||
"code": error.code,
|
|
||||||
"message": error.message
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if error.data is not None:
|
|
||||||
response["error"]["data"] = error.data
|
|
||||||
|
|
||||||
self._send(response)
|
self._send(response)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
@@ -255,6 +261,7 @@ class NotificationClient():
|
|||||||
self._writer = writer
|
self._writer = writer
|
||||||
self._encoder = encoder
|
self._encoder = encoder
|
||||||
self._methods = {}
|
self._methods = {}
|
||||||
|
self._task_manager = TaskManager("notification client")
|
||||||
|
|
||||||
def notify(self, method, params, sensitive_params=False):
|
def notify(self, method, params, sensitive_params=False):
|
||||||
"""
|
"""
|
||||||
@@ -273,13 +280,16 @@ class NotificationClient():
|
|||||||
self._log(method, params, sensitive_params)
|
self._log(method, params, sensitive_params)
|
||||||
self._send(notification)
|
self._send(notification)
|
||||||
|
|
||||||
|
async def close(self):
|
||||||
|
await self._task_manager.wait()
|
||||||
|
|
||||||
def _send(self, data):
|
def _send(self, data):
|
||||||
try:
|
try:
|
||||||
line = self._encoder.encode(data)
|
line = self._encoder.encode(data)
|
||||||
data = (line + "\n").encode("utf-8")
|
data = (line + "\n").encode("utf-8")
|
||||||
logging.debug("Sending %d byte of data", len(data))
|
logging.debug("Sending %d byte of data", len(data))
|
||||||
self._writer.write(data)
|
self._writer.write(data)
|
||||||
asyncio.create_task(self._writer.drain())
|
self._task_manager.create_task(self._writer.drain(), "drain")
|
||||||
except TypeError as error:
|
except TypeError as error:
|
||||||
logging.error("Failed to parse outgoing message: %s", str(error))
|
logging.error("Failed to parse outgoing message: %s", str(error))
|
||||||
|
|
||||||
|
|||||||
@@ -4,16 +4,14 @@ import json
|
|||||||
import logging
|
import logging
|
||||||
import logging.handlers
|
import logging.handlers
|
||||||
import sys
|
import sys
|
||||||
from collections import OrderedDict
|
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
from itertools import count
|
|
||||||
from typing import Any, Dict, List, Optional, Set, Union
|
from typing import Any, Dict, List, Optional, Set, Union
|
||||||
|
|
||||||
from galaxy.api.consts import Feature
|
from galaxy.api.consts import Feature
|
||||||
from galaxy.api.errors import ImportInProgress, UnknownError
|
from galaxy.api.errors import ImportInProgress, UnknownError
|
||||||
from galaxy.api.jsonrpc import ApplicationError, NotificationClient, Server
|
from galaxy.api.jsonrpc import ApplicationError, NotificationClient, Server
|
||||||
from galaxy.api.types import Achievement, Authentication, FriendInfo, Game, GameTime, LocalGame, NextStep
|
from galaxy.api.types import Achievement, Authentication, FriendInfo, Game, GameTime, LocalGame, NextStep, GameLibrarySettings
|
||||||
|
from galaxy.task_manager import TaskManager
|
||||||
|
|
||||||
class JSONEncoder(json.JSONEncoder):
|
class JSONEncoder(json.JSONEncoder):
|
||||||
def default(self, o): # pylint: disable=method-hidden
|
def default(self, o): # pylint: disable=method-hidden
|
||||||
@@ -38,7 +36,6 @@ class Plugin:
|
|||||||
|
|
||||||
self._features: Set[Feature] = set()
|
self._features: Set[Feature] = set()
|
||||||
self._active = True
|
self._active = True
|
||||||
self._pass_control_task = None
|
|
||||||
|
|
||||||
self._reader, self._writer = reader, writer
|
self._reader, self._writer = reader, writer
|
||||||
self._handshake_token = handshake_token
|
self._handshake_token = handshake_token
|
||||||
@@ -47,29 +44,26 @@ class Plugin:
|
|||||||
self._server = Server(self._reader, self._writer, encoder)
|
self._server = Server(self._reader, self._writer, encoder)
|
||||||
self._notification_client = NotificationClient(self._writer, encoder)
|
self._notification_client = NotificationClient(self._writer, encoder)
|
||||||
|
|
||||||
def eof_handler():
|
|
||||||
self._shutdown()
|
|
||||||
|
|
||||||
self._server.register_eof(eof_handler)
|
|
||||||
|
|
||||||
self._achievements_import_in_progress = False
|
self._achievements_import_in_progress = False
|
||||||
self._game_times_import_in_progress = False
|
self._game_times_import_in_progress = False
|
||||||
|
self._game_library_settings_import_in_progress = False
|
||||||
|
|
||||||
self._persistent_cache = dict()
|
self._persistent_cache = dict()
|
||||||
|
|
||||||
self._tasks = OrderedDict()
|
self._internal_task_manager = TaskManager("plugin internal")
|
||||||
self._task_counter = count()
|
self._external_task_manager = TaskManager("plugin external")
|
||||||
|
|
||||||
# internal
|
# internal
|
||||||
self._register_method("shutdown", self._shutdown, internal=True)
|
self._register_method("shutdown", self._shutdown, internal=True)
|
||||||
self._register_method("get_capabilities", self._get_capabilities, internal=True)
|
self._register_method("get_capabilities", self._get_capabilities, internal=True, immediate=True)
|
||||||
self._register_method(
|
self._register_method(
|
||||||
"initialize_cache",
|
"initialize_cache",
|
||||||
self._initialize_cache,
|
self._initialize_cache,
|
||||||
internal=True,
|
internal=True,
|
||||||
|
immediate=True,
|
||||||
sensitive_params="data"
|
sensitive_params="data"
|
||||||
)
|
)
|
||||||
self._register_method("ping", self._ping, internal=True)
|
self._register_method("ping", self._ping, internal=True, immediate=True)
|
||||||
|
|
||||||
# implemented by developer
|
# implemented by developer
|
||||||
self._register_method(
|
self._register_method(
|
||||||
@@ -107,18 +101,31 @@ class Plugin:
|
|||||||
self._register_notification("shutdown_platform_client", self.shutdown_platform_client)
|
self._register_notification("shutdown_platform_client", self.shutdown_platform_client)
|
||||||
self._detect_feature(Feature.ShutdownPlatformClient, ["shutdown_platform_client"])
|
self._detect_feature(Feature.ShutdownPlatformClient, ["shutdown_platform_client"])
|
||||||
|
|
||||||
|
self._register_notification("launch_platform_client", self.launch_platform_client)
|
||||||
|
self._detect_feature(Feature.LaunchPlatformClient, ["launch_platform_client"])
|
||||||
|
|
||||||
self._register_method("import_friends", self.get_friends, result_name="friend_info_list")
|
self._register_method("import_friends", self.get_friends, result_name="friend_info_list")
|
||||||
self._detect_feature(Feature.ImportFriends, ["get_friends"])
|
self._detect_feature(Feature.ImportFriends, ["get_friends"])
|
||||||
|
|
||||||
self._register_method("start_game_times_import", self._start_game_times_import)
|
self._register_method("start_game_times_import", self._start_game_times_import)
|
||||||
self._detect_feature(Feature.ImportGameTime, ["get_game_time"])
|
self._detect_feature(Feature.ImportGameTime, ["get_game_time"])
|
||||||
|
|
||||||
|
self._register_method("start_game_library_settings_import", self._start_game_library_settings_import)
|
||||||
|
self._detect_feature(Feature.ImportGameLibrarySettings, ["get_game_library_settings"])
|
||||||
|
|
||||||
|
async def __aenter__(self):
|
||||||
|
return self
|
||||||
|
|
||||||
|
async def __aexit__(self, exc_type, exc, tb):
|
||||||
|
self.close()
|
||||||
|
await self.wait_closed()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def features(self) -> List[Feature]:
|
def features(self) -> List[Feature]:
|
||||||
return list(self._features)
|
return list(self._features)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def persistent_cache(self) -> Dict:
|
def persistent_cache(self) -> Dict[str, str]:
|
||||||
"""The cache is only available after the :meth:`~.handshake_complete()` is called.
|
"""The cache is only available after the :meth:`~.handshake_complete()` is called.
|
||||||
"""
|
"""
|
||||||
return self._persistent_cache
|
return self._persistent_cache
|
||||||
@@ -133,55 +140,64 @@ class Plugin:
|
|||||||
if self._implements(methods):
|
if self._implements(methods):
|
||||||
self._features.add(feature)
|
self._features.add(feature)
|
||||||
|
|
||||||
def _register_method(self, name, handler, result_name=None, internal=False, sensitive_params=False):
|
def _register_method(self, name, handler, result_name=None, internal=False, immediate=False, sensitive_params=False):
|
||||||
if internal:
|
def wrap_result(result):
|
||||||
|
if result_name:
|
||||||
|
result = {
|
||||||
|
result_name: result
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
|
||||||
|
if immediate:
|
||||||
def method(*args, **kwargs):
|
def method(*args, **kwargs):
|
||||||
result = handler(*args, **kwargs)
|
result = handler(*args, **kwargs)
|
||||||
if result_name:
|
return wrap_result(result)
|
||||||
result = {
|
|
||||||
result_name: result
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
|
|
||||||
self._server.register_method(name, method, True, sensitive_params)
|
self._server.register_method(name, method, True, sensitive_params)
|
||||||
else:
|
else:
|
||||||
async def method(*args, **kwargs):
|
async def method(*args, **kwargs):
|
||||||
result = await handler(*args, **kwargs)
|
if not internal:
|
||||||
if result_name:
|
handler_ = self._wrap_external_method(handler, name)
|
||||||
result = {
|
else:
|
||||||
result_name: result
|
handler_ = handler
|
||||||
}
|
result = await handler_(*args, **kwargs)
|
||||||
return result
|
return wrap_result(result)
|
||||||
|
|
||||||
self._server.register_method(name, method, False, sensitive_params)
|
self._server.register_method(name, method, False, sensitive_params)
|
||||||
|
|
||||||
def _register_notification(self, name, handler, internal=False, sensitive_params=False):
|
def _register_notification(self, name, handler, internal=False, immediate=False, sensitive_params=False):
|
||||||
self._server.register_notification(name, handler, internal, sensitive_params)
|
if not internal and not immediate:
|
||||||
|
handler = self._wrap_external_method(handler, name)
|
||||||
|
self._server.register_notification(name, handler, immediate, sensitive_params)
|
||||||
|
|
||||||
|
def _wrap_external_method(self, handler, name: str):
|
||||||
|
async def wrapper(*args, **kwargs):
|
||||||
|
return await self._external_task_manager.create_task(handler(*args, **kwargs), name, False)
|
||||||
|
return wrapper
|
||||||
|
|
||||||
async def run(self):
|
async def run(self):
|
||||||
"""Plugin's main coroutine."""
|
"""Plugin's main coroutine."""
|
||||||
await self._server.run()
|
await self._server.run()
|
||||||
if self._pass_control_task is not None:
|
|
||||||
await self._pass_control_task
|
def close(self) -> None:
|
||||||
|
if not self._active:
|
||||||
|
return
|
||||||
|
|
||||||
|
logging.info("Closing plugin")
|
||||||
|
self._server.close()
|
||||||
|
self._external_task_manager.cancel()
|
||||||
|
self._internal_task_manager.create_task(self.shutdown(), "shutdown")
|
||||||
|
self._active = False
|
||||||
|
|
||||||
|
async def wait_closed(self) -> None:
|
||||||
|
await self._external_task_manager.wait()
|
||||||
|
await self._internal_task_manager.wait()
|
||||||
|
await self._server.wait_closed()
|
||||||
|
await self._notification_client.close()
|
||||||
|
|
||||||
def create_task(self, coro, description):
|
def create_task(self, coro, description):
|
||||||
"""Wrapper around asyncio.create_task - takes care of canceling tasks on shutdown"""
|
"""Wrapper around asyncio.create_task - takes care of canceling tasks on shutdown"""
|
||||||
|
return self._external_task_manager.create_task(coro, description)
|
||||||
async def task_wrapper(task_id):
|
|
||||||
try:
|
|
||||||
return await coro
|
|
||||||
except asyncio.CancelledError:
|
|
||||||
logging.debug("Canceled task %d (%s)", task_id, description)
|
|
||||||
except Exception:
|
|
||||||
logging.exception("Exception raised in task %d (%s)", task_id, description)
|
|
||||||
finally:
|
|
||||||
del self._tasks[task_id]
|
|
||||||
|
|
||||||
task_id = next(self._task_counter)
|
|
||||||
logging.debug("Creating task %d (%s)", task_id, description)
|
|
||||||
task = asyncio.create_task(task_wrapper(task_id))
|
|
||||||
self._tasks[task_id] = task
|
|
||||||
return task
|
|
||||||
|
|
||||||
async def _pass_control(self):
|
async def _pass_control(self):
|
||||||
while self._active:
|
while self._active:
|
||||||
@@ -191,13 +207,11 @@ class Plugin:
|
|||||||
logging.exception("Unexpected exception raised in plugin tick")
|
logging.exception("Unexpected exception raised in plugin tick")
|
||||||
await asyncio.sleep(1)
|
await asyncio.sleep(1)
|
||||||
|
|
||||||
def _shutdown(self):
|
async def _shutdown(self):
|
||||||
logging.info("Shutting down")
|
logging.info("Shutting down")
|
||||||
self._server.stop()
|
self.close()
|
||||||
self._active = False
|
await self._external_task_manager.wait()
|
||||||
self.shutdown()
|
await self._internal_task_manager.wait()
|
||||||
for task in self._tasks.values():
|
|
||||||
task.cancel()
|
|
||||||
|
|
||||||
def _get_capabilities(self):
|
def _get_capabilities(self):
|
||||||
return {
|
return {
|
||||||
@@ -212,7 +226,7 @@ class Plugin:
|
|||||||
self.handshake_complete()
|
self.handshake_complete()
|
||||||
except Exception:
|
except Exception:
|
||||||
logging.exception("Unhandled exception during `handshake_complete` step")
|
logging.exception("Unhandled exception during `handshake_complete` step")
|
||||||
self._pass_control_task = asyncio.create_task(self._pass_control())
|
self._internal_task_manager.create_task(self._pass_control(), "tick")
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _ping():
|
def _ping():
|
||||||
@@ -240,8 +254,10 @@ class Plugin:
|
|||||||
self.store_credentials(user_data['credentials'])
|
self.store_credentials(user_data['credentials'])
|
||||||
return Authentication(user_data['userId'], user_data['username'])
|
return Authentication(user_data['userId'], user_data['username'])
|
||||||
|
|
||||||
"""
|
"""
|
||||||
self.persistent_cache['credentials'] = credentials
|
# temporary solution for persistent_cache vs credentials issue
|
||||||
|
self.persistent_cache['credentials'] = credentials # type: ignore
|
||||||
|
|
||||||
self._notification_client.notify("store_credentials", credentials, sensitive_params=True)
|
self._notification_client.notify("store_credentials", credentials, sensitive_params=True)
|
||||||
|
|
||||||
def add_game(self, game: Game) -> None:
|
def add_game(self, game: Game) -> None:
|
||||||
@@ -270,7 +286,7 @@ class Plugin:
|
|||||||
"""Notify the client to remove game from the list of owned games
|
"""Notify the client to remove game from the list of owned games
|
||||||
of the currently authenticated user.
|
of the currently authenticated user.
|
||||||
|
|
||||||
:param game_id: game id of the game to remove from the list of owned games
|
:param game_id: the id of the game to remove from the list of owned games
|
||||||
|
|
||||||
Example use case of remove_game:
|
Example use case of remove_game:
|
||||||
|
|
||||||
@@ -300,7 +316,7 @@ class Plugin:
|
|||||||
def unlock_achievement(self, game_id: str, achievement: Achievement) -> None:
|
def unlock_achievement(self, game_id: str, achievement: Achievement) -> None:
|
||||||
"""Notify the client to unlock an achievement for a specific game.
|
"""Notify the client to unlock an achievement for a specific game.
|
||||||
|
|
||||||
:param game_id: game_id of the game for which to unlock an achievement.
|
:param game_id: the id of the game for which to unlock an achievement.
|
||||||
:param achievement: achievement to unlock.
|
:param achievement: achievement to unlock.
|
||||||
"""
|
"""
|
||||||
params = {
|
params = {
|
||||||
@@ -319,10 +335,7 @@ class Plugin:
|
|||||||
def _game_achievements_import_failure(self, game_id: str, error: ApplicationError) -> None:
|
def _game_achievements_import_failure(self, game_id: str, error: ApplicationError) -> None:
|
||||||
params = {
|
params = {
|
||||||
"game_id": game_id,
|
"game_id": game_id,
|
||||||
"error": {
|
"error": error.json()
|
||||||
"code": error.code,
|
|
||||||
"message": error.message
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
self._notification_client.notify("game_achievements_import_failure", params)
|
self._notification_client.notify("game_achievements_import_failure", params)
|
||||||
|
|
||||||
@@ -386,16 +399,27 @@ class Plugin:
|
|||||||
def _game_time_import_failure(self, game_id: str, error: ApplicationError) -> None:
|
def _game_time_import_failure(self, game_id: str, error: ApplicationError) -> None:
|
||||||
params = {
|
params = {
|
||||||
"game_id": game_id,
|
"game_id": game_id,
|
||||||
"error": {
|
"error": error.json()
|
||||||
"code": error.code,
|
|
||||||
"message": error.message
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
self._notification_client.notify("game_time_import_failure", params)
|
self._notification_client.notify("game_time_import_failure", params)
|
||||||
|
|
||||||
def _game_times_import_finished(self) -> None:
|
def _game_times_import_finished(self) -> None:
|
||||||
self._notification_client.notify("game_times_import_finished", None)
|
self._notification_client.notify("game_times_import_finished", None)
|
||||||
|
|
||||||
|
def _game_library_settings_import_success(self, game_library_settings: GameLibrarySettings) -> None:
|
||||||
|
params = {"game_library_settings": game_library_settings}
|
||||||
|
self._notification_client.notify("game_library_settings_import_success", params)
|
||||||
|
|
||||||
|
def _game_library_settings_import_failure(self, game_id: str, error: ApplicationError) -> None:
|
||||||
|
params = {
|
||||||
|
"game_id": game_id,
|
||||||
|
"error": error.json()
|
||||||
|
}
|
||||||
|
self._notification_client.notify("game_library_settings_import_failure", params)
|
||||||
|
|
||||||
|
def _game_library_settings_import_finished(self) -> None:
|
||||||
|
self._notification_client.notify("game_library_settings_import_finished", None)
|
||||||
|
|
||||||
def lost_authentication(self) -> None:
|
def lost_authentication(self) -> None:
|
||||||
"""Notify the client that integration has lost authentication for the
|
"""Notify the client that integration has lost authentication for the
|
||||||
current user and is unable to perform actions which would require it.
|
current user and is unable to perform actions which would require it.
|
||||||
@@ -439,7 +463,7 @@ class Plugin:
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def shutdown(self) -> None:
|
async def shutdown(self) -> None:
|
||||||
"""This method is called on integration shutdown.
|
"""This method is called on integration shutdown.
|
||||||
Override it to implement tear down.
|
Override it to implement tear down.
|
||||||
This method is called by the GOG Galaxy Client."""
|
This method is called by the GOG Galaxy Client."""
|
||||||
@@ -545,15 +569,22 @@ class Plugin:
|
|||||||
finally:
|
finally:
|
||||||
self._achievements_import_finished()
|
self._achievements_import_finished()
|
||||||
self._achievements_import_in_progress = False
|
self._achievements_import_in_progress = False
|
||||||
|
self.achievements_import_complete()
|
||||||
|
|
||||||
self.create_task(import_games_achievements(game_ids, context), "Games unlocked achievements import")
|
self._external_task_manager.create_task(
|
||||||
|
import_games_achievements(game_ids, context),
|
||||||
|
"unlocked achievements import",
|
||||||
|
handle_exceptions=False
|
||||||
|
)
|
||||||
self._achievements_import_in_progress = True
|
self._achievements_import_in_progress = True
|
||||||
|
|
||||||
async def prepare_achievements_context(self, game_ids: List[str]) -> Any:
|
async def prepare_achievements_context(self, game_ids: List[str]) -> Any:
|
||||||
"""Override this method to prepare context for get_unlocked_achievements.
|
"""Override this method to prepare context for get_unlocked_achievements.
|
||||||
|
|
||||||
This allows for optimizations like batch requests to platform API.
|
This allows for optimizations like batch requests to platform API.
|
||||||
Default implementation returns None.
|
Default implementation returns None.
|
||||||
|
|
||||||
|
:param game_ids: the ids of the games for which achievements are imported
|
||||||
|
:return: context
|
||||||
"""
|
"""
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -562,12 +593,17 @@ class Plugin:
|
|||||||
for the game identified by the provided game_id.
|
for the game identified by the provided game_id.
|
||||||
This method is called by import task initialized by GOG Galaxy Client.
|
This method is called by import task initialized by GOG Galaxy Client.
|
||||||
|
|
||||||
:param game_id:
|
:param game_id: the id of the game for which the achievements are returned
|
||||||
:param context: Value return from :meth:`prepare_achievements_context`
|
:param context: the value returned from :meth:`prepare_achievements_context`
|
||||||
:return:
|
:return: list of Achievement objects
|
||||||
"""
|
"""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def achievements_import_complete(self):
|
||||||
|
"""Override this method to handle operations after achievements import is finished
|
||||||
|
(like updating cache).
|
||||||
|
"""
|
||||||
|
|
||||||
async def get_local_games(self) -> List[LocalGame]:
|
async def get_local_games(self) -> List[LocalGame]:
|
||||||
"""Override this method to return the list of
|
"""Override this method to return the list of
|
||||||
games present locally on the users pc.
|
games present locally on the users pc.
|
||||||
@@ -595,7 +631,7 @@ class Plugin:
|
|||||||
identified by the provided game_id.
|
identified by the provided game_id.
|
||||||
This method is called by the GOG Galaxy Client.
|
This method is called by the GOG Galaxy Client.
|
||||||
|
|
||||||
:param str game_id: id of the game to launch
|
:param str game_id: the id of the game to launch
|
||||||
|
|
||||||
Example of possible override of the method:
|
Example of possible override of the method:
|
||||||
|
|
||||||
@@ -613,7 +649,7 @@ class Plugin:
|
|||||||
identified by the provided game_id.
|
identified by the provided game_id.
|
||||||
This method is called by the GOG Galaxy Client.
|
This method is called by the GOG Galaxy Client.
|
||||||
|
|
||||||
:param str game_id: id of the game to install
|
:param str game_id: the id of the game to install
|
||||||
|
|
||||||
Example of possible override of the method:
|
Example of possible override of the method:
|
||||||
|
|
||||||
@@ -631,7 +667,7 @@ class Plugin:
|
|||||||
identified by the provided game_id.
|
identified by the provided game_id.
|
||||||
This method is called by the GOG Galaxy Client.
|
This method is called by the GOG Galaxy Client.
|
||||||
|
|
||||||
:param str game_id: id of the game to uninstall
|
:param str game_id: the id of the game to uninstall
|
||||||
|
|
||||||
Example of possible override of the method:
|
Example of possible override of the method:
|
||||||
|
|
||||||
@@ -649,6 +685,11 @@ class Plugin:
|
|||||||
This method is called by the GOG Galaxy Client."""
|
This method is called by the GOG Galaxy Client."""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
async def launch_platform_client(self) -> None:
|
||||||
|
"""Override this method to launch platform client. Preferably minimized to tray.
|
||||||
|
This method is called by the GOG Galaxy Client."""
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
async def get_friends(self) -> List[FriendInfo]:
|
async def get_friends(self) -> List[FriendInfo]:
|
||||||
"""Override this method to return the friends list
|
"""Override this method to return the friends list
|
||||||
of the currently authenticated user.
|
of the currently authenticated user.
|
||||||
@@ -692,14 +733,22 @@ class Plugin:
|
|||||||
finally:
|
finally:
|
||||||
self._game_times_import_finished()
|
self._game_times_import_finished()
|
||||||
self._game_times_import_in_progress = False
|
self._game_times_import_in_progress = False
|
||||||
|
self.game_times_import_complete()
|
||||||
|
|
||||||
self.create_task(import_game_times(game_ids, context), "Game times import")
|
self._external_task_manager.create_task(
|
||||||
|
import_game_times(game_ids, context),
|
||||||
|
"game times import",
|
||||||
|
handle_exceptions=False
|
||||||
|
)
|
||||||
self._game_times_import_in_progress = True
|
self._game_times_import_in_progress = True
|
||||||
|
|
||||||
async def prepare_game_times_context(self, game_ids: List[str]) -> Any:
|
async def prepare_game_times_context(self, game_ids: List[str]) -> Any:
|
||||||
"""Override this method to prepare context for get_game_time.
|
"""Override this method to prepare context for get_game_time.
|
||||||
This allows for optimizations like batch requests to platform API.
|
This allows for optimizations like batch requests to platform API.
|
||||||
Default implementation returns None.
|
Default implementation returns None.
|
||||||
|
|
||||||
|
:param game_ids: the ids of the games for which game time are imported
|
||||||
|
:return: context
|
||||||
"""
|
"""
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -708,12 +757,74 @@ class Plugin:
|
|||||||
identified by the provided game_id.
|
identified by the provided game_id.
|
||||||
This method is called by import task initialized by GOG Galaxy Client.
|
This method is called by import task initialized by GOG Galaxy Client.
|
||||||
|
|
||||||
:param game_id:
|
:param game_id: the id of the game for which the game time is returned
|
||||||
:param context: Value return from :meth:`prepare_game_times_context`
|
:param context: the value returned from :meth:`prepare_game_times_context`
|
||||||
:return:
|
:return: GameTime object
|
||||||
"""
|
"""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def game_times_import_complete(self) -> None:
|
||||||
|
"""Override this method to handle operations after game times import is finished
|
||||||
|
(like updating cache).
|
||||||
|
"""
|
||||||
|
|
||||||
|
async def _start_game_library_settings_import(self, game_ids: List[str]) -> None:
|
||||||
|
if self._game_library_settings_import_in_progress:
|
||||||
|
raise ImportInProgress()
|
||||||
|
|
||||||
|
context = await self.prepare_game_library_settings_context(game_ids)
|
||||||
|
|
||||||
|
async def import_game_library_settings(game_id, context_):
|
||||||
|
try:
|
||||||
|
game_library_settings = await self.get_game_library_settings(game_id, context_)
|
||||||
|
self._game_library_settings_import_success(game_library_settings)
|
||||||
|
except ApplicationError as error:
|
||||||
|
self._game_library_settings_import_failure(game_id, error)
|
||||||
|
except Exception:
|
||||||
|
logging.exception("Unexpected exception raised in import_game_library_settings")
|
||||||
|
self._game_library_settings_import_failure(game_id, UnknownError())
|
||||||
|
|
||||||
|
async def import_game_library_settings_set(game_ids_, context_):
|
||||||
|
try:
|
||||||
|
imports = [import_game_library_settings(game_id, context_) for game_id in game_ids_]
|
||||||
|
await asyncio.gather(*imports)
|
||||||
|
finally:
|
||||||
|
self._game_library_settings_import_finished()
|
||||||
|
self._game_library_settings_import_in_progress = False
|
||||||
|
self.game_library_settings_import_complete()
|
||||||
|
|
||||||
|
self._external_task_manager.create_task(
|
||||||
|
import_game_library_settings_set(game_ids, context),
|
||||||
|
"game library settings import",
|
||||||
|
handle_exceptions=False
|
||||||
|
)
|
||||||
|
self._game_library_settings_import_in_progress = True
|
||||||
|
|
||||||
|
async def prepare_game_library_settings_context(self, game_ids: List[str]) -> Any:
|
||||||
|
"""Override this method to prepare context for get_game_library_settings.
|
||||||
|
This allows for optimizations like batch requests to platform API.
|
||||||
|
Default implementation returns None.
|
||||||
|
|
||||||
|
:param game_ids: the ids of the games for which game time are imported
|
||||||
|
:return: context
|
||||||
|
"""
|
||||||
|
return None
|
||||||
|
|
||||||
|
async def get_game_library_settings(self, game_id: str, context: Any) -> GameLibrarySettings:
|
||||||
|
"""Override this method to return the game library settings for the game
|
||||||
|
identified by the provided game_id.
|
||||||
|
This method is called by import task initialized by GOG Galaxy Client.
|
||||||
|
|
||||||
|
:param game_id: the id of the game for which the game time is returned
|
||||||
|
:param context: the value returned from :meth:`prepare_game_library_settings_context`
|
||||||
|
:return: GameLibrarySettings object
|
||||||
|
"""
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def game_library_settings_import_complete(self) -> None:
|
||||||
|
"""Override this method to handle operations after game times import is finished
|
||||||
|
(like updating cache).
|
||||||
|
"""
|
||||||
|
|
||||||
def create_and_run_plugin(plugin_class, argv):
|
def create_and_run_plugin(plugin_class, argv):
|
||||||
"""Call this method as an entry point for the implemented integration.
|
"""Call this method as an entry point for the implemented integration.
|
||||||
@@ -756,8 +867,8 @@ def create_and_run_plugin(plugin_class, argv):
|
|||||||
reader, writer = await asyncio.open_connection("127.0.0.1", port)
|
reader, writer = await asyncio.open_connection("127.0.0.1", port)
|
||||||
extra_info = writer.get_extra_info("sockname")
|
extra_info = writer.get_extra_info("sockname")
|
||||||
logging.info("Using local address: %s:%u", *extra_info)
|
logging.info("Using local address: %s:%u", *extra_info)
|
||||||
plugin = plugin_class(reader, writer, token)
|
async with plugin_class(reader, writer, token) as plugin:
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
|
|||||||
@@ -151,3 +151,15 @@ class GameTime():
|
|||||||
game_id: str
|
game_id: str
|
||||||
time_played: Optional[int]
|
time_played: Optional[int]
|
||||||
last_played_time: Optional[int]
|
last_played_time: Optional[int]
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class GameLibrarySettings():
|
||||||
|
"""Library settings of a game, defines assigned tags and visibility flag.
|
||||||
|
|
||||||
|
:param game_id: id of the related game
|
||||||
|
:param tags: collection of tags assigned to the game
|
||||||
|
:param hidden: indicates if the game should be hidden in GOG Galaxy application
|
||||||
|
"""
|
||||||
|
game_id: str
|
||||||
|
tags: Optional[List[str]]
|
||||||
|
hidden: Optional[bool]
|
||||||
|
|||||||
@@ -1,3 +1,34 @@
|
|||||||
|
"""
|
||||||
|
This module standarize http traffic and the error handling for further communication with the GOG Galaxy 2.0.
|
||||||
|
|
||||||
|
It is recommended to use provided convenient methods for HTTP requests, especially when dealing with authorized sessions.
|
||||||
|
Examplary simple web service could looks like:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
import logging
|
||||||
|
from galaxy.http import create_client_session, handle_exception
|
||||||
|
|
||||||
|
class BackendClient:
|
||||||
|
AUTH_URL = 'my-integration.com/auth'
|
||||||
|
HEADERS = {
|
||||||
|
"My-Custom-Header": "true",
|
||||||
|
}
|
||||||
|
def __init__(self):
|
||||||
|
self._session = create_client_session(headers=self.HEADERS)
|
||||||
|
|
||||||
|
async def authenticate(self):
|
||||||
|
await self._session.request('POST', self.AUTH_URL)
|
||||||
|
|
||||||
|
async def close(self):
|
||||||
|
# to be called on plugin shutdown
|
||||||
|
await self._session.close()
|
||||||
|
|
||||||
|
async def _authorized_request(self, method, url, *args, **kwargs):
|
||||||
|
with handle_exceptions():
|
||||||
|
return await self._session.request(method, url, *args, **kwargs)
|
||||||
|
"""
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import ssl
|
import ssl
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
@@ -13,17 +44,23 @@ from galaxy.api.errors import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
#: Default limit of the simultaneous connections for ssl connector.
|
||||||
DEFAULT_LIMIT = 20
|
DEFAULT_LIMIT = 20
|
||||||
DEFAULT_TIMEOUT = 60 # seconds
|
#: Default timeout in seconds used for client session.
|
||||||
|
DEFAULT_TIMEOUT = 60
|
||||||
|
|
||||||
|
|
||||||
class HttpClient:
|
class HttpClient:
|
||||||
"""Deprecated"""
|
"""
|
||||||
|
.. deprecated:: 0.41
|
||||||
|
Use http module functions instead
|
||||||
|
"""
|
||||||
def __init__(self, limit=DEFAULT_LIMIT, timeout=aiohttp.ClientTimeout(total=DEFAULT_TIMEOUT), cookie_jar=None):
|
def __init__(self, limit=DEFAULT_LIMIT, timeout=aiohttp.ClientTimeout(total=DEFAULT_TIMEOUT), cookie_jar=None):
|
||||||
connector = create_tcp_connector(limit=limit)
|
connector = create_tcp_connector(limit=limit)
|
||||||
self._session = create_client_session(connector=connector, timeout=timeout, cookie_jar=cookie_jar)
|
self._session = create_client_session(connector=connector, timeout=timeout, cookie_jar=cookie_jar)
|
||||||
|
|
||||||
async def close(self):
|
async def close(self):
|
||||||
|
"""Closes connection. Should be called in :meth:`~galaxy.api.plugin.Plugin.shutdown`"""
|
||||||
await self._session.close()
|
await self._session.close()
|
||||||
|
|
||||||
async def request(self, method, url, *args, **kwargs):
|
async def request(self, method, url, *args, **kwargs):
|
||||||
@@ -31,23 +68,50 @@ class HttpClient:
|
|||||||
return await self._session.request(method, url, *args, **kwargs)
|
return await self._session.request(method, url, *args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
def create_tcp_connector(*args, **kwargs):
|
def create_tcp_connector(*args, **kwargs) -> aiohttp.TCPConnector:
|
||||||
|
"""
|
||||||
|
Creates TCP connector with resonable defaults.
|
||||||
|
For details about available parameters refer to
|
||||||
|
`aiohttp.TCPConnector <https://docs.aiohttp.org/en/stable/client_reference.html#tcpconnector>`_
|
||||||
|
"""
|
||||||
ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
|
ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
|
||||||
ssl_context.load_verify_locations(certifi.where())
|
ssl_context.load_verify_locations(certifi.where())
|
||||||
kwargs.setdefault("ssl", ssl_context)
|
kwargs.setdefault("ssl", ssl_context)
|
||||||
kwargs.setdefault("limit", DEFAULT_LIMIT)
|
kwargs.setdefault("limit", DEFAULT_LIMIT)
|
||||||
return aiohttp.TCPConnector(*args, **kwargs)
|
return aiohttp.TCPConnector(*args, **kwargs) # type: ignore due to https://github.com/python/mypy/issues/4001
|
||||||
|
|
||||||
|
|
||||||
def create_client_session(*args, **kwargs):
|
def create_client_session(*args, **kwargs) -> aiohttp.ClientSession:
|
||||||
|
"""
|
||||||
|
Creates client session with resonable defaults.
|
||||||
|
For details about available parameters refer to
|
||||||
|
`aiohttp.ClientSession <https://docs.aiohttp.org/en/stable/client_reference.html>`_
|
||||||
|
|
||||||
|
Examplary customization:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
from galaxy.http import create_client_session, create_tcp_connector
|
||||||
|
|
||||||
|
session = create_client_session(
|
||||||
|
headers={
|
||||||
|
"Keep-Alive": "true"
|
||||||
|
},
|
||||||
|
connector=create_tcp_connector(limit=40),
|
||||||
|
timeout=100)
|
||||||
|
"""
|
||||||
kwargs.setdefault("connector", create_tcp_connector())
|
kwargs.setdefault("connector", create_tcp_connector())
|
||||||
kwargs.setdefault("timeout", aiohttp.ClientTimeout(total=DEFAULT_TIMEOUT))
|
kwargs.setdefault("timeout", aiohttp.ClientTimeout(total=DEFAULT_TIMEOUT))
|
||||||
kwargs.setdefault("raise_for_status", True)
|
kwargs.setdefault("raise_for_status", True)
|
||||||
return aiohttp.ClientSession(*args, **kwargs)
|
return aiohttp.ClientSession(*args, **kwargs) # type: ignore due to https://github.com/python/mypy/issues/4001
|
||||||
|
|
||||||
|
|
||||||
@contextmanager
|
@contextmanager
|
||||||
def handle_exception():
|
def handle_exception():
|
||||||
|
"""
|
||||||
|
Context manager translating network related exceptions
|
||||||
|
to custom :mod:`~galaxy.api.errors`.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
yield
|
yield
|
||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
@@ -78,4 +142,3 @@ def handle_exception():
|
|||||||
except aiohttp.ClientError:
|
except aiohttp.ClientError:
|
||||||
logging.exception("Caught exception while performing request")
|
logging.exception("Caught exception while performing request")
|
||||||
raise UnknownError()
|
raise UnknownError()
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
import platform
|
import sys
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from typing import Iterable, NewType, Optional, Set
|
from typing import Iterable, NewType, Optional, List, cast
|
||||||
|
|
||||||
|
|
||||||
def is_windows():
|
|
||||||
return platform.system() == "Windows"
|
|
||||||
|
|
||||||
|
|
||||||
ProcessId = NewType("ProcessId", int)
|
ProcessId = NewType("ProcessId", int)
|
||||||
|
|
||||||
@@ -16,7 +13,7 @@ class ProcessInfo:
|
|||||||
binary_path: Optional[str]
|
binary_path: Optional[str]
|
||||||
|
|
||||||
|
|
||||||
if is_windows():
|
if sys.platform == "win32":
|
||||||
from ctypes import byref, sizeof, windll, create_unicode_buffer, FormatError, WinError
|
from ctypes import byref, sizeof, windll, create_unicode_buffer, FormatError, WinError
|
||||||
from ctypes.wintypes import DWORD
|
from ctypes.wintypes import DWORD
|
||||||
|
|
||||||
@@ -25,14 +22,14 @@ if is_windows():
|
|||||||
_PROC_ID_T = DWORD
|
_PROC_ID_T = DWORD
|
||||||
list_size = 4096
|
list_size = 4096
|
||||||
|
|
||||||
def try_get_pids(list_size: int) -> Set[ProcessId]:
|
def try_get_pids(list_size: int) -> List[ProcessId]:
|
||||||
result_size = DWORD()
|
result_size = DWORD()
|
||||||
proc_id_list = (_PROC_ID_T * list_size)()
|
proc_id_list = (_PROC_ID_T * list_size)()
|
||||||
|
|
||||||
if not windll.psapi.EnumProcesses(byref(proc_id_list), sizeof(proc_id_list), byref(result_size)):
|
if not windll.psapi.EnumProcesses(byref(proc_id_list), sizeof(proc_id_list), byref(result_size)):
|
||||||
raise WinError(descr="Failed to get process ID list: %s" % FormatError())
|
raise WinError(descr="Failed to get process ID list: %s" % FormatError()) # type: ignore
|
||||||
|
|
||||||
return proc_id_list[:int(result_size.value / sizeof(_PROC_ID_T()))]
|
return cast(List[ProcessId], proc_id_list[:int(result_size.value / sizeof(_PROC_ID_T()))])
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
proc_ids = try_get_pids(list_size)
|
proc_ids = try_get_pids(list_size)
|
||||||
@@ -59,7 +56,7 @@ if is_windows():
|
|||||||
exe_path_buffer = create_unicode_buffer(_MAX_PATH)
|
exe_path_buffer = create_unicode_buffer(_MAX_PATH)
|
||||||
exe_path_len = DWORD(len(exe_path_buffer))
|
exe_path_len = DWORD(len(exe_path_buffer))
|
||||||
|
|
||||||
return exe_path_buffer[:exe_path_len.value] if windll.kernel32.QueryFullProcessImageNameW(
|
return cast(str, exe_path_buffer[:exe_path_len.value]) if windll.kernel32.QueryFullProcessImageNameW(
|
||||||
h_process, _WIN32_PATH_FORMAT, exe_path_buffer, byref(exe_path_len)
|
h_process, _WIN32_PATH_FORMAT, exe_path_buffer, byref(exe_path_len)
|
||||||
) else None
|
) else None
|
||||||
|
|
||||||
@@ -86,6 +83,6 @@ else:
|
|||||||
return process_info
|
return process_info
|
||||||
|
|
||||||
|
|
||||||
def process_iter() -> Iterable[ProcessInfo]:
|
def process_iter() -> Iterable[Optional[ProcessInfo]]:
|
||||||
for pid in pids():
|
for pid in pids():
|
||||||
yield get_process_info(pid)
|
yield get_process_info(pid)
|
||||||
|
|||||||
98
src/galaxy/registry_monitor.py
Normal file
98
src/galaxy/registry_monitor.py
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
import sys
|
||||||
|
if sys.platform == "win32":
|
||||||
|
import logging
|
||||||
|
import ctypes
|
||||||
|
from ctypes.wintypes import LONG, HKEY, LPCWSTR, DWORD, BOOL, HANDLE, LPVOID
|
||||||
|
|
||||||
|
LPSECURITY_ATTRIBUTES = LPVOID
|
||||||
|
|
||||||
|
RegOpenKeyEx = ctypes.windll.advapi32.RegOpenKeyExW
|
||||||
|
RegOpenKeyEx.restype = LONG
|
||||||
|
RegOpenKeyEx.argtypes = [HKEY, LPCWSTR, DWORD, DWORD, ctypes.POINTER(HKEY)]
|
||||||
|
|
||||||
|
RegCloseKey = ctypes.windll.advapi32.RegCloseKey
|
||||||
|
RegCloseKey.restype = LONG
|
||||||
|
RegCloseKey.argtypes = [HKEY]
|
||||||
|
|
||||||
|
RegNotifyChangeKeyValue = ctypes.windll.advapi32.RegNotifyChangeKeyValue
|
||||||
|
RegNotifyChangeKeyValue.restype = LONG
|
||||||
|
RegNotifyChangeKeyValue.argtypes = [HKEY, BOOL, DWORD, HANDLE, BOOL]
|
||||||
|
|
||||||
|
CloseHandle = ctypes.windll.kernel32.CloseHandle
|
||||||
|
CloseHandle.restype = BOOL
|
||||||
|
CloseHandle.argtypes = [HANDLE]
|
||||||
|
|
||||||
|
CreateEvent = ctypes.windll.kernel32.CreateEventW
|
||||||
|
CreateEvent.restype = BOOL
|
||||||
|
CreateEvent.argtypes = [LPSECURITY_ATTRIBUTES, BOOL, BOOL, LPCWSTR]
|
||||||
|
|
||||||
|
WaitForSingleObject = ctypes.windll.kernel32.WaitForSingleObject
|
||||||
|
WaitForSingleObject.restype = DWORD
|
||||||
|
WaitForSingleObject.argtypes = [HANDLE, DWORD]
|
||||||
|
|
||||||
|
ERROR_SUCCESS = 0x00000000
|
||||||
|
|
||||||
|
KEY_READ = 0x00020019
|
||||||
|
KEY_QUERY_VALUE = 0x00000001
|
||||||
|
|
||||||
|
REG_NOTIFY_CHANGE_NAME = 0x00000001
|
||||||
|
REG_NOTIFY_CHANGE_LAST_SET = 0x00000004
|
||||||
|
|
||||||
|
WAIT_OBJECT_0 = 0x00000000
|
||||||
|
WAIT_TIMEOUT = 0x00000102
|
||||||
|
|
||||||
|
class RegistryMonitor:
|
||||||
|
|
||||||
|
def __init__(self, root, subkey):
|
||||||
|
self._root = root
|
||||||
|
self._subkey = subkey
|
||||||
|
self._event = CreateEvent(None, False, False, None)
|
||||||
|
|
||||||
|
self._key = None
|
||||||
|
self._open_key()
|
||||||
|
if self._key:
|
||||||
|
self._set_key_update_notification()
|
||||||
|
|
||||||
|
def close(self):
|
||||||
|
CloseHandle(self._event)
|
||||||
|
if self._key:
|
||||||
|
RegCloseKey(self._key)
|
||||||
|
self._key = None
|
||||||
|
|
||||||
|
def is_updated(self):
|
||||||
|
wait_result = WaitForSingleObject(self._event, 0)
|
||||||
|
|
||||||
|
# previously watched
|
||||||
|
if wait_result == WAIT_OBJECT_0:
|
||||||
|
self._set_key_update_notification()
|
||||||
|
return True
|
||||||
|
|
||||||
|
# no changes or no key before
|
||||||
|
if wait_result != WAIT_TIMEOUT:
|
||||||
|
# unexpected error
|
||||||
|
logging.warning("Unexpected WaitForSingleObject result %s", wait_result)
|
||||||
|
return False
|
||||||
|
|
||||||
|
if self._key is None:
|
||||||
|
self._open_key()
|
||||||
|
|
||||||
|
if self._key is None:
|
||||||
|
return False
|
||||||
|
|
||||||
|
self._set_key_update_notification()
|
||||||
|
return True
|
||||||
|
|
||||||
|
def _set_key_update_notification(self):
|
||||||
|
filter_ = REG_NOTIFY_CHANGE_NAME | REG_NOTIFY_CHANGE_LAST_SET
|
||||||
|
status = RegNotifyChangeKeyValue(self._key, True, filter_, self._event, True)
|
||||||
|
if status != ERROR_SUCCESS:
|
||||||
|
# key was deleted
|
||||||
|
RegCloseKey(self._key)
|
||||||
|
self._key = None
|
||||||
|
|
||||||
|
def _open_key(self):
|
||||||
|
access = KEY_QUERY_VALUE | KEY_READ
|
||||||
|
self._key = HKEY()
|
||||||
|
rc = RegOpenKeyEx(self._root, self._subkey, 0, access, ctypes.byref(self._key))
|
||||||
|
if rc != ERROR_SUCCESS:
|
||||||
|
self._key = None
|
||||||
49
src/galaxy/task_manager.py
Normal file
49
src/galaxy/task_manager.py
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
import asyncio
|
||||||
|
import logging
|
||||||
|
from collections import OrderedDict
|
||||||
|
from itertools import count
|
||||||
|
|
||||||
|
class TaskManager:
|
||||||
|
def __init__(self, name):
|
||||||
|
self._name = name
|
||||||
|
self._tasks = OrderedDict()
|
||||||
|
self._task_counter = count()
|
||||||
|
|
||||||
|
def create_task(self, coro, description, handle_exceptions=True):
|
||||||
|
"""Wrapper around asyncio.create_task - takes care of canceling tasks on shutdown"""
|
||||||
|
|
||||||
|
async def task_wrapper(task_id):
|
||||||
|
try:
|
||||||
|
result = await coro
|
||||||
|
logging.debug("Task manager %s: finished task %d (%s)", self._name, task_id, description)
|
||||||
|
return result
|
||||||
|
except asyncio.CancelledError:
|
||||||
|
if handle_exceptions:
|
||||||
|
logging.debug("Task manager %s: canceled task %d (%s)", self._name, task_id, description)
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
except Exception:
|
||||||
|
if handle_exceptions:
|
||||||
|
logging.exception("Task manager %s: exception raised in task %d (%s)", self._name, task_id, description)
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
finally:
|
||||||
|
del self._tasks[task_id]
|
||||||
|
|
||||||
|
task_id = next(self._task_counter)
|
||||||
|
logging.debug("Task manager %s: creating task %d (%s)", self._name, task_id, description)
|
||||||
|
task = asyncio.create_task(task_wrapper(task_id))
|
||||||
|
self._tasks[task_id] = task
|
||||||
|
return task
|
||||||
|
|
||||||
|
def cancel(self):
|
||||||
|
for task in self._tasks.values():
|
||||||
|
task.cancel()
|
||||||
|
|
||||||
|
async def wait(self):
|
||||||
|
# Tasks can spawn other tasks
|
||||||
|
while True:
|
||||||
|
tasks = self._tasks.values()
|
||||||
|
if not tasks:
|
||||||
|
return
|
||||||
|
await asyncio.gather(*tasks, return_exceptions=True)
|
||||||
@@ -4,8 +4,8 @@ from unittest.mock import MagicMock
|
|||||||
|
|
||||||
class AsyncMock(MagicMock):
|
class AsyncMock(MagicMock):
|
||||||
"""
|
"""
|
||||||
..deprecated:: 0.45
|
.. deprecated:: 0.45
|
||||||
Use: :class:`MagicMock` with meth:`~.async_return_value`.
|
Use: :class:`MagicMock` with meth:`~.async_return_value`.
|
||||||
"""
|
"""
|
||||||
async def __call__(self, *args, **kwargs):
|
async def __call__(self, *args, **kwargs):
|
||||||
return super(AsyncMock, self).__call__(*args, **kwargs)
|
return super(AsyncMock, self).__call__(*args, **kwargs)
|
||||||
@@ -13,8 +13,8 @@ class AsyncMock(MagicMock):
|
|||||||
|
|
||||||
def coroutine_mock():
|
def coroutine_mock():
|
||||||
"""
|
"""
|
||||||
..deprecated:: 0.45
|
.. deprecated:: 0.45
|
||||||
Use: :class:`MagicMock` with meth:`~.async_return_value`.
|
Use: :class:`MagicMock` with meth:`~.async_return_value`.
|
||||||
"""
|
"""
|
||||||
coro = MagicMock(name="CoroutineResult")
|
coro = MagicMock(name="CoroutineResult")
|
||||||
corofunc = MagicMock(name="CoroutineFunction", side_effect=asyncio.coroutine(coro))
|
corofunc = MagicMock(name="CoroutineFunction", side_effect=asyncio.coroutine(coro))
|
||||||
|
|||||||
@@ -7,11 +7,8 @@ def create_message(request):
|
|||||||
|
|
||||||
def get_messages(write_mock):
|
def get_messages(write_mock):
|
||||||
messages = []
|
messages = []
|
||||||
print("call_args_list", write_mock.call_args_list)
|
|
||||||
for call_args in write_mock.call_args_list:
|
for call_args in write_mock.call_args_list:
|
||||||
print("call_args", call_args)
|
|
||||||
data = call_args[0][0]
|
data = call_args[0][0]
|
||||||
print("data", data)
|
|
||||||
for line in data.splitlines():
|
for line in data.splitlines():
|
||||||
message = json.loads(line)
|
message = json.loads(line)
|
||||||
messages.append(message)
|
messages.append(message)
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import pytest
|
|||||||
|
|
||||||
from galaxy.api.plugin import Plugin
|
from galaxy.api.plugin import Plugin
|
||||||
from galaxy.api.consts import Platform
|
from galaxy.api.consts import Platform
|
||||||
|
from galaxy.unittest.mock import async_return_value
|
||||||
|
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
def reader():
|
def reader():
|
||||||
@@ -16,8 +17,7 @@ def reader():
|
|||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
async def writer():
|
async def writer():
|
||||||
stream = MagicMock(name="stream_writer")
|
stream = MagicMock(name="stream_writer")
|
||||||
stream.write = MagicMock()
|
stream.drain.side_effect = lambda: async_return_value(None)
|
||||||
stream.drain = MagicMock()
|
|
||||||
yield stream
|
yield stream
|
||||||
|
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
@@ -29,7 +29,7 @@ def write(writer):
|
|||||||
yield writer.write
|
yield writer.write
|
||||||
|
|
||||||
@pytest.fixture()
|
@pytest.fixture()
|
||||||
def plugin(reader, writer):
|
async def plugin(reader, writer):
|
||||||
"""Return plugin instance with all feature methods mocked"""
|
"""Return plugin instance with all feature methods mocked"""
|
||||||
methods = (
|
methods = (
|
||||||
"handshake_complete",
|
"handshake_complete",
|
||||||
@@ -37,22 +37,31 @@ def plugin(reader, writer):
|
|||||||
"get_owned_games",
|
"get_owned_games",
|
||||||
"prepare_achievements_context",
|
"prepare_achievements_context",
|
||||||
"get_unlocked_achievements",
|
"get_unlocked_achievements",
|
||||||
|
"achievements_import_complete",
|
||||||
"get_local_games",
|
"get_local_games",
|
||||||
"launch_game",
|
"launch_game",
|
||||||
|
"launch_platform_client",
|
||||||
"install_game",
|
"install_game",
|
||||||
"uninstall_game",
|
"uninstall_game",
|
||||||
"get_friends",
|
"get_friends",
|
||||||
"get_game_time",
|
"get_game_time",
|
||||||
"prepare_game_times_context",
|
"prepare_game_times_context",
|
||||||
|
"game_times_import_complete",
|
||||||
"shutdown_platform_client",
|
"shutdown_platform_client",
|
||||||
"shutdown",
|
"shutdown",
|
||||||
"tick"
|
"tick",
|
||||||
|
"get_game_library_settings",
|
||||||
|
"prepare_game_library_settings_context",
|
||||||
|
"game_library_settings_import_complete",
|
||||||
)
|
)
|
||||||
|
|
||||||
with ExitStack() as stack:
|
with ExitStack() as stack:
|
||||||
for method in methods:
|
for method in methods:
|
||||||
stack.enter_context(patch.object(Plugin, method))
|
stack.enter_context(patch.object(Plugin, method))
|
||||||
yield Plugin(Platform.Generic, "0.1", reader, writer, "token")
|
|
||||||
|
async with Plugin(Platform.Generic, "0.1", reader, writer, "token") as plugin:
|
||||||
|
plugin.shutdown.return_value = async_return_value(None)
|
||||||
|
yield plugin
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ async def test_get_unlocked_achievements_success(plugin, read, write):
|
|||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.prepare_achievements_context.assert_called_with(["14"])
|
plugin.prepare_achievements_context.assert_called_with(["14"])
|
||||||
plugin.get_unlocked_achievements.assert_called_with("14", 5)
|
plugin.get_unlocked_achievements.assert_called_with("14", 5)
|
||||||
|
plugin.achievements_import_complete.asert_called_with()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
assert get_messages(write) == [
|
||||||
{
|
{
|
||||||
@@ -97,6 +98,7 @@ async def test_get_unlocked_achievements_error(exception, code, message, plugin,
|
|||||||
plugin.get_unlocked_achievements.side_effect = exception
|
plugin.get_unlocked_achievements.side_effect = exception
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.get_unlocked_achievements.assert_called()
|
plugin.get_unlocked_achievements.assert_called()
|
||||||
|
plugin.achievements_import_complete.asert_called_with()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
assert get_messages(write) == [
|
||||||
{
|
{
|
||||||
@@ -133,7 +135,8 @@ async def test_prepare_get_unlocked_achievements_context_error(plugin, read, wri
|
|||||||
"game_ids": ["14"]
|
"game_ids": ["14"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
|
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
assert get_messages(write) == [
|
||||||
@@ -151,6 +154,7 @@ async def test_prepare_get_unlocked_achievements_context_error(plugin, read, wri
|
|||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_import_in_progress(plugin, read, write):
|
async def test_import_in_progress(plugin, read, write):
|
||||||
plugin.prepare_achievements_context.return_value = async_return_value(None)
|
plugin.prepare_achievements_context.return_value = async_return_value(None)
|
||||||
|
plugin.get_unlocked_achievements.return_value = async_return_value([])
|
||||||
requests = [
|
requests = [
|
||||||
{
|
{
|
||||||
"jsonrpc": "2.0",
|
"jsonrpc": "2.0",
|
||||||
@@ -172,26 +176,25 @@ async def test_import_in_progress(plugin, read, write):
|
|||||||
read.side_effect = [
|
read.side_effect = [
|
||||||
async_return_value(create_message(requests[0])),
|
async_return_value(create_message(requests[0])),
|
||||||
async_return_value(create_message(requests[1])),
|
async_return_value(create_message(requests[1])),
|
||||||
async_return_value(b"")
|
async_return_value(b"", 10)
|
||||||
]
|
]
|
||||||
|
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
messages = get_messages(write)
|
||||||
{
|
assert {
|
||||||
"jsonrpc": "2.0",
|
"jsonrpc": "2.0",
|
||||||
"id": "3",
|
"id": "3",
|
||||||
"result": None
|
"result": None
|
||||||
},
|
} in messages
|
||||||
{
|
assert {
|
||||||
"jsonrpc": "2.0",
|
"jsonrpc": "2.0",
|
||||||
"id": "4",
|
"id": "4",
|
||||||
"error": {
|
"error": {
|
||||||
"code": 600,
|
"code": 600,
|
||||||
"message": "Import already in progress"
|
"message": "Import already in progress"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
} in messages
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ async def test_success(plugin, read, write):
|
|||||||
"id": "3",
|
"id": "3",
|
||||||
"method": "init_authentication"
|
"method": "init_authentication"
|
||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
plugin.authenticate.return_value = async_return_value(Authentication("132", "Zenek"))
|
plugin.authenticate.return_value = async_return_value(Authentication("132", "Zenek"))
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.authenticate.assert_called_with()
|
plugin.authenticate.assert_called_with()
|
||||||
@@ -55,7 +55,7 @@ async def test_failure(plugin, read, write, error, code, message):
|
|||||||
"method": "init_authentication"
|
"method": "init_authentication"
|
||||||
}
|
}
|
||||||
|
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
plugin.authenticate.side_effect = error()
|
plugin.authenticate.side_effect = error()
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.authenticate.assert_called_with()
|
plugin.authenticate.assert_called_with()
|
||||||
@@ -84,7 +84,7 @@ async def test_stored_credentials(plugin, read, write):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
plugin.authenticate.return_value = async_return_value(Authentication("132", "Zenek"))
|
plugin.authenticate.return_value = async_return_value(Authentication("132", "Zenek"))
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.authenticate.assert_called_with(stored_credentials={"token": "ABC"})
|
plugin.authenticate.assert_called_with(stored_credentials={"token": "ABC"})
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ def test_base_class():
|
|||||||
Feature.ImportAchievements,
|
Feature.ImportAchievements,
|
||||||
Feature.ImportGameTime,
|
Feature.ImportGameTime,
|
||||||
Feature.ImportFriends,
|
Feature.ImportFriends,
|
||||||
Feature.ShutdownPlatformClient
|
Feature.ShutdownPlatformClient,
|
||||||
|
Feature.LaunchPlatformClient,
|
||||||
|
Feature.ImportGameLibrarySettings
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ async def test_get_friends_success(plugin, read, write):
|
|||||||
"method": "import_friends"
|
"method": "import_friends"
|
||||||
}
|
}
|
||||||
|
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
plugin.get_friends.return_value = async_return_value([
|
plugin.get_friends.return_value = async_return_value([
|
||||||
FriendInfo("3", "Jan"),
|
FriendInfo("3", "Jan"),
|
||||||
FriendInfo("5", "Ola")
|
FriendInfo("5", "Ola")
|
||||||
@@ -45,7 +45,7 @@ async def test_get_friends_failure(plugin, read, write):
|
|||||||
"method": "import_friends"
|
"method": "import_friends"
|
||||||
}
|
}
|
||||||
|
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
plugin.get_friends.side_effect = UnknownError()
|
plugin.get_friends.side_effect = UnknownError()
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.get_friends.assert_called_with()
|
plugin.get_friends.assert_called_with()
|
||||||
|
|||||||
196
tests/test_game_library_settings.py
Normal file
196
tests/test_game_library_settings.py
Normal file
@@ -0,0 +1,196 @@
|
|||||||
|
from unittest.mock import call
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from galaxy.api.types import GameLibrarySettings
|
||||||
|
from galaxy.api.errors import BackendError
|
||||||
|
from galaxy.unittest.mock import async_return_value
|
||||||
|
|
||||||
|
from tests import create_message, get_messages
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_get_game_time_success(plugin, read, write):
|
||||||
|
plugin.prepare_game_library_settings_context.return_value = async_return_value("abc")
|
||||||
|
request = {
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"method": "start_game_library_settings_import",
|
||||||
|
"params": {
|
||||||
|
"game_ids": ["3", "5", "7"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
|
plugin.get_game_library_settings.side_effect = [
|
||||||
|
async_return_value(GameLibrarySettings("3", None, True)),
|
||||||
|
async_return_value(GameLibrarySettings("5", [], False)),
|
||||||
|
async_return_value(GameLibrarySettings("7", ["tag1", "tag2", "tag3"], None)),
|
||||||
|
]
|
||||||
|
await plugin.run()
|
||||||
|
plugin.get_game_library_settings.assert_has_calls([
|
||||||
|
call("3", "abc"),
|
||||||
|
call("5", "abc"),
|
||||||
|
call("7", "abc"),
|
||||||
|
])
|
||||||
|
plugin.game_library_settings_import_complete.assert_called_once_with()
|
||||||
|
|
||||||
|
assert get_messages(write) == [
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"result": None
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "game_library_settings_import_success",
|
||||||
|
"params": {
|
||||||
|
"game_library_settings": {
|
||||||
|
"game_id": "3",
|
||||||
|
"hidden": True
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "game_library_settings_import_success",
|
||||||
|
"params": {
|
||||||
|
"game_library_settings": {
|
||||||
|
"game_id": "5",
|
||||||
|
"tags": [],
|
||||||
|
"hidden": False
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "game_library_settings_import_success",
|
||||||
|
"params": {
|
||||||
|
"game_library_settings": {
|
||||||
|
"game_id": "7",
|
||||||
|
"tags": ["tag1", "tag2", "tag3"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "game_library_settings_import_finished",
|
||||||
|
"params": None
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
@pytest.mark.parametrize("exception,code,message", [
|
||||||
|
(BackendError, 4, "Backend error"),
|
||||||
|
(KeyError, 0, "Unknown error")
|
||||||
|
])
|
||||||
|
async def test_get_game_library_settings_error(exception, code, message, plugin, read, write):
|
||||||
|
plugin.prepare_game_library_settings_context.return_value = async_return_value(None)
|
||||||
|
request = {
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"method": "start_game_library_settings_import",
|
||||||
|
"params": {
|
||||||
|
"game_ids": ["6"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
|
plugin.get_game_library_settings.side_effect = exception
|
||||||
|
await plugin.run()
|
||||||
|
plugin.get_game_library_settings.assert_called()
|
||||||
|
plugin.game_library_settings_import_complete.assert_called_once_with()
|
||||||
|
|
||||||
|
assert get_messages(write) == [
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"result": None
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "game_library_settings_import_failure",
|
||||||
|
"params": {
|
||||||
|
"game_id": "6",
|
||||||
|
"error": {
|
||||||
|
"code": code,
|
||||||
|
"message": message
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "game_library_settings_import_finished",
|
||||||
|
"params": None
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_prepare_get_game_library_settings_context_error(plugin, read, write):
|
||||||
|
plugin.prepare_game_library_settings_context.side_effect = BackendError()
|
||||||
|
request = {
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"method": "start_game_library_settings_import",
|
||||||
|
"params": {
|
||||||
|
"game_ids": ["6"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
|
await plugin.run()
|
||||||
|
|
||||||
|
assert get_messages(write) == [
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"error": {
|
||||||
|
"code": 4,
|
||||||
|
"message": "Backend error"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_import_in_progress(plugin, read, write):
|
||||||
|
plugin.prepare_game_library_settings_context.return_value = async_return_value(None)
|
||||||
|
requests = [
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"method": "start_game_library_settings_import",
|
||||||
|
"params": {
|
||||||
|
"game_ids": ["6"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "4",
|
||||||
|
"method": "start_game_library_settings_import",
|
||||||
|
"params": {
|
||||||
|
"game_ids": ["7"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
read.side_effect = [
|
||||||
|
async_return_value(create_message(requests[0])),
|
||||||
|
async_return_value(create_message(requests[1])),
|
||||||
|
async_return_value(b"", 10)
|
||||||
|
]
|
||||||
|
|
||||||
|
await plugin.run()
|
||||||
|
|
||||||
|
messages = get_messages(write)
|
||||||
|
assert {
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "3",
|
||||||
|
"result": None
|
||||||
|
} in messages
|
||||||
|
assert {
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"id": "4",
|
||||||
|
"error": {
|
||||||
|
"code": 600,
|
||||||
|
"message": "Import already in progress"
|
||||||
|
}
|
||||||
|
} in messages
|
||||||
|
|
||||||
@@ -31,6 +31,7 @@ async def test_get_game_time_success(plugin, read, write):
|
|||||||
call("5", "abc"),
|
call("5", "abc"),
|
||||||
call("7", "abc"),
|
call("7", "abc"),
|
||||||
])
|
])
|
||||||
|
plugin.game_times_import_complete.assert_called_once_with()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
assert get_messages(write) == [
|
||||||
{
|
{
|
||||||
@@ -96,6 +97,7 @@ async def test_get_game_time_error(exception, code, message, plugin, read, write
|
|||||||
plugin.get_game_time.side_effect = exception
|
plugin.get_game_time.side_effect = exception
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.get_game_time.assert_called()
|
plugin.get_game_time.assert_called()
|
||||||
|
plugin.game_times_import_complete.assert_called_once_with()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
assert get_messages(write) == [
|
||||||
{
|
{
|
||||||
@@ -133,7 +135,7 @@ async def test_prepare_get_game_time_context_error(plugin, read, write):
|
|||||||
"game_ids": ["6"]
|
"game_ids": ["6"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
assert get_messages(write) == [
|
||||||
@@ -172,26 +174,25 @@ async def test_import_in_progress(plugin, read, write):
|
|||||||
read.side_effect = [
|
read.side_effect = [
|
||||||
async_return_value(create_message(requests[0])),
|
async_return_value(create_message(requests[0])),
|
||||||
async_return_value(create_message(requests[1])),
|
async_return_value(create_message(requests[1])),
|
||||||
async_return_value(b"")
|
async_return_value(b"", 10)
|
||||||
]
|
]
|
||||||
|
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
|
|
||||||
assert get_messages(write) == [
|
messages = get_messages(write)
|
||||||
{
|
assert {
|
||||||
"jsonrpc": "2.0",
|
"jsonrpc": "2.0",
|
||||||
"id": "3",
|
"id": "3",
|
||||||
"result": None
|
"result": None
|
||||||
},
|
} in messages
|
||||||
{
|
assert {
|
||||||
"jsonrpc": "2.0",
|
"jsonrpc": "2.0",
|
||||||
"id": "4",
|
"id": "4",
|
||||||
"error": {
|
"error": {
|
||||||
"code": 600,
|
"code": 600,
|
||||||
"message": "Import already in progress"
|
"message": "Import already in progress"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
} in messages
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ from http import HTTPStatus
|
|||||||
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import pytest
|
import pytest
|
||||||
|
from multidict import CIMultiDict, CIMultiDictProxy
|
||||||
|
from yarl import URL
|
||||||
|
|
||||||
from galaxy.api.errors import (
|
from galaxy.api.errors import (
|
||||||
AccessDenied, AuthenticationRequired, BackendTimeout, BackendNotAvailable, BackendError, NetworkError,
|
AccessDenied, AuthenticationRequired, BackendTimeout, BackendNotAvailable, BackendError, NetworkError,
|
||||||
@@ -10,7 +12,7 @@ from galaxy.api.errors import (
|
|||||||
)
|
)
|
||||||
from galaxy.http import handle_exception
|
from galaxy.http import handle_exception
|
||||||
|
|
||||||
request_info = aiohttp.RequestInfo("http://o.pl", "GET", {})
|
request_info = aiohttp.RequestInfo(URL("http://o.pl"), "GET", CIMultiDictProxy(CIMultiDict()))
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"aiohttp_exception,expected_exception_type",
|
"aiohttp_exception,expected_exception_type",
|
||||||
@@ -18,15 +20,15 @@ request_info = aiohttp.RequestInfo("http://o.pl", "GET", {})
|
|||||||
(asyncio.TimeoutError(), BackendTimeout),
|
(asyncio.TimeoutError(), BackendTimeout),
|
||||||
(aiohttp.ServerDisconnectedError(), BackendNotAvailable),
|
(aiohttp.ServerDisconnectedError(), BackendNotAvailable),
|
||||||
(aiohttp.ClientConnectionError(), NetworkError),
|
(aiohttp.ClientConnectionError(), NetworkError),
|
||||||
(aiohttp.ContentTypeError(request_info, []), UnknownBackendResponse),
|
(aiohttp.ContentTypeError(request_info, ()), UnknownBackendResponse),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.UNAUTHORIZED), AuthenticationRequired),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.UNAUTHORIZED), AuthenticationRequired),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.FORBIDDEN), AccessDenied),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.FORBIDDEN), AccessDenied),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.SERVICE_UNAVAILABLE), BackendNotAvailable),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.SERVICE_UNAVAILABLE), BackendNotAvailable),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.TOO_MANY_REQUESTS), TooManyRequests),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.TOO_MANY_REQUESTS), TooManyRequests),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.INTERNAL_SERVER_ERROR), BackendError),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.INTERNAL_SERVER_ERROR), BackendError),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.NOT_IMPLEMENTED), BackendError),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.NOT_IMPLEMENTED), BackendError),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.BAD_REQUEST), UnknownError),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.BAD_REQUEST), UnknownError),
|
||||||
(aiohttp.ClientResponseError(request_info, [], status=HTTPStatus.NOT_FOUND), UnknownError),
|
(aiohttp.ClientResponseError(request_info, (), status=HTTPStatus.NOT_FOUND), UnknownError),
|
||||||
(aiohttp.ClientError(), UnknownError)
|
(aiohttp.ClientError(), UnknownError)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ async def test_shutdown(plugin, read, write):
|
|||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request))]
|
read.side_effect = [async_return_value(create_message(request))]
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
|
await plugin.wait_closed()
|
||||||
plugin.shutdown.assert_called_with()
|
plugin.shutdown.assert_called_with()
|
||||||
assert get_messages(write) == [
|
assert get_messages(write) == [
|
||||||
{
|
{
|
||||||
|
|||||||
17
tests/test_launch_platform_client.py
Normal file
17
tests/test_launch_platform_client.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
import pytest
|
||||||
|
|
||||||
|
from galaxy.unittest.mock import async_return_value
|
||||||
|
|
||||||
|
from tests import create_message
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_success(plugin, read):
|
||||||
|
request = {
|
||||||
|
"jsonrpc": "2.0",
|
||||||
|
"method": "launch_platform_client"
|
||||||
|
}
|
||||||
|
|
||||||
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
||||||
|
plugin.launch_platform_client.return_value = async_return_value(None)
|
||||||
|
await plugin.run()
|
||||||
|
plugin.launch_platform_client.assert_called_with()
|
||||||
@@ -15,7 +15,7 @@ async def test_success(plugin, read, write):
|
|||||||
"id": "3",
|
"id": "3",
|
||||||
"method": "import_local_games"
|
"method": "import_local_games"
|
||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
|
|
||||||
plugin.get_local_games.return_value = async_return_value([
|
plugin.get_local_games.return_value = async_return_value([
|
||||||
LocalGame("1", LocalGameState.Running),
|
LocalGame("1", LocalGameState.Running),
|
||||||
@@ -63,7 +63,7 @@ async def test_failure(plugin, read, write, error, code, message):
|
|||||||
"id": "3",
|
"id": "3",
|
||||||
"method": "import_local_games"
|
"method": "import_local_games"
|
||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
plugin.get_local_games.side_effect = error()
|
plugin.get_local_games.side_effect = error()
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.get_local_games.assert_called_with()
|
plugin.get_local_games.assert_called_with()
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ async def test_success(plugin, read, write):
|
|||||||
"id": "3",
|
"id": "3",
|
||||||
"method": "import_owned_games"
|
"method": "import_owned_games"
|
||||||
}
|
}
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
|
|
||||||
plugin.get_owned_games.return_value = async_return_value([
|
plugin.get_owned_games.return_value = async_return_value([
|
||||||
Game("3", "Doom", None, LicenseInfo(LicenseType.SinglePurchase, None)),
|
Game("3", "Doom", None, LicenseInfo(LicenseType.SinglePurchase, None)),
|
||||||
@@ -80,7 +80,7 @@ async def test_failure(plugin, read, write):
|
|||||||
"method": "import_owned_games"
|
"method": "import_owned_games"
|
||||||
}
|
}
|
||||||
|
|
||||||
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"")]
|
read.side_effect = [async_return_value(create_message(request)), async_return_value(b"", 10)]
|
||||||
plugin.get_owned_games.side_effect = UnknownError()
|
plugin.get_owned_games.side_effect = UnknownError()
|
||||||
await plugin.run()
|
await plugin.run()
|
||||||
plugin.get_owned_games.assert_called_with()
|
plugin.get_owned_games.assert_called_with()
|
||||||
|
|||||||
Reference in New Issue
Block a user