本文整理匯總了Python中tornado.ioloop.TimeoutError方法的典型用法代碼示例。如果您正苦於以下問題:Python ioloop.TimeoutError方法的具體用法?Python ioloop.TimeoutError怎麽用?Python ioloop.TimeoutError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類tornado.ioloop
的用法示例。
在下文中一共展示了ioloop.TimeoutError方法的14個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
# Set a short timeout and exceed it.
@gen_test(timeout=0.1)
def test(self):
yield gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)
# This can't use assertRaises because we need to inspect the
# exc_info triple (and not just the exception object)
try:
test(self)
self.fail("did not get expected exception")
except ioloop.TimeoutError:
# The stack trace should blame the add_timeout line, not just
# unrelated IOLoop/testing internals.
self.assertIn(
"gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)",
traceback.format_exc())
self.finished = True
示例2: open
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def open(self, timeout=None):
logger.debug('socket connecting')
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0)
self.stream = iostream.IOStream(sock)
try:
connect = self.stream.connect((self.host, self.port))
if timeout is not None:
yield self.with_timeout(timeout, connect)
else:
yield connect
except (socket.error, IOError, ioloop.TimeoutError) as e:
message = 'could not connect to {}:{} ({})'.format(self.host, self.port, e)
raise TTransportException(
type=TTransportException.NOT_OPEN,
message=message)
raise gen.Return(self)
示例3: test_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
# Set a short timeout and exceed it.
@gen_test(timeout=0.1)
def test(self):
yield gen.sleep(1)
# This can't use assertRaises because we need to inspect the
# exc_info triple (and not just the exception object)
try:
test(self)
self.fail("did not get expected exception")
except ioloop.TimeoutError:
# The stack trace should blame the add_timeout line, not just
# unrelated IOLoop/testing internals.
self.assertIn("gen.sleep(1)", traceback.format_exc())
self.finished = True
示例4: test_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
# Set a short timeout and exceed it.
@gen_test(timeout=0.1)
def test(self):
yield gen.sleep(1)
# This can't use assertRaises because we need to inspect the
# exc_info triple (and not just the exception object)
try:
test(self)
self.fail("did not get expected exception")
except ioloop.TimeoutError:
# The stack trace should blame the add_timeout line, not just
# unrelated IOLoop/testing internals.
self.assertIn(
"gen.sleep(1)",
traceback.format_exc())
self.finished = True
示例5: open
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def open(self, timeout=None):
logger.debug('koneksi ke server')
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0)
self.stream = iostream.IOStream(sock)
try:
connect = self.stream.connect((self.host, self.port))
if timeout is not None:
yield self.with_timeout(timeout, connect)
else:
yield connect
except (socket.error, IOError, ioloop.TimeoutError) as e:
message = 'could not connect to {}:{} ({})'.format(self.host, self.port, e)
raise TTransportException(
type=TTransportException.NOT_OPEN,
message=message)
raise gen.Return(self)
示例6: test_no_timeout_environment_variable
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_no_timeout_environment_variable(self):
@gen_test(timeout=0.01)
def test_short_timeout(self):
time = self.io_loop.time
yield gen.Task(self.io_loop.add_timeout, time() + 1)
# Uses environment-variable timeout of 0.1, times out.
with set_environ('ASYNC_TEST_TIMEOUT', '0.1'):
with self.assertRaises(ioloop.TimeoutError):
test_short_timeout(self)
self.finished = True
示例7: test_native_coroutine_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_native_coroutine_timeout(self):
# Set a short timeout and exceed it.
namespace = exec_test(globals(), locals(), """
@gen_test(timeout=0.1)
async def test(self):
await gen.sleep(1)
""")
try:
namespace['test'](self)
self.fail("did not get expected exception")
except ioloop.TimeoutError:
self.finished = True
示例8: test_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
@gen.coroutine
def f():
yield gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)
self.assertRaises(TimeoutError, self.io_loop.run_sync, f, timeout=0.01)
示例9: test_no_timeout_environment_variable
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_no_timeout_environment_variable(self):
@gen_test(timeout=0.01)
def test_short_timeout(self):
yield gen.sleep(1)
# Uses environment-variable timeout of 0.1, times out.
with set_environ("ASYNC_TEST_TIMEOUT", "0.1"):
with self.assertRaises(ioloop.TimeoutError):
test_short_timeout(self)
self.finished = True
示例10: test_native_coroutine_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_native_coroutine_timeout(self):
# Set a short timeout and exceed it.
@gen_test(timeout=0.1)
async def test(self):
await gen.sleep(1)
try:
test(self)
self.fail("did not get expected exception")
except ioloop.TimeoutError:
self.finished = True
示例11: test_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
@gen.coroutine
def f():
yield gen.sleep(1)
self.assertRaises(TimeoutError, self.io_loop.run_sync, f, timeout=0.01)
示例12: test_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
# Set a short timeout and exceed it.
@gen_test(timeout=0.1)
def test(self):
yield gen.Task(self.io_loop.add_timeout, self.io_loop.time() + 1)
with self.assertRaises(ioloop.TimeoutError):
test(self)
self.finished = True
示例13: test_no_timeout_environment_variable
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_no_timeout_environment_variable(self):
@gen_test(timeout=0.01)
def test_short_timeout(self):
yield gen.sleep(1)
# Uses environment-variable timeout of 0.1, times out.
with set_environ('ASYNC_TEST_TIMEOUT', '0.1'):
with self.assertRaises(ioloop.TimeoutError):
test_short_timeout(self)
self.finished = True
示例14: test_timeout
# 需要導入模塊: from tornado import ioloop [as 別名]
# 或者: from tornado.ioloop import TimeoutError [as 別名]
def test_timeout(self):
@gen.coroutine
def f():
yield gen.sleep(1)
self.assertRaises(TimeoutError, self.io_loop.run_sync, f, timeout=0.01)