本文整理汇总了Python中twisted.web.test.requesthelper.DummyRequest.args方法的典型用法代码示例。如果您正苦于以下问题:Python DummyRequest.args方法的具体用法?Python DummyRequest.args怎么用?Python DummyRequest.args使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类twisted.web.test.requesthelper.DummyRequest
的用法示例。
在下文中一共展示了DummyRequest.args方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_sync_cancel
# 需要导入模块: from twisted.web.test.requesthelper import DummyRequest [as 别名]
# 或者: from twisted.web.test.requesthelper.DummyRequest import args [as 别名]
def test_sync_cancel(self):
'''Test that the controller doesn't try to render when the request is cancelled.'''
reactor = self.buildReactor()
stub_transcriber = StubTranscriber()
controller = TranscriptionsController(stub_transcriber, reactor=reactor)
req = DummyRequest([])
req.method = 'POST'
req.args = {'transcript': [''], 'audio': [''], 'async': ['false']}
controller.render(req)
req.processingFailed(
Failure(ConnectionDone("Simulated disconnect")))
reactor.callWhenRunning(reactor.stop)
self.runReactor(reactor)
assert_equals(req.finished, 0)
示例2: test_async
# 需要导入模块: from twisted.web.test.requesthelper import DummyRequest [as 别名]
# 或者: from twisted.web.test.requesthelper.DummyRequest import args [as 别名]
def test_async(self):
'''Test the redirect works when async=true'''
reactor = self.buildReactor()
uid = 'myuid'
want_location = '/transcriptions/' + uid
stub_transcriber = StubTranscriber(uid_stub=uid)
controller = TranscriptionsController(stub_transcriber, reactor=reactor)
req = DummyRequest([])
req.method = 'POST'
req.args = {'transcript': [''], 'audio': ['']}
body = controller.render(req)
assert_equals(body, '')
assert 'location' in req.outgoingHeaders
got_location = req.outgoingHeaders['location']
assert_equals(want_location, got_location)
示例3: test_sync
# 需要导入模块: from twisted.web.test.requesthelper import DummyRequest [as 别名]
# 或者: from twisted.web.test.requesthelper.DummyRequest import args [as 别名]
def test_sync(self):
'''Test the threading/transcription works when async=false'''
reactor = self.buildReactor()
expected = {'some': 'result'}
stub_transcriber = StubTranscriber(transcribe_stub=expected)
controller = TranscriptionsController(stub_transcriber, reactor=reactor)
req = DummyRequest([])
req.method = 'POST'
req.args = {'transcript': [''], 'audio': [''], 'async': ['false']}
finish = req.notifyFinish()
finish.addCallback(lambda _: reactor.callWhenRunning(reactor.stop))
body = controller.render(req)
assert_equals(body, NOT_DONE_YET)
self.runReactor(reactor, timeout=1)
assert_equals(len(req.written), 1)
got = json.loads(req.written[0])
assert_equals(got, expected)