test-commandserver.t
648 lines
| 18.9 KiB
| text/troff
|
Tads3Lexer
/ tests / test-commandserver.t
Yuya Nishihara
|
r22568 | #if windows | ||
$ PYTHONPATH="$TESTDIR/../contrib;$PYTHONPATH" | ||||
#else | ||||
$ PYTHONPATH="$TESTDIR/../contrib:$PYTHONPATH" | ||||
#endif | ||||
$ export PYTHONPATH | ||||
Yuya Nishihara
|
r23053 | typical client does not want echo-back messages, so test without it: | ||
$ grep -v '^promptecho ' < $HGRCPATH >> $HGRCPATH.new | ||||
$ mv $HGRCPATH.new $HGRCPATH | ||||
Yuya Nishihara
|
r22568 | $ hg init repo | ||
$ cd repo | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def hellomessage(server): | ||||
... ch, data = readchannel(server) | ||||
Yuya Nishihara
|
r22571 | ... print '%c, %r' % (ch, data) | ||
Yuya Nishihara
|
r22568 | ... # run an arbitrary command to make sure the next thing the server | ||
... # sends isn't part of the hello message | ||||
... runcommand(server, ['id']) | ||||
Yuya Nishihara
|
r23036 | o, 'capabilities: getencoding runcommand\nencoding: *\npid: *' (glob) | ||
Yuya Nishihara
|
r22572 | *** runcommand id | ||
Yuya Nishihara
|
r22567 | 000000000000 tip | ||
Yuya Nishihara
|
r22568 | |||
>>> from hgclient import check | ||||
>>> @check | ||||
... def unknowncommand(server): | ||||
... server.stdin.write('unknowncommand\n') | ||||
Yuya Nishihara
|
r22567 | abort: unknown command unknowncommand | ||
Yuya Nishihara
|
r22568 | |||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def checkruncommand(server): | ||||
... # hello block | ||||
... readchannel(server) | ||||
... | ||||
... # no args | ||||
... runcommand(server, []) | ||||
... | ||||
... # global options | ||||
... runcommand(server, ['id', '--quiet']) | ||||
... | ||||
... # make sure global options don't stick through requests | ||||
... runcommand(server, ['id']) | ||||
... | ||||
... # --config | ||||
... runcommand(server, ['id', '--config', 'ui.quiet=True']) | ||||
... | ||||
... # make sure --config doesn't stick | ||||
... runcommand(server, ['id']) | ||||
... | ||||
... # negative return code should be masked | ||||
... runcommand(server, ['id', '-runknown']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand | ||
Yuya Nishihara
|
r22567 | Mercurial Distributed SCM | ||
basic commands: | ||||
add add the specified files on the next commit | ||||
annotate show changeset information by line for each file | ||||
clone make a copy of an existing repository | ||||
commit commit the specified files or all outstanding changes | ||||
diff diff repository (or selected files) | ||||
export dump the header and diffs for one or more changesets | ||||
forget forget the specified files on the next commit | ||||
init create a new repository in the given directory | ||||
log show revision history of entire repository or files | ||||
anatoly techtonik
|
r23400 | merge merge another revision into working directory | ||
Yuya Nishihara
|
r22567 | pull pull changes from the specified source | ||
push push changes to the specified destination | ||||
remove remove the specified files on the next commit | ||||
serve start stand-alone webserver | ||||
status show changed files in the working directory | ||||
summary summarize working directory state | ||||
update update working directory (or switch revisions) | ||||
(use "hg help" for the full list of commands or "hg -v" for details) | ||||
Yuya Nishihara
|
r22572 | *** runcommand id --quiet | ||
Yuya Nishihara
|
r22567 | 000000000000 | ||
Yuya Nishihara
|
r22572 | *** runcommand id | ||
Yuya Nishihara
|
r22567 | 000000000000 tip | ||
Yuya Nishihara
|
r22572 | *** runcommand id --config ui.quiet=True | ||
Yuya Nishihara
|
r22567 | 000000000000 | ||
Yuya Nishihara
|
r22572 | *** runcommand id | ||
Yuya Nishihara
|
r22567 | 000000000000 tip | ||
Yuya Nishihara
|
r22572 | *** runcommand id -runknown | ||
Yuya Nishihara
|
r22567 | abort: unknown revision 'unknown'! | ||
[255] | ||||
Yuya Nishihara
|
r22568 | |||
>>> from hgclient import readchannel, check | ||||
>>> @check | ||||
... def inputeof(server): | ||||
... readchannel(server) | ||||
... server.stdin.write('runcommand\n') | ||||
... # close stdin while server is waiting for input | ||||
... server.stdin.close() | ||||
... | ||||
... # server exits with 1 if the pipe closed while reading the command | ||||
... print 'server exit code =', server.wait() | ||||
Yuya Nishihara
|
r22567 | server exit code = 1 | ||
Yuya Nishihara
|
r22568 | |||
>>> import cStringIO | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def serverinput(server): | ||||
... readchannel(server) | ||||
... | ||||
... patch = """ | ||||
... # HG changeset patch | ||||
... # User test | ||||
... # Date 0 0 | ||||
... # Node ID c103a3dec114d882c98382d684d8af798d09d857 | ||||
... # Parent 0000000000000000000000000000000000000000 | ||||
... 1 | ||||
... | ||||
... diff -r 000000000000 -r c103a3dec114 a | ||||
... --- /dev/null Thu Jan 01 00:00:00 1970 +0000 | ||||
... +++ b/a Thu Jan 01 00:00:00 1970 +0000 | ||||
... @@ -0,0 +1,1 @@ | ||||
... +1 | ||||
... """ | ||||
... | ||||
... runcommand(server, ['import', '-'], input=cStringIO.StringIO(patch)) | ||||
... runcommand(server, ['log']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand import - | ||
Yuya Nishihara
|
r22567 | applying patch from stdin | ||
Yuya Nishihara
|
r22572 | *** runcommand log | ||
Yuya Nishihara
|
r22567 | changeset: 0:eff892de26ec | ||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: 1 | ||||
Yuya Nishihara
|
r22568 | |||
check that --cwd doesn't persist between requests: | ||||
$ mkdir foo | ||||
$ touch foo/bar | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def cwd(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['--cwd', 'foo', 'st', 'bar']) | ||||
... runcommand(server, ['st', 'foo/bar']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand --cwd foo st bar | ||
Yuya Nishihara
|
r22567 | ? bar | ||
Yuya Nishihara
|
r22572 | *** runcommand st foo/bar | ||
Yuya Nishihara
|
r22567 | ? foo/bar | ||
Yuya Nishihara
|
r22568 | |||
$ rm foo/bar | ||||
check that local configs for the cached repo aren't inherited when -R is used: | ||||
$ cat <<EOF >> .hg/hgrc | ||||
> [ui] | ||||
> foo = bar | ||||
> EOF | ||||
>>> from hgclient import readchannel, sep, runcommand, check | ||||
>>> @check | ||||
... def localhgrc(server): | ||||
... readchannel(server) | ||||
... | ||||
... # the cached repo local hgrc contains ui.foo=bar, so showconfig should | ||||
... # show it | ||||
... runcommand(server, ['showconfig'], outfilter=sep) | ||||
... | ||||
... # but not for this repo | ||||
... runcommand(server, ['init', 'foo']) | ||||
... runcommand(server, ['-R', 'foo', 'showconfig', 'ui', 'defaults']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand showconfig | ||
Yuya Nishihara
|
r22567 | bundle.mainreporoot=$TESTTMP/repo | ||
defaults.backout=-d "0 0" | ||||
defaults.commit=-d "0 0" | ||||
defaults.shelve=--date "0 0" | ||||
defaults.tag=-d "0 0" | ||||
Matt Harbison
|
r23388 | largefiles.usercache=$TESTTMP/.cache/largefiles | ||
Yuya Nishihara
|
r22567 | ui.slash=True | ||
ui.interactive=False | ||||
ui.mergemarkers=detailed | ||||
ui.foo=bar | ||||
ui.nontty=true | ||||
Yuya Nishihara
|
r22572 | *** runcommand init foo | ||
*** runcommand -R foo showconfig ui defaults | ||||
Yuya Nishihara
|
r22567 | defaults.backout=-d "0 0" | ||
defaults.commit=-d "0 0" | ||||
defaults.shelve=--date "0 0" | ||||
defaults.tag=-d "0 0" | ||||
ui.slash=True | ||||
ui.interactive=False | ||||
ui.mergemarkers=detailed | ||||
ui.nontty=true | ||||
Yuya Nishihara
|
r22568 | |||
$ rm -R foo | ||||
#if windows | ||||
$ PYTHONPATH="$TESTTMP/repo;$PYTHONPATH" | ||||
#else | ||||
$ PYTHONPATH="$TESTTMP/repo:$PYTHONPATH" | ||||
#endif | ||||
$ cat <<EOF > hook.py | ||||
> import sys | ||||
> def hook(**args): | ||||
> print 'hook talking' | ||||
> print 'now try to read something: %r' % sys.stdin.read() | ||||
> EOF | ||||
>>> import cStringIO | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def hookoutput(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['--config', | ||||
... 'hooks.pre-identify=python:hook.hook', | ||||
... 'id'], | ||||
... input=cStringIO.StringIO('some input')) | ||||
Yuya Nishihara
|
r22572 | *** runcommand --config hooks.pre-identify=python:hook.hook id | ||
Yuya Nishihara
|
r22567 | hook talking | ||
now try to read something: 'some input' | ||||
eff892de26ec tip | ||||
Yuya Nishihara
|
r22568 | |||
$ rm hook.py* | ||||
$ echo a >> a | ||||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def outsidechanges(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['status']) | ||||
... os.system('hg ci -Am2') | ||||
... runcommand(server, ['tip']) | ||||
... runcommand(server, ['status']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand status | ||
Yuya Nishihara
|
r22567 | M a | ||
Yuya Nishihara
|
r22572 | *** runcommand tip | ||
Yuya Nishihara
|
r22567 | changeset: 1:d3a0a68be6de | ||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: 2 | ||||
Yuya Nishihara
|
r22572 | *** runcommand status | ||
Yuya Nishihara
|
r22568 | |||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def bookmarks(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['bookmarks']) | ||||
... | ||||
... # changes .hg/bookmarks | ||||
... os.system('hg bookmark -i bm1') | ||||
... os.system('hg bookmark -i bm2') | ||||
... runcommand(server, ['bookmarks']) | ||||
... | ||||
... # changes .hg/bookmarks.current | ||||
... os.system('hg upd bm1 -q') | ||||
... runcommand(server, ['bookmarks']) | ||||
... | ||||
... runcommand(server, ['bookmarks', 'bm3']) | ||||
... f = open('a', 'ab') | ||||
... f.write('a\n') | ||||
... f.close() | ||||
... runcommand(server, ['commit', '-Amm']) | ||||
... runcommand(server, ['bookmarks']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand bookmarks | ||
Yuya Nishihara
|
r22567 | no bookmarks set | ||
Yuya Nishihara
|
r22572 | *** runcommand bookmarks | ||
Yuya Nishihara
|
r22567 | bm1 1:d3a0a68be6de | ||
bm2 1:d3a0a68be6de | ||||
Yuya Nishihara
|
r22572 | *** runcommand bookmarks | ||
Yuya Nishihara
|
r22567 | * bm1 1:d3a0a68be6de | ||
bm2 1:d3a0a68be6de | ||||
Yuya Nishihara
|
r22572 | *** runcommand bookmarks bm3 | ||
*** runcommand commit -Amm | ||||
*** runcommand bookmarks | ||||
Yuya Nishihara
|
r22567 | bm1 1:d3a0a68be6de | ||
bm2 1:d3a0a68be6de | ||||
* bm3 2:aef17e88f5f0 | ||||
Yuya Nishihara
|
r22568 | |||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def tagscache(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['id', '-t', '-r', '0']) | ||||
... os.system('hg tag -r 0 foo') | ||||
... runcommand(server, ['id', '-t', '-r', '0']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand id -t -r 0 | ||
Yuya Nishihara
|
r22567 | |||
Yuya Nishihara
|
r22572 | *** runcommand id -t -r 0 | ||
Yuya Nishihara
|
r22567 | foo | ||
Yuya Nishihara
|
r22568 | |||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def setphase(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['phase', '-r', '.']) | ||||
... os.system('hg phase -r . -p') | ||||
... runcommand(server, ['phase', '-r', '.']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand phase -r . | ||
Yuya Nishihara
|
r22567 | 3: draft | ||
Yuya Nishihara
|
r22572 | *** runcommand phase -r . | ||
Yuya Nishihara
|
r22567 | 3: public | ||
Yuya Nishihara
|
r22568 | |||
$ echo a >> a | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def rollback(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['phase', '-r', '.', '-p']) | ||||
... runcommand(server, ['commit', '-Am.']) | ||||
... runcommand(server, ['rollback']) | ||||
... runcommand(server, ['phase', '-r', '.']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand phase -r . -p | ||
Yuya Nishihara
|
r22567 | no phases changed | ||
[1] | ||||
Yuya Nishihara
|
r22572 | *** runcommand commit -Am. | ||
*** runcommand rollback | ||||
Yuya Nishihara
|
r22567 | repository tip rolled back to revision 3 (undo commit) | ||
working directory now based on revision 3 | ||||
Yuya Nishihara
|
r22572 | *** runcommand phase -r . | ||
Yuya Nishihara
|
r22567 | 3: public | ||
Yuya Nishihara
|
r22568 | |||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def branch(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['branch']) | ||||
... os.system('hg branch foo') | ||||
... runcommand(server, ['branch']) | ||||
... os.system('hg branch default') | ||||
Yuya Nishihara
|
r22572 | *** runcommand branch | ||
Yuya Nishihara
|
r22567 | default | ||
marked working directory as branch foo | ||||
(branches are permanent and global, did you want a bookmark?) | ||||
Yuya Nishihara
|
r22572 | *** runcommand branch | ||
Yuya Nishihara
|
r22567 | foo | ||
marked working directory as branch default | ||||
(branches are permanent and global, did you want a bookmark?) | ||||
Yuya Nishihara
|
r22568 | |||
$ touch .hgignore | ||||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def hgignore(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['commit', '-Am.']) | ||||
... f = open('ignored-file', 'ab') | ||||
... f.write('') | ||||
... f.close() | ||||
... f = open('.hgignore', 'ab') | ||||
... f.write('ignored-file') | ||||
... f.close() | ||||
... runcommand(server, ['status', '-i', '-u']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand commit -Am. | ||
Yuya Nishihara
|
r22567 | adding .hgignore | ||
Yuya Nishihara
|
r22572 | *** runcommand status -i -u | ||
Yuya Nishihara
|
r22567 | I ignored-file | ||
Yuya Nishihara
|
r22568 | |||
>>> import os | ||||
>>> from hgclient import readchannel, sep, runcommand, check | ||||
>>> @check | ||||
... def phasecacheafterstrip(server): | ||||
... readchannel(server) | ||||
... | ||||
... # create new head, 5:731265503d86 | ||||
... runcommand(server, ['update', '-C', '0']) | ||||
... f = open('a', 'ab') | ||||
... f.write('a\n') | ||||
... f.close() | ||||
... runcommand(server, ['commit', '-Am.', 'a']) | ||||
... runcommand(server, ['log', '-Gq']) | ||||
... | ||||
... # make it public; draft marker moves to 4:7966c8e3734d | ||||
... runcommand(server, ['phase', '-p', '.']) | ||||
... # load _phasecache.phaseroots | ||||
... runcommand(server, ['phase', '.'], outfilter=sep) | ||||
... | ||||
... # strip 1::4 outside server | ||||
... os.system('hg -q --config extensions.mq= strip 1') | ||||
... | ||||
... # shouldn't raise "7966c8e3734d: no node!" | ||||
... runcommand(server, ['branches']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand update -C 0 | ||
Yuya Nishihara
|
r22567 | 1 files updated, 0 files merged, 2 files removed, 0 files unresolved | ||
(leaving bookmark bm3) | ||||
Yuya Nishihara
|
r22572 | *** runcommand commit -Am. a | ||
Yuya Nishihara
|
r22567 | created new head | ||
Yuya Nishihara
|
r22572 | *** runcommand log -Gq | ||
Yuya Nishihara
|
r22567 | @ 5:731265503d86 | ||
| | ||||
| o 4:7966c8e3734d | ||||
| | | ||||
| o 3:b9b85890c400 | ||||
| | | ||||
| o 2:aef17e88f5f0 | ||||
| | | ||||
| o 1:d3a0a68be6de | ||||
|/ | ||||
o 0:eff892de26ec | ||||
Yuya Nishihara
|
r22572 | *** runcommand phase -p . | ||
*** runcommand phase . | ||||
Yuya Nishihara
|
r22567 | 5: public | ||
Yuya Nishihara
|
r22572 | *** runcommand branches | ||
Yuya Nishihara
|
r22567 | default 1:731265503d86 | ||
Yuya Nishihara
|
r22568 | |||
Durham Goode
|
r22955 | $ cat >> .hg/hgrc << EOF | ||
> [experimental] | ||||
> evolution=createmarkers | ||||
Yuya Nishihara
|
r22568 | > EOF | ||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def obsolete(server): | ||||
... readchannel(server) | ||||
... | ||||
... runcommand(server, ['up', 'null']) | ||||
... runcommand(server, ['phase', '-df', 'tip']) | ||||
... cmd = 'hg debugobsolete `hg log -r tip --template {node}`' | ||||
... if os.name == 'nt': | ||||
... cmd = 'sh -c "%s"' % cmd # run in sh, not cmd.exe | ||||
... os.system(cmd) | ||||
... runcommand(server, ['log', '--hidden']) | ||||
... runcommand(server, ['log']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand up null | ||
Yuya Nishihara
|
r22567 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | ||
Yuya Nishihara
|
r22572 | *** runcommand phase -df tip | ||
*** runcommand log --hidden | ||||
Yuya Nishihara
|
r22567 | changeset: 1:731265503d86 | ||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: . | ||||
changeset: 0:eff892de26ec | ||||
bookmark: bm1 | ||||
bookmark: bm2 | ||||
bookmark: bm3 | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: 1 | ||||
Yuya Nishihara
|
r22572 | *** runcommand log | ||
Yuya Nishihara
|
r22567 | changeset: 0:eff892de26ec | ||
bookmark: bm1 | ||||
bookmark: bm2 | ||||
bookmark: bm3 | ||||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: 1 | ||||
Yuya Nishihara
|
r22568 | |||
$ cat <<EOF >> .hg/hgrc | ||||
> [extensions] | ||||
> mq = | ||||
> EOF | ||||
>>> import os | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def mqoutsidechanges(server): | ||||
... readchannel(server) | ||||
... | ||||
... # load repo.mq | ||||
... runcommand(server, ['qapplied']) | ||||
... os.system('hg qnew 0.diff') | ||||
... # repo.mq should be invalidated | ||||
... runcommand(server, ['qapplied']) | ||||
... | ||||
... runcommand(server, ['qpop', '--all']) | ||||
... os.system('hg qqueue --create foo') | ||||
... # repo.mq should be recreated to point to new queue | ||||
... runcommand(server, ['qqueue', '--active']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand qapplied | ||
*** runcommand qapplied | ||||
Yuya Nishihara
|
r22567 | 0.diff | ||
Yuya Nishihara
|
r22572 | *** runcommand qpop --all | ||
Yuya Nishihara
|
r22567 | popping 0.diff | ||
patch queue now empty | ||||
Yuya Nishihara
|
r22572 | *** runcommand qqueue --active | ||
Yuya Nishihara
|
r22567 | foo | ||
Yuya Nishihara
|
r22568 | |||
$ cat <<EOF > dbgui.py | ||||
Yuya Nishihara
|
r23324 | > import os, sys | ||
Yuya Nishihara
|
r22568 | > from mercurial import cmdutil, commands | ||
> cmdtable = {} | ||||
> command = cmdutil.command(cmdtable) | ||||
> @command("debuggetpass", norepo=True) | ||||
> def debuggetpass(ui): | ||||
> ui.write("%s\\n" % ui.getpass()) | ||||
Yuya Nishihara
|
r22783 | > @command("debugprompt", norepo=True) | ||
> def debugprompt(ui): | ||||
> ui.write("%s\\n" % ui.prompt("prompt:")) | ||||
Yuya Nishihara
|
r23324 | > @command("debugreadstdin", norepo=True) | ||
> def debugreadstdin(ui): | ||||
> ui.write("read: %r\n" % sys.stdin.read(1)) | ||||
> @command("debugwritestdout", norepo=True) | ||||
> def debugwritestdout(ui): | ||||
> os.write(1, "low-level stdout fd and\n") | ||||
> sys.stdout.write("stdout should be redirected to /dev/null\n") | ||||
> sys.stdout.flush() | ||||
Yuya Nishihara
|
r22568 | > EOF | ||
$ cat <<EOF >> .hg/hgrc | ||||
> [extensions] | ||||
> dbgui = dbgui.py | ||||
> EOF | ||||
>>> import cStringIO | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def getpass(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['debuggetpass', '--config', | ||||
... 'ui.interactive=True'], | ||||
... input=cStringIO.StringIO('1234\n')) | ||||
Yuya Nishihara
|
r22783 | ... runcommand(server, ['debugprompt', '--config', | ||
... 'ui.interactive=True'], | ||||
... input=cStringIO.StringIO('5678\n')) | ||||
Yuya Nishihara
|
r23324 | ... runcommand(server, ['debugreadstdin']) | ||
... runcommand(server, ['debugwritestdout']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand debuggetpass --config ui.interactive=True | ||
Yuya Nishihara
|
r22567 | password: 1234 | ||
Yuya Nishihara
|
r22783 | *** runcommand debugprompt --config ui.interactive=True | ||
prompt: 5678 | ||||
Yuya Nishihara
|
r23324 | *** runcommand debugreadstdin | ||
read: '' | ||||
*** runcommand debugwritestdout | ||||
Yuya Nishihara
|
r22568 | |||
Yuya Nishihara
|
r23322 | run commandserver in commandserver, which is silly but should work: | ||
>>> import cStringIO | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def nested(server): | ||||
... print '%c, %r' % readchannel(server) | ||||
... class nestedserver(object): | ||||
... stdin = cStringIO.StringIO('getencoding\n') | ||||
... stdout = cStringIO.StringIO() | ||||
... runcommand(server, ['serve', '--cmdserver', 'pipe'], | ||||
... output=nestedserver.stdout, input=nestedserver.stdin) | ||||
... nestedserver.stdout.seek(0) | ||||
... print '%c, %r' % readchannel(nestedserver) # hello | ||||
... print '%c, %r' % readchannel(nestedserver) # getencoding | ||||
o, 'capabilities: getencoding runcommand\nencoding: *\npid: *' (glob) | ||||
*** runcommand serve --cmdserver pipe | ||||
o, 'capabilities: getencoding runcommand\nencoding: *\npid: *' (glob) | ||||
r, '*' (glob) | ||||
Yuya Nishihara
|
r22568 | |||
start without repository: | ||||
$ cd .. | ||||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def hellomessage(server): | ||||
... ch, data = readchannel(server) | ||||
Yuya Nishihara
|
r22571 | ... print '%c, %r' % (ch, data) | ||
Yuya Nishihara
|
r22568 | ... # run an arbitrary command to make sure the next thing the server | ||
... # sends isn't part of the hello message | ||||
... runcommand(server, ['id']) | ||||
Yuya Nishihara
|
r23036 | o, 'capabilities: getencoding runcommand\nencoding: *\npid: *' (glob) | ||
Yuya Nishihara
|
r22572 | *** runcommand id | ||
Yuya Nishihara
|
r22567 | abort: there is no Mercurial repository here (.hg not found) | ||
[255] | ||||
Yuya Nishihara
|
r22568 | |||
>>> from hgclient import readchannel, runcommand, check | ||||
>>> @check | ||||
... def startwithoutrepo(server): | ||||
... readchannel(server) | ||||
... runcommand(server, ['init', 'repo2']) | ||||
... runcommand(server, ['id', '-R', 'repo2']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand init repo2 | ||
*** runcommand id -R repo2 | ||||
Yuya Nishihara
|
r22567 | 000000000000 tip | ||
Yuya Nishihara
|
r22994 | |||
unix domain socket: | ||||
$ cd repo | ||||
$ hg update -q | ||||
Matt Mackall
|
r23095 | #if unix-socket unix-permissions | ||
Yuya Nishihara
|
r22994 | |||
>>> import cStringIO | ||||
>>> from hgclient import unixserver, readchannel, runcommand, check | ||||
>>> server = unixserver('.hg/server.sock', '.hg/server.log') | ||||
>>> def hellomessage(conn): | ||||
... ch, data = readchannel(conn) | ||||
... print '%c, %r' % (ch, data) | ||||
... runcommand(conn, ['id']) | ||||
>>> check(hellomessage, server.connect) | ||||
Yuya Nishihara
|
r23036 | o, 'capabilities: getencoding runcommand\nencoding: *\npid: *' (glob) | ||
Yuya Nishihara
|
r22994 | *** runcommand id | ||
eff892de26ec tip bm1/bm2/bm3 | ||||
>>> def unknowncommand(conn): | ||||
... readchannel(conn) | ||||
... conn.stdin.write('unknowncommand\n') | ||||
>>> check(unknowncommand, server.connect) # error sent to server.log | ||||
>>> def serverinput(conn): | ||||
... readchannel(conn) | ||||
... patch = """ | ||||
... # HG changeset patch | ||||
... # User test | ||||
... # Date 0 0 | ||||
... 2 | ||||
... | ||||
... diff -r eff892de26ec -r 1ed24be7e7a0 a | ||||
... --- a/a | ||||
... +++ b/a | ||||
... @@ -1,1 +1,2 @@ | ||||
... 1 | ||||
... +2 | ||||
... """ | ||||
... runcommand(conn, ['import', '-'], input=cStringIO.StringIO(patch)) | ||||
... runcommand(conn, ['log', '-rtip', '-q']) | ||||
>>> check(serverinput, server.connect) | ||||
*** runcommand import - | ||||
applying patch from stdin | ||||
*** runcommand log -rtip -q | ||||
2:1ed24be7e7a0 | ||||
>>> server.shutdown() | ||||
$ cat .hg/server.log | ||||
listening at .hg/server.sock | ||||
abort: unknown command unknowncommand | ||||
killed! | ||||
Matt Mackall
|
r23095 | #endif | ||
#if no-unix-socket | ||||
Yuya Nishihara
|
r22994 | |||
$ hg serve --cmdserver unix -a .hg/server.sock | ||||
abort: unsupported platform | ||||
[255] | ||||
#endif | ||||