sapling/eden/scm/tests/test-crdump-commitcloud.t
Durham Goode 54484268fb py3: more commit cloud fixes
Summary:
Notably, we drop all the encoding business when dealing with json
objects, and instead use mercurial.json.

Reviewed By: sfilipco

Differential Revision: D19888130

fbshipit-source-id: 2101c32833484c37ce4376a61220b1b0afeb175a
2020-02-28 11:32:16 -08:00

36 lines
1.0 KiB
Perl

#chg-compatible
$ . "$TESTDIR/library.sh"
$ . "$TESTDIR/infinitepush/library.sh"
$ setupcommon
$ enable crdump remotenames
$ setconfig crdump.commitcloud=true
Setup server
$ hg init repo
$ cd repo
$ setupserver
$ cd ../
$ hg clone ssh://user@dummy/repo client -q
$ cd client
$ echo a >> a
$ hg commit -Aqm "added a" --config infinitepushbackup.autobackup=False
commit_cloud should be false when commitcloud is broken
$ hg debugcrdump -r . --config paths.default=xxxxx | grep commit_cloud
"commit_cloud": false,
debugcrdump should upload the commit and commit_cloud should be true when
commitcloud is working
$ hg debugcrdump -r . | grep commit_cloud
remote: pushing 1 commit:
remote: 9092f1db7931 added a
"commit_cloud": true,
debugcrdump should not attempt to access the network if the commit was
previously backed up (as shown by the lack of error when given a faulty path)
$ hg debugcrdump -r . --config ui.ssh=false | grep commit_cloud
"commit_cloud": true,