sapling/eden/scm/tests/test-fb-hgext-tweakdefaults-revsets.t
Durham Goode 1183f14f11 treemanifest: disable flatcompat by default
Summary:
This was a hack to allow the tests to produce the same hashes as
before. Let's disable this and fix the remaining test failures. A future diff
will remove the feature entirely.

Where possible I changed input hashes to desc() and output hashes to globs so
hopefully future hash changes are a little easier.

Differential Revision: D29567762

fbshipit-source-id: cf5150c112c56b08f583feba80e5a636cc07db0a
2021-07-13 15:04:57 -07:00

52 lines
2.6 KiB
Perl

#chg-compatible
$ enable tweakdefaults
Setup repo
$ hg init repo
$ cd repo
$ touch a
$ hg commit -Aqm a
$ mkdir dir
$ touch dir/b
$ hg commit -Aqm b
$ hg up -q 'desc(a)'
$ echo x >> a
$ hg commit -Aqm a2
Test that warning is shown whenever ':' is used with singlecolonwarn set
$ hg log -T '{node} ' -r '3903775176ed42b1458a6281db4a0ccf4d9f287a:desc(a2)' --config tweakdefaults.singlecolonwarn=1
warning: use of ':' is deprecated
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
$ hg log -T '{node} ' -r '3903775176ed42b1458a6281db4a0ccf4d9f287a:desc(a2)'
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
$ hg log -T '{node} ' -r ':desc(a2)' --config tweakdefaults.singlecolonwarn=1
warning: use of ':' is deprecated
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
$ hg log -T '{node} ' -r ':desc(a2)'
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
$ hg log -T '{node} ' -r '3903775176ed42b1458a6281db4a0ccf4d9f287a:' --config tweakdefaults.singlecolonwarn=1
warning: use of ':' is deprecated
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
$ hg log -T '{node} ' -r '3903775176ed42b1458a6281db4a0ccf4d9f287a:'
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
In this testcase warning should not be shown
$ hg log -T '{node} ' -r ':' --config tweakdefaults.singlecolonwarn=1
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
Check that the custom message can be used
$ hg log -T '{node} ' -r '3903775176ed42b1458a6281db4a0ccf4d9f287a:' --config tweakdefaults.singlecolonwarn=1 --config tweakdefaults.singlecolonmsg="hey stop that"
warning: hey stop that
3903775176ed42b1458a6281db4a0ccf4d9f287a 62acd743a793874dbb46d28fca2d4cd6a5568e99 ae5108b653e2f2d15099970dec82ee0198e23d98 (no-eol)
Check that we can abort as well
$ hg log -T '{node} ' -r '0:' --config tweakdefaults.singlecolonabort=1
abort: use of ':' is deprecated
[255]
$ hg log -T '{node} ' -r '0:' --config tweakdefaults.singlecolonabort=1 --config tweakdefaults.singlecolonmsg="no more colons"
abort: no more colons
[255]