mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 21:48:36 +03:00
75a8173a10
Summary: Add `#chg-compatible` to 572 tests that seem to pass with chg enabled. This should make them run faster. Reviewed By: xavierd Differential Revision: D18870507 fbshipit-source-id: fe895e733efffc9286cd3d17c7a156c803124395
76 lines
1.6 KiB
Perl
76 lines
1.6 KiB
Perl
#chg-compatible
|
|
|
|
$ cat >> $HGRCPATH << EOF
|
|
> [extensions]
|
|
> grpcheck=
|
|
> EOF
|
|
|
|
$ hg init repo
|
|
$ cd repo
|
|
|
|
mock os.getgroups and grp.getgrnam
|
|
|
|
$ cat >> $TESTTMP/mockgrp.py << EOF
|
|
> import os, grp
|
|
> def _getgroups():
|
|
> return map(int, os.environ.get('HGMOCKGRPS', '1000').split())
|
|
> class _grp(object):
|
|
> def __init__(self, gid):
|
|
> self.gr_gid = gid
|
|
> def _getgrnam(name):
|
|
> if name == 'users':
|
|
> gid = 1000
|
|
> elif name == 'devs':
|
|
> gid = 2000
|
|
> else:
|
|
> raise KeyError()
|
|
> return _grp(gid)
|
|
> os.getgroups = _getgroups
|
|
> grp.getgrnam = _getgrnam
|
|
> EOF
|
|
|
|
$ cat >> $HGRCPATH << EOF
|
|
> mockgrp = $TESTTMP/mockgrp.py
|
|
> [grpcheck]
|
|
> groups = users, devs
|
|
> warning = You should be in %s group.
|
|
> overrides.chgserver.idletimeout = 3
|
|
> overrides.ui.foo = bar
|
|
> EOF
|
|
|
|
when the user is not in those groups, warnings are printed
|
|
|
|
$ hg log
|
|
You should be in devs group.
|
|
$ HGMOCKGRPS=100 hg log
|
|
You should be in users group.
|
|
$ HGMOCKGRPS='100 1000' hg log
|
|
You should be in devs group.
|
|
|
|
customized warning message
|
|
|
|
$ hg --config grpcheck.warning=foo log
|
|
foo
|
|
|
|
no warning if HGPLAIN or grpcheck.warning is empty
|
|
|
|
$ hg --config grpcheck.warning= log
|
|
$ HGPLAIN=1 hg log
|
|
|
|
warning does not affect write action (commit)
|
|
|
|
$ touch a
|
|
$ hg commit -A a -m a
|
|
You should be in devs group.
|
|
$ hg log -T '{rev} {node}\n'
|
|
You should be in devs group.
|
|
0 3903775176ed42b1458a6281db4a0ccf4d9f287a
|
|
|
|
config overrides
|
|
|
|
$ HGPLAIN=1 hg config --untrusted chgserver.idletimeout
|
|
3
|
|
$ cd .. # use repo ui
|
|
$ HGPLAIN=1 hg config --untrusted ui.foo
|
|
bar
|