sapling/eden/scm/tests/test-hggit-nodemap.t
Durham Goode 6078dad33e py3: fix more hggit tests
Summary: These tests now pass with python 3.

Reviewed By: xavierd

Differential Revision: D21011004

fbshipit-source-id: 65ac8f864f6eaf24fa7d3c8b25a013b5e9f28ffe
2020-04-15 11:35:39 -07:00

64 lines
1.8 KiB
Perl

Load commonly used test logic
$ . "$TESTDIR/hggit/testutil"
set up a git repo
$ git init -q gitrepo
$ cd gitrepo
$ echo alpha > alpha
$ git add alpha
$ fn_git_commit -m 'add alpha'
$ git checkout -qb beta
$ echo beta > beta
$ git add beta
$ fn_git_commit -m 'add beta'
$ cd ..
pull a branch with the old mapfile
$ hg init hgrepo
$ cd hgrepo
$ echo "[paths]" >> .hg/hgrc
$ echo "default=$TESTTMP/gitrepo" >> .hg/hgrc
$ hg pull -r master
pulling from $TESTTMP/gitrepo
importing git objects into hg
$ ls -d .hg/git-mapfile*
.hg/git-mapfile
$ hg log -r tip -T '{gitnode}\n'
7eeab2ea75ec1ac0ff3d500b5b6f8a3447dd7c03
pull more commits with the new nodemap
$ setconfig hggit.indexedlognodemap=True
$ hg pull -r beta
pulling from $TESTTMP/gitrepo
importing git objects into hg
$ ls -d .hg/git-mapfile*
.hg/git-mapfile
.hg/git-mapfile-log
$ hg log -r 'tip^::tip' -T '{gitnode}\n'
7eeab2ea75ec1ac0ff3d500b5b6f8a3447dd7c03
9497a4ee62e16ee641860d7677cdb2589ea15554
can still get the mapping without the old map file
$ mv .hg/git-mapfile .hg/git-mapfile.old
$ hg log -r 'tip^::tip' -T '{gitnode}\n'
7eeab2ea75ec1ac0ff3d500b5b6f8a3447dd7c03
9497a4ee62e16ee641860d7677cdb2589ea15554
$ mv .hg/git-mapfile.old .hg/git-mapfile
can still get the mapping without the nodemap
$ mv .hg/git-mapfile-log .hg/git-mapfile-log.old
$ hg log -r 'tip^::tip' -T '{gitnode}\n'
7eeab2ea75ec1ac0ff3d500b5b6f8a3447dd7c03
9497a4ee62e16ee641860d7677cdb2589ea15554
$ mv .hg/git-mapfile-log.old .hg/git-mapfile-log
git cleanup cleans nodemap
$ hg bundle -r tip --base 'tip^' ../mybundle.hg
1 changesets found
$ hg debugstrip -r tip --no-backup
$ hg git-cleanup
git commit map cleaned
$ hg unbundle -q ../mybundle.hg
$ hg log -r tip -T '{gitnode}\n'
9497a4ee62e16ee641860d7677cdb2589ea15554