mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
54484268fb
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
74 lines
3.3 KiB
Raku
74 lines
3.3 KiB
Raku
#chg-compatible
|
|
|
|
$ disable treemanifest
|
|
$ . "$TESTDIR/library.sh"
|
|
$ . "$TESTDIR/infinitepush/library.sh"
|
|
$ setupcommon
|
|
$ hg init repo
|
|
$ cd repo
|
|
$ setupserver
|
|
$ cd ..
|
|
$ hg clone ssh://user@dummy/repo client -q
|
|
|
|
$ cat >> $TESTTMP/uilog.py <<EOF
|
|
> from edenscm.mercurial import extensions
|
|
> from edenscm.mercurial import ui as uimod
|
|
> def uisetup(ui):
|
|
> extensions.wrapfunction(uimod.ui, 'log', mylog)
|
|
> def mylog(orig, self, service, *msg, **opts):
|
|
> if service in ['infinitepush']:
|
|
> kwstr = ", ".join("%s=%s" % (k, v) for k, v in
|
|
> sorted(opts.items()))
|
|
> msgstr = msg[0] % msg[1:]
|
|
> self.warn('%s: %s (%s)\n' % (service, msgstr, kwstr))
|
|
> return orig(self, service, *msg, **opts)
|
|
> EOF
|
|
$ cat >> repo/.hg/hgrc <<EOF
|
|
> [extensions]
|
|
> uilog=$TESTTMP/uilog.py
|
|
> EOF
|
|
|
|
$ cd client
|
|
$ mkcommit commit
|
|
$ hg push -r . --to scratch/scratchpush --create
|
|
pushing to ssh://user@dummy/repo
|
|
searching for changes
|
|
remote: infinitepush: b2x:infinitepush \(eventtype=start, hostname=.+, requestid=\d+, user=\w+\) (re)
|
|
remote: pushing 1 commit:
|
|
remote: 7e6a6fd9c7c8 commit
|
|
remote: infinitepush: bundlestore \(bundlesize=546, eventtype=start, hostname=.+, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
remote: infinitepush: bundlestore \(bundlesize=546, elapsedms=.+, eventtype=success, hostname=.+, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
remote: infinitepush: index \(eventtype=start, hostname=.+, newheadscount=1, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
remote: infinitepush: index \(elapsedms=.+, eventtype=success, hostname=.+, newheadscount=1, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
remote: infinitepush: b2x:infinitepush \(elapsedms=.+, eventtype=success, hostname=.+, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
$ cd ..
|
|
|
|
Check that logging works for b2x:infinitepushscratchbookmarks part
|
|
$ cd client
|
|
$ hg cloud backup
|
|
nothing to back up
|
|
remote: infinitepush: b2x:infinitepushscratchbookmarks \(eventtype=start, hostname=.+, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
remote: infinitepush: b2x:infinitepushscratchbookmarks \(elapsedms=.+, eventtype=success, hostname=.+, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
$ cd ..
|
|
|
|
Make upload to bundlestore fail
|
|
$ cat >> repo/.hg/hgrc <<EOF
|
|
> [scratchbranch]
|
|
> storepath=/dev/null
|
|
> EOF
|
|
$ cd client
|
|
$ mkcommit failpushcommit
|
|
$ hg push -r . --to scratch/scratchpush 2>err
|
|
pushing to ssh://user@dummy/repo
|
|
searching for changes
|
|
[255]
|
|
$ grep '^remote: ' err
|
|
remote: infinitepush: b2x:infinitepush \(eventtype=start, hostname=.+, requestid=\d+, user=\w+\) (re)
|
|
remote: pushing 2 commits:
|
|
remote: 7e6a6fd9c7c8 commit
|
|
remote: bba29d9d577a failpushcommit
|
|
remote: infinitepush: bundlestore \(bundlesize=1067, eventtype=start, hostname=.+, requestid=\d+, user=\w+\) (re)
|
|
remote: infinitepush: bundlestore \(bundlesize=1067, elapsedms=[-+0-9.e]+, errormsg=\[Errno 20\] \$ENOTDIR\$: '/dev/null/\d+', eventtype=failure, hostname=.+, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
remote: infinitepush: b2x:infinitepush \(elapsedms=[-+0-9.e]+, errormsg=\[Errno 20\] \$ENOTDIR\$: '/dev/null/\d+', eventtype=failure, hostname=.+, reponame=babar, requestid=\d+, user=\w+\) (re)
|
|
remote: abort: \$ENOTDIR\$: /dev/null/\d+ (re)
|