##// END OF EJS Templates
recover: only apply last journal record per file (issue6423)...
recover: only apply last journal record per file (issue6423) This got broken in 2019 when the size check was introduced. It is most noticable when dealing with transactions that involve an inline to non-inline revlog storage transaction. It wasn't seen as much at the time because the in-memory journal actually de-duplicated the entry implicity, but since 63edc384d3b7 the on-disk journal is used for rollback as well as recover. Differential Revision: https://phab.mercurial-scm.org/D10726

File last commit:

r48061:672f48cf default
r48061:672f48cf default
Show More
test-transaction-rollback-on-revlog-split.t
170 lines | 5.1 KiB | text/troff | Tads3Lexer
/ tests / test-transaction-rollback-on-revlog-split.t
Joerg Sonnenberger
revlog: fix index computation during inline->non-inline transition...
r48059 Test correctness of revlog inline -> non-inline transition
----------------------------------------------------------
Joerg Sonnenberger
revlog: update data file record before index rename...
r48060 Helper extension to intercept renames.
$ cat > $TESTTMP/intercept_rename.py << EOF
> import os
> import sys
> from mercurial import extensions, util
>
> def extsetup(ui):
> def close(orig, *args, **kwargs):
> path = args[0]._atomictempfile__name
> if path.endswith(b'/.hg/store/data/file.i'):
> os._exit(80)
> return orig(*args, **kwargs)
> extensions.wrapfunction(util.atomictempfile, 'close', close)
> EOF
Joerg Sonnenberger
revlog: fix index computation during inline->non-inline transition...
r48059 Test offset computation to correctly factor in the index entries themselve.
Joerg Sonnenberger
revlog: update data file record before index rename...
r48060 Also test that the new data size has the correct size if the transaction is aborted
after the index has been replaced.
Joerg Sonnenberger
revlog: fix index computation during inline->non-inline transition...
r48059 Test repo has one small, one moderate and one big change. The clone has
the small and moderate change and will transition to non-inline storage when
adding the big change.
$ hg init troffset-computation --config format.revlog-compression=none
$ cd troffset-computation
$ printf '% 20d' '1' > file
$ hg commit -Aqm_
$ printf '% 1024d' '1' > file
$ hg commit -Aqm_
$ dd if=/dev/zero of=file bs=1k count=128 > /dev/null 2>&1
$ hg commit -Aqm_
$ cd ..
$ hg clone -r 1 troffset-computation troffset-computation-copy --config format.revlog-compression=none -q
$ cd troffset-computation-copy
Joerg Sonnenberger
revlog: update data file record before index rename...
r48060
Reference size:
$ f -s .hg/store/data/file*
.hg/store/data/file.i: size=1174
Joerg Sonnenberger
revlog: fix index computation during inline->non-inline transition...
r48059 $ cat > .hg/hgrc <<EOF
> [hooks]
> pretxnchangegroup = python:$TESTDIR/helper-killhook.py:killme
> EOF
$ hg pull ../troffset-computation
pulling from ../troffset-computation
[80]
Joerg Sonnenberger
revlog: update data file record before index rename...
r48060
The first file.i entry should match the size above.
The first file.d entry is the temporary record during the split,
the second entry after the split happened. The sum of the second file.d
and the second file.i entry should match the first file.i entry.
$ cat .hg/store/journal | tr -s '\000' ' ' | grep data/file
data/file.i 1174
data/file.d 0
data/file.d 1046
Joerg Sonnenberger
revlog: fix index computation during inline->non-inline transition...
r48059 data/file.i 128
Joerg Sonnenberger
recover: only apply last journal record per file (issue6423)...
r48061 $ hg recover
rolling back interrupted transaction
(verify step skipped, run `hg verify` to check your repository content)
$ f -s .hg/store/data/file*
.hg/store/data/file.d: size=1046
.hg/store/data/file.i: size=128
$ hg tip
changeset: 1:3ce491143aec
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: _
$ hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
warning: revlog 'data/file.d' not in fncache!
checked 2 changesets with 2 changes to 1 files
1 warnings encountered!
hint: run "hg debugrebuildfncache" to recover from corrupt fncache
Joerg Sonnenberger
revlog: update data file record before index rename...
r48060 $ cd ..
Joerg Sonnenberger
recover: only apply last journal record per file (issue6423)...
r48061
Now retry the procedure but intercept the rename of the index and check that
Joerg Sonnenberger
revlog: update data file record before index rename...
r48060 the journal does not contain the new index size. This demonstrates the edge case
where the data file is left as garbage.
$ hg clone -r 1 troffset-computation troffset-computation-copy2 --config format.revlog-compression=none -q
$ cd troffset-computation-copy2
$ cat > .hg/hgrc <<EOF
> [extensions]
> intercept_rename = $TESTTMP/intercept_rename.py
> [hooks]
> pretxnchangegroup = python:$TESTDIR/helper-killhook.py:killme
> EOF
$ hg pull ../troffset-computation
pulling from ../troffset-computation
[80]
$ cat .hg/store/journal | tr -s '\000' ' ' | grep data/file
data/file.i 1174
data/file.d 0
data/file.d 1046
Joerg Sonnenberger
recover: only apply last journal record per file (issue6423)...
r48061
$ hg recover
rolling back interrupted transaction
(verify step skipped, run `hg verify` to check your repository content)
$ f -s .hg/store/data/file*
.hg/store/data/file.d: size=1046
.hg/store/data/file.i: size=1174
$ hg tip
changeset: 1:3ce491143aec
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: _
$ hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
checked 2 changesets with 2 changes to 1 files
Joerg Sonnenberger
revlog: update data file record before index rename...
r48060 $ cd ..
Joerg Sonnenberger
recover: only apply last journal record per file (issue6423)...
r48061
Repeat the original test but let hg rollback the transaction.
$ hg clone -r 1 troffset-computation troffset-computation-copy-rb --config format.revlog-compression=none -q
$ cd troffset-computation-copy-rb
$ cat > .hg/hgrc <<EOF
> [hooks]
> pretxnchangegroup = false
> EOF
$ hg pull ../troffset-computation
pulling from ../troffset-computation
searching for changes
adding changesets
adding manifests
adding file changes
transaction abort!
rollback completed
abort: pretxnchangegroup hook exited with status 1
[40]
$ f -s .hg/store/data/file*
.hg/store/data/file.d: size=1046
.hg/store/data/file.i: size=128
$ hg tip
changeset: 1:3ce491143aec
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: _
$ hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
warning: revlog 'data/file.d' not in fncache!
checked 2 changesets with 2 changes to 1 files
1 warnings encountered!
hint: run "hg debugrebuildfncache" to recover from corrupt fncache
$ cd ..