##// END OF EJS Templates
hgweb: support constructing URLs from an alternate base URL...
hgweb: support constructing URLs from an alternate base URL The web.baseurl config option allows server operators to define a custom URL for hosted content. The way it works today is that hgwebdir parses this config option into URL components then updates the appropriate WSGI environment variables so the request "lies" about its details. For example, SERVER_NAME is updated to reflect the alternate base URL's hostname. The WSGI environment should not be modified because WSGI applications may want to know the original request details (for debugging, etc). This commit teaches our request parser about the existence of an alternate base URL. If defined, the advertised URL and other self-reflected paths will take the alternate base URL into account. The hgweb WSGI application didn't use web.baseurl. But hgwebdir did. We update hgwebdir to alter the environment parsing accordingly. The old code around environment manipulation has been removed. With this change, parserequestfromenv() has grown to a bit unwieldy. Now that practically everyone is using it, it is obvious that there is some unused features that can be trimmed. So look for this in follow-up commits. Differential Revision: https://phab.mercurial-scm.org/D2822

File last commit:

r34662:eb586ed5 default
r36916:219b2335 default
Show More
test-incoming-outgoing.t
553 lines | 12.5 KiB | text/troff | Tads3Lexer
/ tests / test-incoming-outgoing.t
Matt Mackall
tests: replace exit 80 with #require
r22046 #require serve
Mads Kiilerich
tests: use 'hghave serve' to guard tests that requires serve daemon management
r15446
Martin Geisler
tests: remove redundant mkdir...
r13956 $ hg init test
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 $ cd test
$ for i in 0 1 2 3 4 5 6 7 8; do
> echo $i >> foo
Martin Geisler
tests: remove unneeded -d flags...
r12156 > hg commit -A -m $i
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 > done
adding foo
$ hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
1 files, 9 changesets, 9 total revisions
$ hg serve -p $HGPORT -d --pid-file=hg.pid
$ cat hg.pid >> $DAEMON_PIDS
$ cd ..
$ hg init new
http incoming
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg -R new incoming http://localhost:$HGPORT/
Mads Kiilerich
tests: reintroduce ":$HGPORT" in test output...
r12643 comparing with http://localhost:$HGPORT/
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 2:d9f42cd1a1ec
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 2
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 3:376476025137
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 3
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 4:70d7eb252d49
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 4
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 5:ad284ee3b5ee
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 5
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 6:e9229f2de384
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 6
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 7:d152815bb8db
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 7
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 8:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 8
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg -R new incoming -r 4 http://localhost:$HGPORT/
Mads Kiilerich
tests: reintroduce ":$HGPORT" in test output...
r12643 comparing with http://localhost:$HGPORT/
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 2:d9f42cd1a1ec
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 2
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 3:376476025137
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 3
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 4:70d7eb252d49
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 4
local incoming
$ hg -R new incoming test
comparing with test
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 2:d9f42cd1a1ec
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 2
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 3:376476025137
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 3
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 4:70d7eb252d49
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 4
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 5:ad284ee3b5ee
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 5
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 6:e9229f2de384
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 6
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 7:d152815bb8db
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 7
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 8:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 8
$ hg -R new incoming -r 4 test
comparing with test
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 2:d9f42cd1a1ec
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 2
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 3:376476025137
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 3
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 4:70d7eb252d49
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 4
limit to 2 changesets
$ hg -R new incoming -l 2 test
comparing with test
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
limit to 2 changesets, test with -p --git
$ hg -R new incoming -l 2 -p --git test
comparing with test
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
diff --git a/foo b/foo
new file mode 100644
--- /dev/null
+++ b/foo
@@ -0,0 +1,1 @@
+0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
diff --git a/foo b/foo
--- a/foo
+++ b/foo
@@ -1,1 +1,2 @@
0
+1
test with --bundle
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg -R new incoming --bundle test.hg http://localhost:$HGPORT/
Mads Kiilerich
tests: reintroduce ":$HGPORT" in test output...
r12643 comparing with http://localhost:$HGPORT/
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 2:d9f42cd1a1ec
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 2
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 3:376476025137
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 3
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 4:70d7eb252d49
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 4
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 5:ad284ee3b5ee
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 5
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 6:e9229f2de384
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 6
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 7:d152815bb8db
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 7
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 8:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 8
$ hg -R new incoming --bundle test2.hg test
comparing with test
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 0:00a43fa82f62
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 0
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 1:5460a410df01
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 2:d9f42cd1a1ec
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 2
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 3:376476025137
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 3
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 4:70d7eb252d49
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 4
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 5:ad284ee3b5ee
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 5
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 6:e9229f2de384
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 6
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 7:d152815bb8db
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 7
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 8:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 8
test the resulting bundles
$ hg init temp
$ hg init temp2
$ hg -R temp unbundle test.hg
adding changesets
adding manifests
adding file changes
added 9 changesets with 9 changes to 1 files
Denis Laxalde
transaction-summary: show the range of new revisions upon pull/unbundle (BC)...
r34662 new changesets 00a43fa82f62:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 (run 'hg update' to get a working copy)
$ hg -R temp2 unbundle test2.hg
adding changesets
adding manifests
adding file changes
added 9 changesets with 9 changes to 1 files
Denis Laxalde
transaction-summary: show the range of new revisions upon pull/unbundle (BC)...
r34662 new changesets 00a43fa82f62:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 (run 'hg update' to get a working copy)
$ hg -R temp tip
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 8:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 8
$ hg -R temp2 tip
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 8:e4feb4ac9035
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 8
$ rm -r temp temp2 new
test outgoing
$ hg clone test test-dev
updating to branch default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd test-dev
$ for i in 9 10 11 12 13; do
> echo $i >> foo
Martin Geisler
tests: remove unneeded -d flags...
r12156 > hg commit -A -m $i
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 > done
$ hg verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
1 files, 14 changesets, 14 total revisions
$ cd ..
$ hg -R test-dev outgoing test
comparing with test
searching for changes
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 9:d89d4abea5bc
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 9
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 10:820095aa7158
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 10
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 11:09ede2f3a638
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 11
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 12:e576b1bed305
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 12
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 13:96bbff09a7cc
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 13
Alain Leufroy <alain.leufroyATgmailMYDOTcom>
outgoing: display info about secret changets while no sharable changeset found
r15992 test outgoing with secret changesets
$ hg -R test-dev phase --force --secret 9
$ hg -R test-dev outgoing test
comparing with test
searching for changes
Matt Mackall
scmutil: unify some 'no changes found' messages...
r15993 no changes found (ignored 5 secret changesets)
Alain Leufroy <alain.leufroyATgmailMYDOTcom>
outgoing: display info about secret changets while no sharable changeset found
r15992 [1]
$ hg -R test-dev phase --draft -r 'head()'
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118
limit to 3 changesets
$ hg -R test-dev outgoing -l 3 test
comparing with test
searching for changes
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 9:d89d4abea5bc
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 9
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 10:820095aa7158
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 10
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 11:09ede2f3a638
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 11
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg -R test-dev outgoing http://localhost:$HGPORT/
Mads Kiilerich
tests: reintroduce ":$HGPORT" in test output...
r12643 comparing with http://localhost:$HGPORT/
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 searching for changes
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 9:d89d4abea5bc
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 9
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 10:820095aa7158
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 10
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 11:09ede2f3a638
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 11
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 12:e576b1bed305
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 12
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 13:96bbff09a7cc
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 tag: tip
user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 13
Matt Mackall
tests: drop a bunch of sed calls from unified tests
r12366 $ hg -R test-dev outgoing -r 11 http://localhost:$HGPORT/
Mads Kiilerich
tests: reintroduce ":$HGPORT" in test output...
r12643 comparing with http://localhost:$HGPORT/
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 searching for changes
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 9:d89d4abea5bc
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 9
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 10:820095aa7158
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 10
Martin Geisler
tests: remove unneeded -d flags...
r12156 changeset: 11:09ede2f3a638
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 user: test
Martin Geisler
tests: remove unneeded -d flags...
r12156 date: Thu Jan 01 00:00:00 1970 +0000
Nicolas Dumazet
tests: unify test-incoming-outgoing
r12118 summary: 11
Andrew Pritchard
setdiscovery: return anyincoming=False when remote's only head is nullid...
r14981
incoming from empty remote repository
$ hg init r1
$ hg init r2
$ echo a > r1/foo
$ hg -R r1 ci -Ama
adding foo
$ hg -R r1 incoming r2 --bundle x.hg
comparing with r2
searching for changes
no changes found
[1]
Hollis Blanchard
outgoing: respect ":pushurl" paths (issue5365)...
r35454
Create a "split" repo that pulls from r1 and pushes to r2, using default-push
$ hg clone r1 split
updating to branch default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cat > split/.hg/hgrc << EOF
> [paths]
> default = $TESTTMP/r3
> default-push = $TESTTMP/r2
> EOF
$ hg -R split outgoing
comparing with $TESTTMP/r2
searching for changes
changeset: 0:3e92d79f743a
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: a
Use default:pushurl instead of default-push
Windows needs a leading slash to make a URL that passes all of the checks
$ WD=`pwd`
#if windows
$ WD="/$WD"
#endif
$ cat > split/.hg/hgrc << EOF
> [paths]
> default = $WD/r3
> default:pushurl = file://$WD/r2
> EOF
$ hg -R split outgoing
comparing with file:/*/$TESTTMP/r2 (glob)
searching for changes
changeset: 0:3e92d79f743a
tag: tip
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: a
Push and then double-check outgoing
$ echo a >> split/foo
$ hg -R split commit -Ama
$ hg -R split push
pushing to file:/*/$TESTTMP/r2 (glob)
searching for changes
adding changesets
adding manifests
adding file changes
added 2 changesets with 2 changes to 1 files
$ hg -R split outgoing
comparing with file:/*/$TESTTMP/r2 (glob)
searching for changes
no changes found
[1]