本文整理匯總了Python中flexget.plugins.plugin_rtorrent.RTorrent.load方法的典型用法代碼示例。如果您正苦於以下問題:Python RTorrent.load方法的具體用法?Python RTorrent.load怎麽用?Python RTorrent.load使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類flexget.plugins.plugin_rtorrent.RTorrent
的用法示例。
在下文中一共展示了RTorrent.load方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_load
# 需要導入模塊: from flexget.plugins.plugin_rtorrent import RTorrent [as 別名]
# 或者: from flexget.plugins.plugin_rtorrent.RTorrent import load [as 別名]
def test_load(self, mocked_proxy):
mocked_proxy = mocked_proxy()
mocked_proxy.execute.throw.return_value = 0
mocked_proxy.load.raw_start.return_value = 0
client = RTorrent('http://localhost/RPC2')
resp = client.load(
torrent_raw,
fields={'priority': 3, 'directory': '/data/downloads', 'custom1': 'testing'},
start=True,
mkdir=True,
)
assert resp == 0
# Ensure mkdir was called
mocked_proxy.execute.throw.assert_called_with('', 'mkdir', '-p', '/data/downloads')
# Ensure load was called
assert mocked_proxy.load.raw_start.called
match_binary = Matcher(compare_binary, xmlrpc_client.Binary(torrent_raw))
called_args = mocked_proxy.load.raw_start.call_args_list[0][0]
assert len(called_args) == 5
assert '' == called_args[0]
assert match_binary in called_args
fields = [p for p in called_args[2:]]
assert len(fields) == 3
assert 'd.directory.set=\\/data\\/downloads' in fields
assert 'd.custom1.set=testing' in fields
assert 'd.priority.set=3' in fields
示例2: test_load
# 需要導入模塊: from flexget.plugins.plugin_rtorrent import RTorrent [as 別名]
# 或者: from flexget.plugins.plugin_rtorrent.RTorrent import load [as 別名]
def test_load(self, mocked_proxy):
mocked_proxy = mocked_proxy()
mocked_proxy.execute.throw.return_value = 0
mocked_proxy.load.raw_start.return_value = 0
client = RTorrent('http://localhost/RPC2')
resp = client.load(
torrent_raw,
fields={'priority': 3, 'directory': '/data/downloads', 'custom1': 'test_custom1'},
start=True,
mkdir=True,
)
assert resp == 0
# Ensure mkdir was called
mocked_proxy.execute.throw.assert_called_with('', 'mkdir', '-p', '/data/downloads')
# Ensure load was called
match_binary = Matcher(compare_binary, xmlrpclib.Binary(torrent_raw))
mocked_proxy.load.raw_start.assert_called_with(
'',
match_binary,
'd.priority.set=3',
'd.directory.set=\\/data\\/downloads',
'd.custom1.set=test\\_custom1'
)