sapling/eden/scm/tests/test-hgsql-sqlverify.t
Jun Wu 4da3addbee tests: migrate off rev numbers for more tests
Summary:
Change by `fix-revnum.py`. Part of the tests using `hg debugstrip`,
which I'm trying to avoid.

Reviewed By: DurhamG

Differential Revision: D22240181

fbshipit-source-id: a569b712fe4b985378e5c61c000deecccefbc488
2020-07-06 14:04:28 -07:00

55 lines
1.7 KiB
Perl

#chg-compatible
$ . "$TESTDIR/hgsql/library.sh"
$ disable treemanifest
Populate the db with an initial commit
$ initserver master masterrepo
$ cd master
$ echo a > a
$ hg commit -Aqm 'add a'
$ echo b > b
$ hg commit -Aqm 'add b'
$ hg up -q 1f0dee641bb7258c56bd60e93edfa2405381c41e
$ echo c > c
$ hg commit -Aqm 'add c'
Run with a correct revlog
$ hg sqlverify
Verification passed
Run with incorrect local revlogs
$ hg debugstrip -r 7c3bad9141dcb46ff89abf5f61856facd56e476c --config hgsql.bypass=True
$ hg unbundle --config hgsql.bypass=True $TESTTMP/master/.hg/strip-backup/7c3bad9141dc-81844e36-backup.hg
adding changesets
adding manifests
adding file changes
added 1 changesets with 1 changes to 1 files
$ hg log -r tip --forcesync -T '{desc}\n'
add b
$ hg sqlverify >$TESTTMP/sqlverify.out 2>&1 || true
$ grep "Corruption.*linkrev" $TESTTMP/sqlverify.out || cat $TESTTMP/sqlverify.out
*CorruptionException: * with linkrev *, disk does not match mysql (glob)
$ hg debugstrip -q -r d67cd0334eeecfded222fed9009f0db4beb57585: --config hgsql.bypass=True --no-backup
$ hg log -r tip --forcesync -T '\n'
Run with correct changelog but incorrect revlogs
$ hg sqlverify
Verification passed
$ mkdir .hg/store/backups
$ cp .hg/store/00changelog* .hg/store/backups/
$ echo >> a
$ hg commit -qm "modify a" --config hgsql.bypass=True
$ cp .hg/store/backups/* .hg/store/
$ hg sqlverify
corruption: 'data/a.i:eb2346e7cf59326667069bf8647698840687803d' with linkrev 3 exists on local disk, but not in sql
corruption: '00manifest.i:05e2c764eb21dd7c597aab767cec621af1292344' with linkrev 3 exists on local disk, but not in sql
abort: Verification failed
[255]