##// END OF EJS Templates
graft: do not try to skip rev derived from ancestor more than once (issue6024)...
graft: do not try to skip rev derived from ancestor more than once (issue6024) We check 'x in revs' in other cases, so let's do the same. The test case credits to Tom Prince.

File last commit:

r40070:393e4432 default
r40692:3bc2e550 stable
Show More
test-wireproto-command-listkeys.t
65 lines | 1.3 KiB | text/troff | Tads3Lexer
/ tests / test-wireproto-command-listkeys.t
Gregory Szorc
wireproto: port listkeys commands to wire protocol v2...
r37505 $ . $TESTDIR/wireprotohelpers.sh
$ hg init server
$ enablehttpv2 server
$ cd server
$ hg debugdrawdag << EOF
> C D
> |/
> B
> |
> A
> EOF
$ hg phase --public -r C
$ hg book -r C @
$ hg log -T '{rev}:{node} {desc}\n'
3:be0ef73c17ade3fc89dc41701eb9fc3a91b58282 D
2:26805aba1e600a82e93661149f2313866a221a7b C
1:112478962961147124edd43549aedd1a335e44bf B
0:426bada5c67598ca65036d57d9e4b64b0c1ce7a0 A
$ hg serve -p $HGPORT -d --pid-file hg.pid -E error.log
$ cat hg.pid > $DAEMON_PIDS
Request for namespaces works
$ sendhttpv2peer << EOF
> command listkeys
> namespace namespaces
> EOF
creating http peer for wire protocol version 2
sending listkeys command
Gregory Szorc
stringutil: teach pprint() to indent...
r39414 response: {
b'bookmarks': b'',
b'namespaces': b'',
b'phases': b''
}
Gregory Szorc
wireproto: port listkeys commands to wire protocol v2...
r37505
Request for phases works
$ sendhttpv2peer << EOF
> command listkeys
> namespace phases
> EOF
creating http peer for wire protocol version 2
sending listkeys command
Gregory Szorc
stringutil: teach pprint() to indent...
r39414 response: {
b'be0ef73c17ade3fc89dc41701eb9fc3a91b58282': b'1',
b'publishing': b'True'
}
Gregory Szorc
wireproto: port listkeys commands to wire protocol v2...
r37505
Request for bookmarks works
$ sendhttpv2peer << EOF
> command listkeys
> namespace bookmarks
> EOF
creating http peer for wire protocol version 2
sending listkeys command
Gregory Szorc
stringutil: teach pprint() to indent...
r39414 response: {
b'@': b'26805aba1e600a82e93661149f2313866a221a7b'
}
Gregory Szorc
wireproto: port listkeys commands to wire protocol v2...
r37505
$ cat error.log