test-devel-warnings.t
180 lines
| 6.7 KiB
| text/troff
|
Tads3Lexer
/ tests / test-devel-warnings.t
Pierre-Yves David
|
r24386 | |||
$ cat << EOF > buggylocking.py | ||||
Pierre-Yves David
|
r27270 | > """A small extension that tests our developer warnings | ||
Pierre-Yves David
|
r24386 | > """ | ||
> | ||||
Pierre-Yves David
|
r31950 | > from mercurial import cmdutil, repair, util | ||
Pierre-Yves David
|
r24386 | > | ||
> cmdtable = {} | ||||
> command = cmdutil.command(cmdtable) | ||||
> | ||||
> @command('buggylocking', [], '') | ||||
> def buggylocking(ui, repo): | ||||
> lo = repo.lock() | ||||
> wl = repo.wlock() | ||||
Matt Mackall
|
r24392 | > wl.release() | ||
> lo.release() | ||||
Pierre-Yves David
|
r24744 | > | ||
Pierre-Yves David
|
r29185 | > @command('buggytransaction', [], '') | ||
> def buggylocking(ui, repo): | ||||
> tr = repo.transaction('buggy') | ||||
> # make sure we rollback the transaction as we don't want to rely on the__del__ | ||||
> tr.release() | ||||
> | ||||
Pierre-Yves David
|
r24744 | > @command('properlocking', [], '') | ||
> def properlocking(ui, repo): | ||||
> """check that reentrance is fine""" | ||||
> wl = repo.wlock() | ||||
> lo = repo.lock() | ||||
> tr = repo.transaction('proper') | ||||
> tr2 = repo.transaction('proper') | ||||
> lo2 = repo.lock() | ||||
> wl2 = repo.wlock() | ||||
> wl2.release() | ||||
> lo2.release() | ||||
> tr2.close() | ||||
> tr.close() | ||||
> lo.release() | ||||
> wl.release() | ||||
Pierre-Yves David
|
r24750 | > | ||
> @command('nowaitlocking', [], '') | ||||
> def nowaitlocking(ui, repo): | ||||
> lo = repo.lock() | ||||
> wl = repo.wlock(wait=False) | ||||
> wl.release() | ||||
> lo.release() | ||||
Pierre-Yves David
|
r25300 | > | ||
> @command('stripintr', [], '') | ||||
> def stripintr(ui, repo): | ||||
> lo = repo.lock() | ||||
> tr = repo.transaction('foobar') | ||||
> try: | ||||
> repair.strip(repo.ui, repo, [repo['.'].node()]) | ||||
> finally: | ||||
> lo.release() | ||||
Pierre-Yves David
|
r27275 | > @command('oldanddeprecated', [], '') | ||
> def oldanddeprecated(ui, repo): | ||||
> """test deprecation warning API""" | ||||
> def foobar(ui): | ||||
> ui.deprecwarn('foorbar is deprecated, go shopping', '42.1337') | ||||
> foobar(ui) | ||||
Pierre-Yves David
|
r31950 | > @command('nouiwarning', [], '') | ||
> def nouiwarning(ui, repo): | ||||
> util.nouideprecwarn('this is a test', '13.37') | ||||
Pierre-Yves David
|
r24386 | > EOF | ||
$ cat << EOF >> $HGRCPATH | ||||
> [extensions] | ||||
> buggylocking=$TESTTMP/buggylocking.py | ||||
timeless
|
r28498 | > mock=$TESTDIR/mockblackbox.py | ||
> blackbox= | ||||
Pierre-Yves David
|
r24386 | > [devel] | ||
Pierre-Yves David
|
r25290 | > all-warnings=1 | ||
Pierre-Yves David
|
r24386 | > EOF | ||
$ hg init lock-checker | ||||
$ cd lock-checker | ||||
$ hg buggylocking | ||||
timeless
|
r28016 | devel-warn: "wlock" acquired after "lock" at: $TESTTMP/buggylocking.py:* (buggylocking) (glob) | ||
Pierre-Yves David
|
r24386 | $ cat << EOF >> $HGRCPATH | ||
> [devel] | ||||
> all=0 | ||||
> check-locks=1 | ||||
> EOF | ||||
$ hg buggylocking | ||||
timeless
|
r28016 | devel-warn: "wlock" acquired after "lock" at: $TESTTMP/buggylocking.py:* (buggylocking) (glob) | ||
Pierre-Yves David
|
r24386 | $ hg buggylocking --traceback | ||
Pierre-Yves David
|
r24755 | devel-warn: "wlock" acquired after "lock" at: | ||
Matt Mackall
|
r24555 | */hg:* in * (glob) | ||
Pierre-Yves David
|
r24386 | */mercurial/dispatch.py:* in run (glob) | ||
*/mercurial/dispatch.py:* in dispatch (glob) | ||||
*/mercurial/dispatch.py:* in _runcatch (glob) | ||||
Jun Wu
|
r29761 | */mercurial/dispatch.py:* in callcatch (glob) | ||
Jun Wu
|
r30520 | */mercurial/scmutil.py* in callcatch (glob) | ||
Jun Wu
|
r29761 | */mercurial/dispatch.py:* in _runcatchfunc (glob) | ||
Pierre-Yves David
|
r24386 | */mercurial/dispatch.py:* in _dispatch (glob) | ||
*/mercurial/dispatch.py:* in runcommand (glob) | ||||
*/mercurial/dispatch.py:* in _runcommand (glob) | ||||
*/mercurial/dispatch.py:* in <lambda> (glob) | ||||
*/mercurial/util.py:* in check (glob) | ||||
$TESTTMP/buggylocking.py:* in buggylocking (glob) | ||||
Pierre-Yves David
|
r24744 | $ hg properlocking | ||
Pierre-Yves David
|
r24750 | $ hg nowaitlocking | ||
Pierre-Yves David
|
r25300 | |||
$ echo a > a | ||||
$ hg add a | ||||
$ hg commit -m a | ||||
Jun Wu
|
r31645 | $ hg stripintr 2>&1 | egrep -v '^(\*\*| )' | ||
timeless
|
r28016 | saved backup bundle to $TESTTMP/lock-checker/.hg/strip-backup/*-backup.hg (glob) | ||
Jun Wu
|
r31645 | Traceback (most recent call last): | ||
mercurial.error.ProgrammingError: cannot strip from inside a transaction | ||||
Pierre-Yves David
|
r25300 | |||
Pierre-Yves David
|
r27275 | $ hg oldanddeprecated | ||
devel-warn: foorbar is deprecated, go shopping | ||||
timeless
|
r28016 | (compatibility will be dropped after Mercurial-42.1337, update your code.) at: $TESTTMP/buggylocking.py:* (oldanddeprecated) (glob) | ||
Pierre-Yves David
|
r25630 | |||
Pierre-Yves David
|
r27275 | $ hg oldanddeprecated --traceback | ||
devel-warn: foorbar is deprecated, go shopping | ||||
(compatibility will be dropped after Mercurial-42.1337, update your code.) at: | ||||
*/hg:* in <module> (glob) | ||||
*/mercurial/dispatch.py:* in run (glob) | ||||
*/mercurial/dispatch.py:* in dispatch (glob) | ||||
*/mercurial/dispatch.py:* in _runcatch (glob) | ||||
Jun Wu
|
r29761 | */mercurial/dispatch.py:* in callcatch (glob) | ||
Jun Wu
|
r30520 | */mercurial/scmutil.py* in callcatch (glob) | ||
Jun Wu
|
r29761 | */mercurial/dispatch.py:* in _runcatchfunc (glob) | ||
Pierre-Yves David
|
r27275 | */mercurial/dispatch.py:* in _dispatch (glob) | ||
*/mercurial/dispatch.py:* in runcommand (glob) | ||||
*/mercurial/dispatch.py:* in _runcommand (glob) | ||||
*/mercurial/dispatch.py:* in <lambda> (glob) | ||||
*/mercurial/util.py:* in check (glob) | ||||
$TESTTMP/buggylocking.py:* in oldanddeprecated (glob) | ||||
Yuya Nishihara
|
r31809 | $ hg blackbox -l 7 | ||
timeless
|
r28498 | 1970/01/01 00:00:00 bob @cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b (5000)> oldanddeprecated | ||
1970/01/01 00:00:00 bob @cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b (5000)> devel-warn: foorbar is deprecated, go shopping | ||||
(compatibility will be dropped after Mercurial-42.1337, update your code.) at: $TESTTMP/buggylocking.py:* (oldanddeprecated) (glob) | ||||
1970/01/01 00:00:00 bob @cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b (5000)> oldanddeprecated exited 0 after * seconds (glob) | ||||
1970/01/01 00:00:00 bob @cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b (5000)> oldanddeprecated --traceback | ||||
1970/01/01 00:00:00 bob @cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b (5000)> devel-warn: foorbar is deprecated, go shopping | ||||
(compatibility will be dropped after Mercurial-42.1337, update your code.) at: | ||||
*/hg:* in <module> (glob) | ||||
*/mercurial/dispatch.py:* in run (glob) | ||||
*/mercurial/dispatch.py:* in dispatch (glob) | ||||
*/mercurial/dispatch.py:* in _runcatch (glob) | ||||
Jun Wu
|
r29761 | */mercurial/dispatch.py:* in callcatch (glob) | ||
Jun Wu
|
r30520 | */mercurial/scmutil.py* in callcatch (glob) | ||
Jun Wu
|
r29761 | */mercurial/dispatch.py:* in _runcatchfunc (glob) | ||
timeless
|
r28498 | */mercurial/dispatch.py:* in _dispatch (glob) | ||
*/mercurial/dispatch.py:* in runcommand (glob) | ||||
*/mercurial/dispatch.py:* in _runcommand (glob) | ||||
*/mercurial/dispatch.py:* in <lambda> (glob) | ||||
*/mercurial/util.py:* in check (glob) | ||||
$TESTTMP/buggylocking.py:* in oldanddeprecated (glob) | ||||
1970/01/01 00:00:00 bob @cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b (5000)> oldanddeprecated --traceback exited 0 after * seconds (glob) | ||||
Yuya Nishihara
|
r31809 | 1970/01/01 00:00:00 bob @cb9a9f314b8b07ba71012fcdbc544b5a4d82ff5b (5000)> blackbox -l 7 | ||
Pierre-Yves David
|
r29185 | |||
Test programming error failure: | ||||
Pierre-Yves David
|
r29186 | $ hg buggytransaction 2>&1 | egrep -v '^ ' | ||
** Unknown exception encountered with possibly-broken third-party extension buggylocking | ||||
** which supports versions unknown of Mercurial. | ||||
** Please disable buggylocking and try your action again. | ||||
** If that fixes the bug please report it to the extension author. | ||||
** Python * (glob) | ||||
** Mercurial Distributed SCM (*) (glob) | ||||
** Extensions loaded: * (glob) | ||||
Traceback (most recent call last): | ||||
Jun Wu
|
r30574 | mercurial.error.ProgrammingError: transaction requires locking | ||
Pierre-Yves David
|
r29185 | |||
Pierre-Yves David
|
r31950 | Old style deprecation warning | ||
$ hg nouiwarning | ||||
$TESTTMP/buggylocking.py:61: DeprecationWarning: this is a test | ||||
(compatibility will be dropped after Mercurial-13.37, update your code.) | ||||
util.nouideprecwarn('this is a test', '13.37') | ||||
(disabled outside of test run) | ||||
$ HGEMITWARNINGS= hg nouiwarning | ||||
Pierre-Yves David
|
r24386 | $ cd .. | ||