test-commandserver.t
1105 lines
| 34.2 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 | ||||
Yuya Nishihara
|
r40391 | >>> from __future__ import absolute_import | ||
Augie Fackler
|
r33923 | >>> import os | ||
>>> import sys | ||||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def hellomessage(server): | ||||
... ch, data = readchannel(server) | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'%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 | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'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): | ||||
Yuya Nishihara
|
r40390 | ... server.stdin.write(b'unknowncommand\n') | ||
Yuya Nishihara
|
r22567 | abort: unknown command unknowncommand | ||
Yuya Nishihara
|
r22568 | |||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def checkruncommand(server): | ||||
... # hello block | ||||
... readchannel(server) | ||||
... | ||||
... # no args | ||||
... runcommand(server, []) | ||||
... | ||||
... # global options | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'id', b'--quiet']) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # make sure global options don't stick through requests | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'id']) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # --config | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'id', b'--config', b'ui.quiet=True']) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # make sure --config doesn't stick | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'id']) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # negative return code should be masked | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'id', b'-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) | ||||
timeless
|
r29974 | (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 | |||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def inputeof(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... server.stdin.write(b'runcommand\n') | ||
Yuya Nishihara
|
r22568 | ... # close stdin while server is waiting for input | ||
... server.stdin.close() | ||||
... | ||||
... # server exits with 1 if the pipe closed while reading the command | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'server exit code =', b'%d' % server.wait()) | ||
Yuya Nishihara
|
r22567 | server exit code = 1 | ||
Yuya Nishihara
|
r22568 | |||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand, stringio | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def serverinput(server): | ||||
... readchannel(server) | ||||
... | ||||
Yuya Nishihara
|
r40390 | ... patch = b""" | ||
Yuya Nishihara
|
r22568 | ... # 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 | ||||
... """ | ||||
... | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'import', b'-'], input=stringio(patch)) | ||
... runcommand(server, [b'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 | |||
Yuya Nishihara
|
r35180 | check strict parsing of early options: | ||
>>> import os | ||||
>>> from hgclient import check, readchannel, runcommand | ||||
>>> os.environ['HGPLAIN'] = '+strictflags' | ||||
>>> @check | ||||
... def cwd(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'log', b'-b', b'--config=alias.log=!echo pwned', | ||
... b'default']) | ||||
Yuya Nishihara
|
r35180 | *** runcommand log -b --config=alias.log=!echo pwned default | ||
abort: unknown revision '--config=alias.log=!echo pwned'! | ||||
[255] | ||||
Yuya Nishihara
|
r30262 | check that "histedit --commands=-" can read rules from the input channel: | ||
Yuya Nishihara
|
r40392 | >>> from hgclient import check, readchannel, runcommand, stringio | ||
Yuya Nishihara
|
r30262 | >>> @check | ||
... def serverinput(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... rules = b'pick eff892de26ec\n' | ||
... runcommand(server, [b'histedit', b'0', b'--commands=-', | ||||
... b'--config', b'extensions.histedit='], | ||||
Yuya Nishihara
|
r40392 | ... input=stringio(rules)) | ||
Yuya Nishihara
|
r30262 | *** runcommand histedit 0 --commands=- --config extensions.histedit= | ||
Yuya Nishihara
|
r22568 | check that --cwd doesn't persist between requests: | ||
$ mkdir foo | ||||
$ touch foo/bar | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def cwd(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'--cwd', b'foo', b'st', b'bar']) | ||
... runcommand(server, [b'st', b'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 | ||||
Gregory Szorc
|
r37445 | #if no-extraextensions | ||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand, sep | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def localhgrc(server): | ||||
... readchannel(server) | ||||
... | ||||
... # the cached repo local hgrc contains ui.foo=bar, so showconfig should | ||||
... # show it | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'showconfig'], outfilter=sep) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # but not for this repo | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'init', b'foo']) | ||
... runcommand(server, [b'-R', b'foo', b'showconfig', b'ui', b'defaults']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand showconfig | ||
Yuya Nishihara
|
r22567 | bundle.mainreporoot=$TESTTMP/repo | ||
Pierre-Yves David
|
r25290 | devel.all-warnings=true | ||
r32410 | devel.default-date=0 0 | |||
FUJIWARA Katsunori
|
r33426 | extensions.fsmonitor= (fsmonitor !) | ||
Matt Harbison
|
r23388 | largefiles.usercache=$TESTTMP/.cache/largefiles | ||
Matt Harbison
|
r35281 | lfs.usercache=$TESTTMP/.cache/lfs | ||
Yuya Nishihara
|
r22567 | ui.slash=True | ||
ui.interactive=False | ||||
Boris Feld
|
r40506 | ui.merge=internal:merge | ||
Yuya Nishihara
|
r22567 | ui.mergemarkers=detailed | ||
ui.foo=bar | ||||
ui.nontty=true | ||||
Jun Wu
|
r31009 | web.address=localhost | ||
Jun Wu
|
r31010 | web\.ipv6=(?:True|False) (re) | ||
Gregory Szorc
|
r37027 | web.server-header=testing stub value | ||
Yuya Nishihara
|
r22572 | *** runcommand init foo | ||
*** runcommand -R foo showconfig ui defaults | ||||
Yuya Nishihara
|
r22567 | ui.slash=True | ||
ui.interactive=False | ||||
Boris Feld
|
r40506 | ui.merge=internal:merge | ||
Yuya Nishihara
|
r22567 | ui.mergemarkers=detailed | ||
ui.nontty=true | ||||
Gregory Szorc
|
r37445 | #endif | ||
Yuya Nishihara
|
r22568 | |||
$ rm -R foo | ||||
#if windows | ||||
$ PYTHONPATH="$TESTTMP/repo;$PYTHONPATH" | ||||
#else | ||||
$ PYTHONPATH="$TESTTMP/repo:$PYTHONPATH" | ||||
#endif | ||||
$ cat <<EOF > hook.py | ||||
> import sys | ||||
Yuya Nishihara
|
r40391 | > from hgclient import bprint | ||
Yuya Nishihara
|
r22568 | > def hook(**args): | ||
Yuya Nishihara
|
r40391 | > bprint(b'hook talking') | ||
> bprint(b'now try to read something: %r' % sys.stdin.read()) | ||||
Yuya Nishihara
|
r22568 | > EOF | ||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand, stringio | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def hookoutput(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'--config', | ||
... b'hooks.pre-identify=python:hook.hook', | ||||
... b'id'], | ||||
... input=stringio(b'some input')) | ||||
Yuya Nishihara
|
r22572 | *** runcommand --config hooks.pre-identify=python:hook.hook id | ||
Yuya Nishihara
|
r22567 | eff892de26ec tip | ||
Yuya Nishihara
|
r37237 | hook talking | ||
now try to read something: '' | ||||
Yuya Nishihara
|
r22568 | |||
Boris Feld
|
r33609 | Clean hook cached version | ||
Yuya Nishihara
|
r22568 | $ rm hook.py* | ||
Boris Feld
|
r33609 | $ rm -Rf __pycache__ | ||
Yuya Nishihara
|
r22568 | |||
$ echo a >> a | ||||
>>> import os | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def outsidechanges(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'status']) | ||
Yuya Nishihara
|
r22568 | ... os.system('hg ci -Am2') | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'tip']) | ||
... runcommand(server, [b'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 | ||||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def bookmarks(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'bookmarks']) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # changes .hg/bookmarks | ||||
... os.system('hg bookmark -i bm1') | ||||
... os.system('hg bookmark -i bm2') | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'bookmarks']) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # changes .hg/bookmarks.current | ||||
... os.system('hg upd bm1 -q') | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'bookmarks']) | ||
Yuya Nishihara
|
r22568 | ... | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'bookmarks', b'bm3']) | ||
Yuya Nishihara
|
r22568 | ... f = open('a', 'ab') | ||
Yuya Nishihara
|
r40390 | ... f.write(b'a\n') and None | ||
Yuya Nishihara
|
r22568 | ... f.close() | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', b'-Amm']) | ||
... runcommand(server, [b'bookmarks']) | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'') | ||
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 | ||||
Augie Fackler
|
r33922 | |||
Yuya Nishihara
|
r22568 | |||
>>> import os | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def tagscache(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'id', b'-t', b'-r', b'0']) | ||
Yuya Nishihara
|
r22568 | ... os.system('hg tag -r 0 foo') | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'id', b'-t', b'-r', b'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 | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def setphase(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'phase', b'-r', b'.']) | ||
Yuya Nishihara
|
r22568 | ... os.system('hg phase -r . -p') | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'phase', b'-r', b'.']) | ||
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 | ||||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def rollback(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'phase', b'-r', b'.', b'-p']) | ||
... runcommand(server, [b'commit', b'-Am.']) | ||||
... runcommand(server, [b'rollback']) | ||||
... runcommand(server, [b'phase', b'-r', b'.']) | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'') | ||
Yuya Nishihara
|
r22572 | *** runcommand phase -r . -p | ||
Yuya Nishihara
|
r22567 | no phases changed | ||
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 | ||
Augie Fackler
|
r33922 | |||
Yuya Nishihara
|
r22568 | |||
>>> import os | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def branch(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'branch']) | ||
Yuya Nishihara
|
r22568 | ... os.system('hg branch foo') | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'branch']) | ||
Yuya Nishihara
|
r22568 | ... 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 | ||||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def hgignore(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', b'-Am.']) | ||
Yuya Nishihara
|
r22568 | ... f = open('ignored-file', 'ab') | ||
Yuya Nishihara
|
r40390 | ... f.write(b'') and None | ||
Yuya Nishihara
|
r22568 | ... f.close() | ||
... f = open('.hgignore', 'ab') | ||||
Yuya Nishihara
|
r40390 | ... f.write(b'ignored-file') | ||
Yuya Nishihara
|
r22568 | ... f.close() | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'status', b'-i', b'-u']) | ||
Yuya Nishihara
|
r40391 | ... bprint(b'') | ||
Yuya Nishihara
|
r22572 | *** runcommand commit -Am. | ||
Yuya Nishihara
|
r22567 | adding .hgignore | ||
Yuya Nishihara
|
r22572 | *** runcommand status -i -u | ||
Yuya Nishihara
|
r22567 | I ignored-file | ||
Augie Fackler
|
r33922 | |||
Yuya Nishihara
|
r22568 | |||
Yuya Nishihara
|
r26405 | cache of non-public revisions should be invalidated on repository change | ||
(issue4855): | ||||
>>> import os | ||||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand | ||
Yuya Nishihara
|
r26405 | >>> @check | ||
... def phasesetscacheaftercommit(server): | ||||
... readchannel(server) | ||||
... # load _phasecache._phaserevs and _phasesets | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'log', b'-qr', b'draft()']) | ||
Yuya Nishihara
|
r26405 | ... # create draft commits by another process | ||
Pulkit Goyal
|
r36303 | ... for i in range(5, 7): | ||
Matt Harbison
|
r26431 | ... f = open('a', 'ab') | ||
... f.seek(0, os.SEEK_END) | ||||
Yuya Nishihara
|
r40390 | ... f.write(b'a\n') and None | ||
Matt Harbison
|
r26431 | ... f.close() | ||
Yuya Nishihara
|
r26405 | ... os.system('hg commit -Aqm%d' % i) | ||
... # new commits should be listed as draft revisions | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'log', b'-qr', b'draft()']) | ||
Yuya Nishihara
|
r40391 | ... bprint(b'') | ||
Yuya Nishihara
|
r26405 | *** runcommand log -qr draft() | ||
4:7966c8e3734d | ||||
*** runcommand log -qr draft() | ||||
4:7966c8e3734d | ||||
5:41f6602d1c4f | ||||
6:10501e202c35 | ||||
Augie Fackler
|
r33922 | |||
Yuya Nishihara
|
r26405 | |||
>>> import os | ||||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand | ||
Yuya Nishihara
|
r26405 | >>> @check | ||
... def phasesetscacheafterstrip(server): | ||||
... readchannel(server) | ||||
... # load _phasecache._phaserevs and _phasesets | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'log', b'-qr', b'draft()']) | ||
Yuya Nishihara
|
r26405 | ... # strip cached revisions by another process | ||
... os.system('hg --config extensions.strip= strip -q 5') | ||||
... # shouldn't abort by "unknown revision '6'" | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'log', b'-qr', b'draft()']) | ||
Yuya Nishihara
|
r40391 | ... bprint(b'') | ||
Yuya Nishihara
|
r26405 | *** runcommand log -qr draft() | ||
4:7966c8e3734d | ||||
5:41f6602d1c4f | ||||
6:10501e202c35 | ||||
*** runcommand log -qr draft() | ||||
4:7966c8e3734d | ||||
Augie Fackler
|
r33922 | |||
Yuya Nishihara
|
r26405 | |||
cache of phase roots should be invalidated on strip (issue3827): | ||||
Yuya Nishihara
|
r22568 | >>> import os | ||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand, sep | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def phasecacheafterstrip(server): | ||||
... readchannel(server) | ||||
... | ||||
... # create new head, 5:731265503d86 | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'update', b'-C', b'0']) | ||
Yuya Nishihara
|
r22568 | ... f = open('a', 'ab') | ||
Yuya Nishihara
|
r40390 | ... f.write(b'a\n') and None | ||
Yuya Nishihara
|
r22568 | ... f.close() | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', b'-Am.', b'a']) | ||
... runcommand(server, [b'log', b'-Gq']) | ||||
Yuya Nishihara
|
r22568 | ... | ||
... # make it public; draft marker moves to 4:7966c8e3734d | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'phase', b'-p', b'.']) | ||
Yuya Nishihara
|
r22568 | ... # load _phasecache.phaseroots | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'phase', b'.'], outfilter=sep) | ||
Yuya Nishihara
|
r22568 | ... | ||
... # strip 1::4 outside server | ||||
... os.system('hg -q --config extensions.mq= strip 1') | ||||
... | ||||
... # shouldn't raise "7966c8e3734d: no node!" | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'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 | |||
Yuya Nishihara
|
r26251 | in-memory cache must be reloaded if transaction is aborted. otherwise | ||
changelog and manifest would have invalid node: | ||||
$ echo a >> a | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r26251 | >>> @check | ||
... def txabort(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', b'--config', b'hooks.pretxncommit=false', | ||
... b'-mfoo']) | ||||
... runcommand(server, [b'verify']) | ||||
Yuya Nishihara
|
r26251 | *** runcommand commit --config hooks.pretxncommit=false -mfoo | ||
transaction abort! | ||||
rollback completed | ||||
abort: pretxncommit hook exited with status 1 | ||||
[255] | ||||
*** runcommand verify | ||||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
Meirambek Omyrzak
|
r39525 | checked 2 changesets with 2 changes to 1 files | ||
Yuya Nishihara
|
r26251 | $ hg revert --no-backup -aq | ||
Durham Goode
|
r22955 | $ cat >> .hg/hgrc << EOF | ||
> [experimental] | ||||
Boris Feld
|
r34867 | > evolution.createmarkers=True | ||
Yuya Nishihara
|
r22568 | > EOF | ||
>>> import os | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def obsolete(server): | ||||
... readchannel(server) | ||||
... | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'up', b'null']) | ||
... runcommand(server, [b'phase', b'-df', b'tip']) | ||||
Yuya Nishihara
|
r22568 | ... 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) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'log', b'--hidden']) | ||
... runcommand(server, [b'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 | ||
Boris Feld
|
r33542 | obsoleted 1 changesets | ||
Yuya Nishihara
|
r22572 | *** runcommand log --hidden | ||
Yuya Nishihara
|
r22567 | changeset: 1:731265503d86 | ||
tag: tip | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
Boris Feld
|
r34901 | obsolete: pruned | ||
Yuya Nishihara
|
r22567 | 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 | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def mqoutsidechanges(server): | ||||
... readchannel(server) | ||||
... | ||||
... # load repo.mq | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'qapplied']) | ||
Yuya Nishihara
|
r22568 | ... os.system('hg qnew 0.diff') | ||
... # repo.mq should be invalidated | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'qapplied']) | ||
Yuya Nishihara
|
r22568 | ... | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'qpop', b'--all']) | ||
Yuya Nishihara
|
r22568 | ... os.system('hg qqueue --create foo') | ||
... # repo.mq should be recreated to point to new queue | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'qqueue', b'--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 | |||
Yuya Nishihara
|
r40627 | $ cat <<'EOF' > ../dbgui.py | ||
Augie Fackler
|
r33923 | > import os | ||
> import sys | ||||
Yuya Nishihara
|
r32337 | > from mercurial import commands, registrar | ||
Yuya Nishihara
|
r22568 | > cmdtable = {} | ||
Yuya Nishihara
|
r32337 | > command = registrar.command(cmdtable) | ||
Pulkit Goyal
|
r33097 | > @command(b"debuggetpass", norepo=True) | ||
Yuya Nishihara
|
r22568 | > def debuggetpass(ui): | ||
Yuya Nishihara
|
r40627 | > ui.write(b"%s\n" % ui.getpass()) | ||
Pulkit Goyal
|
r33097 | > @command(b"debugprompt", norepo=True) | ||
Yuya Nishihara
|
r22783 | > def debugprompt(ui): | ||
Yuya Nishihara
|
r40627 | > ui.write(b"%s\n" % ui.prompt(b"prompt:")) | ||
Yuya Nishihara
|
r40628 | > @command(b"debugpromptchoice", norepo=True) | ||
> def debugpromptchoice(ui): | ||||
> msg = b"promptchoice (y/n)? $$ &Yes $$ &No" | ||||
> ui.write(b"%d\n" % ui.promptchoice(msg)) | ||||
Pulkit Goyal
|
r33097 | > @command(b"debugreadstdin", norepo=True) | ||
Yuya Nishihara
|
r23324 | > def debugreadstdin(ui): | ||
Yuya Nishihara
|
r40390 | > ui.write(b"read: %r\n" % sys.stdin.read(1)) | ||
Pulkit Goyal
|
r33097 | > @command(b"debugwritestdout", norepo=True) | ||
Yuya Nishihara
|
r23324 | > def debugwritestdout(ui): | ||
Yuya Nishihara
|
r40390 | > os.write(1, b"low-level stdout fd and\n") | ||
Yuya Nishihara
|
r37237 | > sys.stdout.write("stdout should be redirected to stderr\n") | ||
Yuya Nishihara
|
r23324 | > sys.stdout.flush() | ||
Yuya Nishihara
|
r22568 | > EOF | ||
$ cat <<EOF >> .hg/hgrc | ||||
> [extensions] | ||||
Yuya Nishihara
|
r40627 | > dbgui = ../dbgui.py | ||
Yuya Nishihara
|
r22568 | > EOF | ||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand, stringio | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def getpass(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'debuggetpass', b'--config', | ||
... b'ui.interactive=True'], | ||||
... input=stringio(b'1234\n')) | ||||
... runcommand(server, [b'debuggetpass', b'--config', | ||||
... b'ui.interactive=True'], | ||||
... input=stringio(b'\n')) | ||||
... runcommand(server, [b'debuggetpass', b'--config', | ||||
... b'ui.interactive=True'], | ||||
... input=stringio(b'')) | ||||
... runcommand(server, [b'debugprompt', b'--config', | ||||
... b'ui.interactive=True'], | ||||
... input=stringio(b'5678\n')) | ||||
... runcommand(server, [b'debugreadstdin']) | ||||
... runcommand(server, [b'debugwritestdout']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand debuggetpass --config ui.interactive=True | ||
Yuya Nishihara
|
r22567 | password: 1234 | ||
Yuya Nishihara
|
r30814 | *** runcommand debuggetpass --config ui.interactive=True | ||
password: | ||||
*** runcommand debuggetpass --config ui.interactive=True | ||||
password: abort: response expected | ||||
[255] | ||||
Yuya Nishihara
|
r22783 | *** runcommand debugprompt --config ui.interactive=True | ||
prompt: 5678 | ||||
Yuya Nishihara
|
r23324 | *** runcommand debugreadstdin | ||
read: '' | ||||
*** runcommand debugwritestdout | ||||
Yuya Nishihara
|
r37237 | low-level stdout fd and | ||
stdout should be redirected to stderr | ||||
Yuya Nishihara
|
r22568 | |||
Yuya Nishihara
|
r23322 | run commandserver in commandserver, which is silly but should work: | ||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand, stringio | ||
Yuya Nishihara
|
r23322 | >>> @check | ||
... def nested(server): | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'%c, %r' % readchannel(server)) | ||
Yuya Nishihara
|
r23322 | ... class nestedserver(object): | ||
Yuya Nishihara
|
r40390 | ... stdin = stringio(b'getencoding\n') | ||
timeless
|
r28836 | ... stdout = stringio() | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'serve', b'--cmdserver', b'pipe'], | ||
Yuya Nishihara
|
r23322 | ... output=nestedserver.stdout, input=nestedserver.stdin) | ||
... nestedserver.stdout.seek(0) | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'%c, %r' % readchannel(nestedserver)) # hello | ||
... bprint(b'%c, %r' % readchannel(nestedserver)) # getencoding | ||||
Yuya Nishihara
|
r23322 | 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 .. | ||||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def hellomessage(server): | ||||
... ch, data = readchannel(server) | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'%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 | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'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 | |||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r22568 | >>> @check | ||
... def startwithoutrepo(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'init', b'repo2']) | ||
... runcommand(server, [b'id', b'-R', b'repo2']) | ||||
Yuya Nishihara
|
r22572 | *** runcommand init repo2 | ||
*** runcommand id -R repo2 | ||||
Yuya Nishihara
|
r22567 | 000000000000 tip | ||
Yuya Nishihara
|
r22994 | |||
Yuya Nishihara
|
r26142 | don't fall back to cwd if invalid -R path is specified (issue4805): | ||
$ cd repo | ||||
$ hg serve --cmdserver pipe -R ../nonexistent | ||||
abort: repository ../nonexistent not found! | ||||
[255] | ||||
$ cd .. | ||||
Yuya Nishihara
|
r40625 | structured message channel: | ||
$ cat <<'EOF' >> repo2/.hg/hgrc | ||||
> [ui] | ||||
> # server --config should precede repository option | ||||
> message-output = stdio | ||||
> EOF | ||||
>>> from hgclient import bprint, checkwith, readchannel, runcommand | ||||
>>> @checkwith(extraargs=[b'--config', b'ui.message-output=channel', | ||||
... b'--config', b'cmdserver.message-encodings=foo cbor']) | ||||
... def verify(server): | ||||
... _ch, data = readchannel(server) | ||||
... bprint(data) | ||||
... runcommand(server, [b'-R', b'repo2', b'verify']) | ||||
capabilities: getencoding runcommand | ||||
encoding: ascii | ||||
message-encoding: cbor | ||||
pid: * (glob) | ||||
Matt Harbison
|
r40689 | pgid: * (glob) (no-windows !) | ||
Yuya Nishihara
|
r40625 | *** runcommand -R repo2 verify | ||
Yuya Nishihara
|
r40626 | message: '\xa2DdataTchecking changesets\nDtypeFstatus' | ||
Yuya Nishihara
|
r40630 | message: '\xa6Ditem@Cpos\xf6EtopicHcheckingEtotal\xf6DtypeHprogressDunit@' | ||
Yuya Nishihara
|
r40626 | message: '\xa2DdataSchecking manifests\nDtypeFstatus' | ||
Yuya Nishihara
|
r40630 | message: '\xa6Ditem@Cpos\xf6EtopicHcheckingEtotal\xf6DtypeHprogressDunit@' | ||
Yuya Nishihara
|
r40626 | message: '\xa2DdataX0crosschecking files in changesets and manifests\nDtypeFstatus' | ||
Yuya Nishihara
|
r40630 | message: '\xa6Ditem@Cpos\xf6EtopicMcrosscheckingEtotal\xf6DtypeHprogressDunit@' | ||
Yuya Nishihara
|
r40626 | message: '\xa2DdataOchecking files\nDtypeFstatus' | ||
Yuya Nishihara
|
r40630 | message: '\xa6Ditem@Cpos\xf6EtopicHcheckingEtotal\xf6DtypeHprogressDunit@' | ||
Yuya Nishihara
|
r40626 | message: '\xa2DdataX/checked 0 changesets with 0 changes to 0 files\nDtypeFstatus' | ||
Yuya Nishihara
|
r40625 | |||
Yuya Nishihara
|
r40628 | >>> from hgclient import checkwith, readchannel, runcommand, stringio | ||
>>> @checkwith(extraargs=[b'--config', b'ui.message-output=channel', | ||||
... b'--config', b'cmdserver.message-encodings=cbor', | ||||
... b'--config', b'extensions.dbgui=dbgui.py']) | ||||
... def prompt(server): | ||||
... readchannel(server) | ||||
... interactive = [b'--config', b'ui.interactive=True'] | ||||
Yuya Nishihara
|
r40629 | ... runcommand(server, [b'debuggetpass'] + interactive, | ||
... input=stringio(b'1234\n')) | ||||
Yuya Nishihara
|
r40628 | ... runcommand(server, [b'debugprompt'] + interactive, | ||
... input=stringio(b'5678\n')) | ||||
... runcommand(server, [b'debugpromptchoice'] + interactive, | ||||
... input=stringio(b'n\n')) | ||||
Yuya Nishihara
|
r40629 | *** runcommand debuggetpass --config ui.interactive=True | ||
message: '\xa3DdataJpassword: Hpassword\xf5DtypeFprompt' | ||||
1234 | ||||
Yuya Nishihara
|
r40628 | *** runcommand debugprompt --config ui.interactive=True | ||
message: '\xa3DdataGprompt:GdefaultAyDtypeFprompt' | ||||
5678 | ||||
*** runcommand debugpromptchoice --config ui.interactive=True | ||||
message: '\xa4Gchoices\x82\x82AyCYes\x82AnBNoDdataTpromptchoice (y/n)? GdefaultAyDtypeFprompt' | ||||
1 | ||||
Yuya Nishihara
|
r40625 | bad message encoding: | ||
$ hg serve --cmdserver pipe --config ui.message-output=channel | ||||
abort: no supported message encodings: | ||||
[255] | ||||
$ hg serve --cmdserver pipe --config ui.message-output=channel \ | ||||
> --config cmdserver.message-encodings='foo bar' | ||||
abort: no supported message encodings: foo bar | ||||
[255] | ||||
Yuya Nishihara
|
r22994 | unix domain socket: | ||
$ cd repo | ||||
$ hg update -q | ||||
Matt Mackall
|
r23095 | #if unix-socket unix-permissions | ||
Yuya Nishihara
|
r22994 | |||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, runcommand, stringio, unixserver | ||
Yuya Nishihara
|
r40390 | >>> server = unixserver(b'.hg/server.sock', b'.hg/server.log') | ||
Yuya Nishihara
|
r22994 | >>> def hellomessage(conn): | ||
... ch, data = readchannel(conn) | ||||
Yuya Nishihara
|
r40391 | ... bprint(b'%c, %r' % (ch, data)) | ||
Yuya Nishihara
|
r40390 | ... runcommand(conn, [b'id']) | ||
Yuya Nishihara
|
r22994 | >>> 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) | ||||
Yuya Nishihara
|
r40390 | ... conn.stdin.write(b'unknowncommand\n') | ||
Yuya Nishihara
|
r22994 | >>> check(unknowncommand, server.connect) # error sent to server.log | ||
>>> def serverinput(conn): | ||||
... readchannel(conn) | ||||
Yuya Nishihara
|
r40390 | ... patch = b""" | ||
Yuya Nishihara
|
r22994 | ... # 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 | ||||
... """ | ||||
Yuya Nishihara
|
r40390 | ... runcommand(conn, [b'import', b'-'], input=stringio(patch)) | ||
... runcommand(conn, [b'log', b'-rtip', b'-q']) | ||||
Yuya Nishihara
|
r22994 | >>> 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! | ||||
Yuya Nishihara
|
r28511 | $ rm .hg/server.log | ||
if server crashed before hello, traceback will be sent to 'e' channel as | ||||
last ditch: | ||||
Yuya Nishihara
|
r40857 | $ cat <<'EOF' > ../earlycrasher.py | ||
> from mercurial import commandserver, extensions | ||||
Yuya Nishihara
|
r40911 | > def _serverequest(orig, ui, repo, conn, createcmdserver, prereposetups): | ||
Yuya Nishihara
|
r40857 | > def createcmdserver(*args, **kwargs): | ||
> raise Exception('crash') | ||||
Yuya Nishihara
|
r40911 | > return orig(ui, repo, conn, createcmdserver, prereposetups) | ||
Yuya Nishihara
|
r40857 | > def extsetup(ui): | ||
> extensions.wrapfunction(commandserver, b'_serverequest', _serverequest) | ||||
> EOF | ||||
Yuya Nishihara
|
r28511 | $ cat <<EOF >> .hg/hgrc | ||
Yuya Nishihara
|
r40857 | > [extensions] | ||
> earlycrasher = ../earlycrasher.py | ||||
Yuya Nishihara
|
r28511 | > EOF | ||
Yuya Nishihara
|
r40391 | >>> from hgclient import bprint, check, readchannel, unixserver | ||
Yuya Nishihara
|
r40390 | >>> server = unixserver(b'.hg/server.sock', b'.hg/server.log') | ||
Yuya Nishihara
|
r28511 | >>> def earlycrash(conn): | ||
... while True: | ||||
... try: | ||||
... ch, data = readchannel(conn) | ||||
Yuya Nishihara
|
r40397 | ... for l in data.splitlines(True): | ||
... if not l.startswith(b' '): | ||||
... bprint(b'%c, %r' % (ch, l)) | ||||
Yuya Nishihara
|
r28511 | ... except EOFError: | ||
... break | ||||
>>> check(earlycrash, server.connect) | ||||
e, 'Traceback (most recent call last):\n' | ||||
Yuya Nishihara
|
r40857 | e, 'Exception: crash\n' | ||
Yuya Nishihara
|
r28511 | >>> server.shutdown() | ||
$ cat .hg/server.log | grep -v '^ ' | ||||
listening at .hg/server.sock | ||||
Traceback (most recent call last): | ||||
Yuya Nishihara
|
r40857 | Exception: crash | ||
Yuya Nishihara
|
r28511 | 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 | ||||
FUJIWARA Katsunori
|
r28265 | |||
$ cd .. | ||||
Test that accessing to invalid changelog cache is avoided at | ||||
subsequent operations even if repo object is reused even after failure | ||||
of transaction (see 0a7610758c42 also) | ||||
"hg log" after failure of transaction is needed to detect invalid | ||||
cache in repoview: this can't detect by "hg verify" only. | ||||
Combination of "finalization" and "empty-ness of changelog" (2 x 2 = | ||||
4) are tested, because '00changelog.i' are differently changed in each | ||||
cases. | ||||
$ cat > $TESTTMP/failafterfinalize.py <<EOF | ||||
> # extension to abort transaction after finalization forcibly | ||||
> from mercurial import commands, error, extensions, lock as lockmod | ||||
Boris Feld
|
r34766 | > from mercurial import registrar | ||
> cmdtable = {} | ||||
> command = registrar.command(cmdtable) | ||||
> configtable = {} | ||||
> configitem = registrar.configitem(configtable) | ||||
Yuya Nishihara
|
r40390 | > configitem(b'failafterfinalize', b'fail', | ||
Boris Feld
|
r34766 | > default=None, | ||
> ) | ||||
FUJIWARA Katsunori
|
r28265 | > def fail(tr): | ||
Yuya Nishihara
|
r40390 | > raise error.Abort(b'fail after finalization') | ||
FUJIWARA Katsunori
|
r28265 | > def reposetup(ui, repo): | ||
> class failrepo(repo.__class__): | ||||
Valentin Gatien-Baron
|
r42839 | > def commitctx(self, ctx, error=False, origctx=None): | ||
Yuya Nishihara
|
r40390 | > if self.ui.configbool(b'failafterfinalize', b'fail'): | ||
FUJIWARA Katsunori
|
r28265 | > # 'sorted()' by ASCII code on category names causes | ||
> # invoking 'fail' after finalization of changelog | ||||
> # using "'cl-%i' % id(self)" as category name | ||||
Yuya Nishihara
|
r40390 | > self.currenttransaction().addfinalize(b'zzzzzzzz', fail) | ||
Valentin Gatien-Baron
|
r42839 | > return super(failrepo, self).commitctx(ctx, error, origctx) | ||
FUJIWARA Katsunori
|
r28265 | > repo.__class__ = failrepo | ||
> EOF | ||||
$ hg init repo3 | ||||
$ cd repo3 | ||||
$ cat <<EOF >> $HGRCPATH | ||||
> [ui] | ||||
> logtemplate = {rev} {desc|firstline} ({files})\n | ||||
> | ||||
> [extensions] | ||||
> failafterfinalize = $TESTTMP/failafterfinalize.py | ||||
> EOF | ||||
- test failure with "empty changelog" | ||||
$ echo foo > foo | ||||
$ hg add foo | ||||
Mads Kiilerich
|
r30332 | (failure before finalization) | ||
FUJIWARA Katsunori
|
r28265 | |||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
FUJIWARA Katsunori
|
r28265 | >>> @check | ||
... def abort(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', | ||
... b'--config', b'hooks.pretxncommit=false', | ||||
... b'-mfoo']) | ||||
... runcommand(server, [b'log']) | ||||
... runcommand(server, [b'verify', b'-q']) | ||||
FUJIWARA Katsunori
|
r28265 | *** runcommand commit --config hooks.pretxncommit=false -mfoo | ||
transaction abort! | ||||
rollback completed | ||||
abort: pretxncommit hook exited with status 1 | ||||
[255] | ||||
*** runcommand log | ||||
*** runcommand verify -q | ||||
Mads Kiilerich
|
r30332 | (failure after finalization) | ||
FUJIWARA Katsunori
|
r28265 | |||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
FUJIWARA Katsunori
|
r28265 | >>> @check | ||
... def abort(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', | ||
... b'--config', b'failafterfinalize.fail=true', | ||||
... b'-mfoo']) | ||||
... runcommand(server, [b'log']) | ||||
... runcommand(server, [b'verify', b'-q']) | ||||
FUJIWARA Katsunori
|
r28265 | *** runcommand commit --config failafterfinalize.fail=true -mfoo | ||
transaction abort! | ||||
rollback completed | ||||
abort: fail after finalization | ||||
[255] | ||||
*** runcommand log | ||||
*** runcommand verify -q | ||||
- test failure with "not-empty changelog" | ||||
$ echo bar > bar | ||||
$ hg add bar | ||||
$ hg commit -mbar bar | ||||
(failure before finalization) | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
FUJIWARA Katsunori
|
r28265 | >>> @check | ||
... def abort(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', | ||
... b'--config', b'hooks.pretxncommit=false', | ||||
... b'-mfoo', b'foo']) | ||||
... runcommand(server, [b'log']) | ||||
... runcommand(server, [b'verify', b'-q']) | ||||
FUJIWARA Katsunori
|
r28265 | *** runcommand commit --config hooks.pretxncommit=false -mfoo foo | ||
transaction abort! | ||||
rollback completed | ||||
abort: pretxncommit hook exited with status 1 | ||||
[255] | ||||
*** runcommand log | ||||
0 bar (bar) | ||||
*** runcommand verify -q | ||||
(failure after finalization) | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
FUJIWARA Katsunori
|
r28265 | >>> @check | ||
... def abort(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'commit', | ||
... b'--config', b'failafterfinalize.fail=true', | ||||
... b'-mfoo', b'foo']) | ||||
... runcommand(server, [b'log']) | ||||
... runcommand(server, [b'verify', b'-q']) | ||||
FUJIWARA Katsunori
|
r28265 | *** runcommand commit --config failafterfinalize.fail=true -mfoo foo | ||
transaction abort! | ||||
rollback completed | ||||
abort: fail after finalization | ||||
[255] | ||||
*** runcommand log | ||||
0 bar (bar) | ||||
*** runcommand verify -q | ||||
Yuya Nishihara
|
r33721 | |||
$ cd .. | ||||
Test symlink traversal over cached audited paths: | ||||
------------------------------------------------- | ||||
#if symlink | ||||
set up symlink hell | ||||
$ mkdir merge-symlink-out | ||||
$ hg init merge-symlink | ||||
$ cd merge-symlink | ||||
$ touch base | ||||
$ hg commit -qAm base | ||||
$ ln -s ../merge-symlink-out a | ||||
$ hg commit -qAm 'symlink a -> ../merge-symlink-out' | ||||
$ hg up -q 0 | ||||
$ mkdir a | ||||
$ touch a/poisoned | ||||
$ hg commit -qAm 'file a/poisoned' | ||||
$ hg log -G -T '{rev}: {desc}\n' | ||||
@ 2: file a/poisoned | ||||
| | ||||
| o 1: symlink a -> ../merge-symlink-out | ||||
|/ | ||||
o 0: base | ||||
try trivial merge after update: cache of audited paths should be discarded, | ||||
and the merge should fail (issue5628) | ||||
$ hg up -q null | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r33721 | >>> @check | ||
... def merge(server): | ||||
... readchannel(server) | ||||
... # audit a/poisoned as a good path | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'up', b'-qC', b'2']) | ||
... runcommand(server, [b'up', b'-qC', b'1']) | ||||
Yuya Nishihara
|
r33721 | ... # here a is a symlink, so a/poisoned is bad | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'merge', b'2']) | ||
Yuya Nishihara
|
r33721 | *** runcommand up -qC 2 | ||
*** runcommand up -qC 1 | ||||
*** runcommand merge 2 | ||||
Siddharth Agarwal
|
r34943 | abort: path 'a/poisoned' traverses symbolic link 'a' | ||
[255] | ||||
Yuya Nishihara
|
r33721 | $ ls ../merge-symlink-out | ||
cache of repo.auditor should be discarded, so matcher would never traverse | ||||
symlinks: | ||||
$ hg up -qC 0 | ||||
$ touch ../merge-symlink-out/poisoned | ||||
Augie Fackler
|
r33923 | >>> from hgclient import check, readchannel, runcommand | ||
Yuya Nishihara
|
r33721 | >>> @check | ||
... def files(server): | ||||
... readchannel(server) | ||||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'up', b'-qC', b'2']) | ||
Yuya Nishihara
|
r33721 | ... # audit a/poisoned as a good path | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'files', b'a/poisoned']) | ||
... runcommand(server, [b'up', b'-qC', b'0']) | ||||
... runcommand(server, [b'up', b'-qC', b'1']) | ||||
Yuya Nishihara
|
r33721 | ... # here 'a' is a symlink, so a/poisoned should be warned | ||
Yuya Nishihara
|
r40390 | ... runcommand(server, [b'files', b'a/poisoned']) | ||
Yuya Nishihara
|
r33721 | *** runcommand up -qC 2 | ||
*** runcommand files a/poisoned | ||||
a/poisoned | ||||
*** runcommand up -qC 0 | ||||
*** runcommand up -qC 1 | ||||
*** runcommand files a/poisoned | ||||
Yuya Nishihara
|
r33722 | abort: path 'a/poisoned' traverses symbolic link 'a' | ||
[255] | ||||
Yuya Nishihara
|
r33721 | |||
$ cd .. | ||||
#endif | ||||