sapling/eden/scm/tests/test-hgsql-pushrebase.t
Jun Wu 34d8dca79a dispatch: run command in non-main thread
Summary:
This extends the Ctrl+C special handling from edenapi to the entire Python
command so Ctrl+C should be able to exit the program even if it's running
some blocking Rust functions.

`edenapi` no longer needs to spawn threads for fetching.

Reviewed By: singhsrb

Differential Revision: D23759710

fbshipit-source-id: cbaaa8e5f93d8d74a8692117a00d9de20646d232
2020-09-18 18:47:24 -07:00

52 lines
1.3 KiB
Perl

#chg-compatible
$ . "$TESTDIR/hgsql/library.sh"
$ disable treemanifest
$ enable pushrebase
$ setconfig experimental.bundle2lazylocking=True
Test verify sql lock is not held during prelockrebase and txnclose hooks
$ cat >> $TESTTMP/locktester.py <<EOF
> import os
> from edenscm.mercurial import extensions, bundle2, util
> def checklock(repo, *args, **kwargs):
> if len(repo.heldlocks) > 0:
> raise util.Abort("lock was TAKEN")
> raise util.Abort("lock was FREE")
> EOF
$ initserver master master
$ cat >> master/.hg/hgrc <<EOF
> [hooks]
> prepushrebase=python:$TESTTMP/locktester.py:checklock
> txnclose=python:$TESTTMP/locktester.py:checklock
> EOF
$ cd master
$ touch a && hg ci -Aqm a
error: txnclose hook failed: lock was FREE
(run with --traceback for stack trace)
$ hg book master
error: txnclose hook failed: lock was FREE
(run with --traceback for stack trace)
$ cd ..
$ initclient client
$ cd client
$ hg pull -q ssh://user@dummy/master
$ hg up -q master
$ touch b && hg ci -Aqm b
$ hg push ssh://user@dummy/master --to master
pushing to ssh://user@dummy/master
searching for changes
remote: lock was FREE
remote: error: prepushrebase hook failed: lock was FREE
abort: push failed on remote
[255]
$ cd ../master
$ hg log -T '{rev}\n'
0