tenfourfox/testing/puppeteer/firefox/firefox_puppeteer/decorators.py
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

36 lines
1.2 KiB
Python

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
from functools import wraps
from importlib import import_module
class use_class_as_property(object):
"""
This decorator imports a library module and sets an instance
of the associated class as an attribute on the Puppeteer
object and returns it.
Note: return value of the wrapped function is ignored.
"""
def __init__(self, lib):
self.lib = lib
self.mod_name, self.cls_name = self.lib.rsplit('.', 1)
def __call__(self, func):
@property
@wraps(func)
def _(cls, *args, **kwargs):
tag = '_{}_{}'.format(self.mod_name, self.cls_name)
prop = getattr(cls, tag, None)
if not prop:
module = import_module('.{}'.format(self.mod_name),
'firefox_puppeteer')
prop = getattr(module, self.cls_name)(cls.get_marionette)
setattr(cls, tag, prop)
func(cls, *args, **kwargs)
return prop
return _