sapling/tests/test-pushrebase-fastmanifest.t
Durham Goode 0ea8bce203 pushrebase: update fastmanifest test
This test looked like it's been funky since it was introduced. It harded code
an exception from a bug.  The bug was that we're storing bundle manifests in a
cache during pushrebase, and because those manifests are hybrid manifests they
haven't actually loaded from disk. Later we close the bundle, then after that we
try to access these cached manifests, which throws because they can't read from
the file.

The recent change to read the copied files from the manifest before the lock is
taken, forces these manifests to be in loaded, thus fixing the problem. So let's
update the test.
2017-10-26 13:40:59 -07:00

78 lines
1.7 KiB
Perl

Setup
$ PYTHONPATH=$TESTDIR/..:$PYTHONPATH
$ export PYTHONPATH
$ cat >> $HGRCPATH << EOF
> [ui]
> ssh = python "$RUNTESTDIR/dummyssh"
> EOF
Set up server repository
$ hg init server
$ cd server
$ cat >> .hg/hgrc << EOF
> [extensions]
> pushrebase=$TESTDIR/../hgext3rd/pushrebase.py
> EOF
$ echo foo > a
$ echo foo > b
$ hg commit -Am 'initial'
adding a
adding b
$ hg book master
$ cd ..
Set up client repository 1 with pushrebase enabled
$ hg clone -q ssh://user@dummy/server client1
$ cd client1
$ cat >> .hg/hgrc << EOF
> [extensions]
> pushrebase=$TESTDIR/../hgext3rd/pushrebase.py
> EOF
$ cd ..
Set up client repository 2 with pushrebase enabled / fastmanifest enabled
$ hg clone -q ssh://user@dummy/server client2
$ cd client2
$ cat >> .hg/hgrc << EOF
> [extensions]
> pushrebase=$TESTDIR/../hgext3rd/pushrebase.py
> fastmanifest=$TESTDIR/../fastmanifest
> EOF
$ cd ..
Create the dummy commit on client 1
$ cd client1
$ hg book mybook
$ echo "text" >> newfile
$ hg add newfile
$ hg commit -m 'dummy commit'
Test that pushing to a remotename gets rebased (client1 -> client2) works
$ hg push --to mybook ssh://user@dummy/client2
pushing to ssh://user@dummy/client2
searching for changes
remote: pushing 1 changeset:
remote: eb7a4df38d10 dummy commit
$ cd ../client2
$ hg log -G
o changeset: 1:eb7a4df38d10
| tag: tip
| user: test
| date: Thu Jan 01 00:00:00 1970 +0000
| summary: dummy commit
|
@ changeset: 0:2bb9d20e471c
bookmark: master
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: initial