sapling/tests/test-hgsql-sqlverify.t
Mark Thomas 742cd624f7 hgsql: integrate with hg-crew
Summary:
Move hgsql into the hgext directory, and the tests to tests/test-hgsql-*.

Update the tests to refer to the new places for things.

Test Plan: Run the hgsql tests and make sure they pass.

Reviewers: #sourcecontrol

Differential Revision: https://phabricator.intern.facebook.com/D6660499

Tasks: T24908724
2018-01-04 07:22:19 -08:00

54 lines
1.6 KiB
Perl

$ . "$TESTDIR/hgsql/library.sh"
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 0
$ echo c > c
$ hg commit -Aqm 'add c'
Run with a correct revlog
$ hg sqlverify
Verification passed
Run with incorrect local revlogs
$ hg strip -r 1 --config hgsql.bypass=True
saved backup bundle to $TESTTMP/master/.hg/strip-backup/7c3bad9141dc-81844e36-backup.hg (glob)
$ 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 (+1 heads)
new changesets 7c3bad9141dc
(run 'hg heads' to see heads, 'hg merge' to merge)
$ hg log -r tip --forcesync -T '{desc}\n'
add b
$ hg sqlverify 2>&1 | grep Corruption
hgext.hgsql.CorruptionException: '*' with linkrev *, disk does not match mysql (glob)
$ hg strip -q -r 1: --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]