test-wireproto.py
98 lines
| 2.2 KiB
| text/x-python
|
PythonLexer
/ tests / test-wireproto.py
Pulkit Goyal
|
r28675 | from __future__ import absolute_import, print_function | ||
Gregory Szorc
|
r27301 | |||
timeless
|
r28860 | from mercurial import ( | ||
Gregory Szorc
|
r36091 | error, | ||
Pulkit Goyal
|
r36573 | pycompat, | ||
Augie Fackler
|
r36962 | ui as uimod, | ||
timeless
|
r28861 | util, | ||
timeless
|
r28860 | wireproto, | ||
Gregory Szorc
|
r36091 | wireprototypes, | ||
timeless
|
r28860 | ) | ||
timeless
|
r28861 | stringio = util.stringio | ||
Thomas Arendsen Hein
|
r14765 | |||
class proto(object): | ||||
def __init__(self, args): | ||||
self.args = args | ||||
Gregory Szorc
|
r37311 | self.name = 'dummyproto' | ||
Thomas Arendsen Hein
|
r14765 | def getargs(self, spec): | ||
args = self.args | ||||
Pulkit Goyal
|
r36573 | args.setdefault(b'*', {}) | ||
Thomas Arendsen Hein
|
r14765 | names = spec.split() | ||
return [args[n] for n in names] | ||||
Gregory Szorc
|
r36819 | def checkperm(self, perm): | ||
pass | ||||
Gregory Szorc
|
r37311 | wireprototypes.TRANSPORTS['dummyproto'] = { | ||
'transport': 'dummy', | ||||
'version': 1, | ||||
} | ||||
Peter Arrenbrecht
|
r17192 | class clientpeer(wireproto.wirepeer): | ||
Augie Fackler
|
r36962 | def __init__(self, serverrepo, ui): | ||
Thomas Arendsen Hein
|
r14765 | self.serverrepo = serverrepo | ||
Gregory Szorc
|
r37337 | self.ui = ui | ||
Gregory Szorc
|
r33805 | |||
def url(self): | ||||
Pulkit Goyal
|
r36573 | return b'test' | ||
Gregory Szorc
|
r33805 | |||
def local(self): | ||||
return None | ||||
def peer(self): | ||||
return self | ||||
def canpush(self): | ||||
return True | ||||
def close(self): | ||||
pass | ||||
def capabilities(self): | ||||
Pulkit Goyal
|
r36573 | return [b'batch'] | ||
Augie Fackler
|
r25912 | |||
Thomas Arendsen Hein
|
r14765 | def _call(self, cmd, **args): | ||
Pulkit Goyal
|
r36573 | args = pycompat.byteskwargs(args) | ||
Gregory Szorc
|
r36091 | res = wireproto.dispatch(self.serverrepo, proto(args), cmd) | ||
if isinstance(res, wireprototypes.bytesresponse): | ||||
return res.data | ||||
elif isinstance(res, bytes): | ||||
return res | ||||
else: | ||||
raise error.Abort('dummy client does not support response type') | ||||
Thomas Arendsen Hein
|
r14765 | |||
Augie Fackler
|
r28438 | def _callstream(self, cmd, **args): | ||
timeless
|
r28861 | return stringio(self._call(cmd, **args)) | ||
Augie Fackler
|
r28438 | |||
Thomas Arendsen Hein
|
r14765 | @wireproto.batchable | ||
def greet(self, name): | ||||
f = wireproto.future() | ||||
Pulkit Goyal
|
r36573 | yield {b'name': mangle(name)}, f | ||
Thomas Arendsen Hein
|
r14765 | yield unmangle(f.value) | ||
class serverrepo(object): | ||||
def greet(self, name): | ||||
Pulkit Goyal
|
r36573 | return b"Hello, " + name | ||
Thomas Arendsen Hein
|
r14765 | |||
Pierre-Yves David
|
r18278 | def filtered(self, name): | ||
return self | ||||
Thomas Arendsen Hein
|
r14765 | def mangle(s): | ||
Pulkit Goyal
|
r36573 | return b''.join(pycompat.bytechr(ord(c) + 1) for c in pycompat.bytestr(s)) | ||
Thomas Arendsen Hein
|
r14765 | def unmangle(s): | ||
Pulkit Goyal
|
r36573 | return b''.join(pycompat.bytechr(ord(c) - 1) for c in pycompat.bytestr(s)) | ||
Thomas Arendsen Hein
|
r14765 | |||
def greet(repo, proto, name): | ||||
return mangle(repo.greet(unmangle(name))) | ||||
Pulkit Goyal
|
r36573 | wireproto.commands[b'greet'] = (greet, b'name',) | ||
Thomas Arendsen Hein
|
r14765 | |||
srv = serverrepo() | ||||
Augie Fackler
|
r36962 | clt = clientpeer(srv, uimod.ui()) | ||
Thomas Arendsen Hein
|
r14765 | |||
Pulkit Goyal
|
r36573 | print(clt.greet(b"Foobar")) | ||
Gregory Szorc
|
r33762 | b = clt.iterbatch() | ||
Pulkit Goyal
|
r36573 | list(map(b.greet, (b'Fo, =;:<o', b'Bar'))) | ||
Thomas Arendsen Hein
|
r14765 | b.submit() | ||
Gregory Szorc
|
r33762 | print([r for r in b.results()]) | ||