blob: f0dcbee86ab0d15450641ed8aa79c3c1f60913a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#
# Copyright (C) 2015 Calum Lind <calumlind@gmail.com>
# Copyright (C) 2010 Pedro Algarvio <ufs@ufsoft.org>
#
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
# the additional special exception to link portions of this program with the OpenSSL library.
# See LICENSE for more details.
#
import logging
import warnings
from deluge.conftest import BaseTestCase
from deluge.log import setup_logger
class TestLog(BaseTestCase):
def set_up(self):
setup_logger(logging.DEBUG)
def tear_down(self):
setup_logger('none')
def test_old_log_deprecation_warning(self):
from deluge.log import LOG
with warnings.catch_warnings(record=True) as w:
# Cause all warnings to always be triggered.
warnings.simplefilter('always')
LOG.debug('foo')
assert w[-1].category == DeprecationWarning
# def test_twisted_error_log(self):
# from twisted.internet import defer
# import deluge.component as component
# from deluge.core.eventmanager import EventManager
# EventManager()
#
# d = component.start()
#
# @defer.inlineCallbacks
# def call(*args):
# yield component.pause(["EventManager"])
# yield component.start(["EventManager"])
#
# d.addCallback(call)
# return d
|