sapling/eden/hg-server/tests/test-identify.t
Durham Goode 98d9269874 server: copy hg to a new hg-server directory
Summary:
Create a fork of the Mercurial code that we can use to build server
rpms. The hg servers will continue to exist for a few more months while we move
the darkstorm and ediscovery use cases off them. In the mean time, we want to
start making breaking changes to the client, so let's create a stable copy of
the hg code to produce rpms for the hg servers.

The fork is based off c7770c78d, the latest hg release.

This copies the files as is, then adds some minor tweaks to get it to build:
- Disables some lint checks that appear to be bypassed by path
- sed replace eden/scm with eden/hg-server
- Removed a dependency on scm/telemetry from the edenfs-client tests since
  scm/telemetry pulls in the original eden/scm/lib/configparser which conflicts
  with the hg-server conflict parser.

allow-large-files

Reviewed By: quark-zju

Differential Revision: D27632557

fbshipit-source-id: b2f442f4ec000ea08e4d62de068750832198e1f4
2021-04-09 10:09:06 -07:00

158 lines
3.1 KiB
Perl

#chg-compatible
#require serve
#if no-outer-repo
no repo
$ hg id
abort: there is no Mercurial repository here (.hg not found)
[255]
#endif
$ configure dummyssh
create repo
$ hg init test
$ cd test
$ echo a > a
$ hg ci -Ama
adding a
basic id usage
$ hg id
cb9a9f314b8b
$ hg id --debug
cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b
$ hg id -q
cb9a9f314b8b
$ hg id -v
cb9a9f314b8b
with options
$ hg id -r.
cb9a9f314b8b
$ hg id -n
0
$ hg id -b
default
$ hg id -i
cb9a9f314b8b
$ hg id -n -t -b -i
cb9a9f314b8b 0 default
$ hg id -Tjson
[
{
"bookmarks": [],
"dirty": "",
"id": "cb9a9f314b8b",
"node": "ffffffffffffffffffffffffffffffffffffffff",
"parents": [{"node": "cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b", "rev": 0}]
}
]
test template keywords and functions which require changectx:
(The Rust layer does not special handle the wdir commit hash so shortest does
not "work" here. In the future we want to change virtual commits handling to
use normal (non-special-cased) in-memory-only commits in the Rust DAG instead
of special casing them in various APIs (ex. partialmatch))
$ hg id -T '{node|shortest}\n'
ffffffffffffffffffffffffffffffffffffffff
$ hg id -T '{parents % "{node|shortest} {desc}\n"}'
cb9a a
with modifications
$ echo b > a
$ hg id -n -t -b -i
cb9a9f314b8b+ 0+ default
$ hg id -Tjson
[
{
"bookmarks": [],
"dirty": "+",
"id": "cb9a9f314b8b+",
"node": "ffffffffffffffffffffffffffffffffffffffff",
"parents": [{"node": "cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b", "rev": 0}]
}
]
other local repo
$ cd ..
$ hg -R test id
cb9a9f314b8b+
#if no-outer-repo
$ hg id test
cb9a9f314b8b+ tip
#endif
with remote ssh repo
$ cd test
$ hg id ssh://user@dummy/test
cb9a9f314b8b
remote with rev number?
$ hg id -n ssh://user@dummy/test
abort: can't query remote revision number or branch
[255]
remote with branch?
$ hg id -b ssh://user@dummy/test
abort: can't query remote revision number or branch
[255]
test bookmark support
$ hg bookmark Y
$ hg bookmark Z
$ hg bookmarks
Y cb9a9f314b8b
* Z cb9a9f314b8b
$ hg id
cb9a9f314b8b+ Y/Z
$ hg id --bookmarks
Y Z
test remote identify with bookmarks
$ hg id ssh://user@dummy/test
cb9a9f314b8b Y/Z
$ hg id --bookmarks ssh://user@dummy/test
Y Z
$ hg id -r . ssh://user@dummy/test
cb9a9f314b8b Y/Z
$ hg id --bookmarks -r . ssh://user@dummy/test
Y Z
test invalid lookup
$ hg id -r noNoNO ssh://user@dummy/test
abort: unknown revision 'noNoNO'!
[255]
Make sure we do not obscure unknown requires file entries (issue2649)
$ echo fake >> .hg/requires
$ hg id
abort: repository requires features unknown to this Mercurial: fake!
(see https://mercurial-scm.org/wiki/MissingRequirement for more information)
[255]
$ cd ..
#if no-outer-repo
$ hg id test
abort: repository requires features unknown to this Mercurial: fake!
(see https://mercurial-scm.org/wiki/MissingRequirement for more information)
[255]
#endif