Mercurial > hg
comparison tests/test-unbundlehash.t @ 13942:88f0e41d8802
wireproto: allow unbundle with hashed heads parameter (issue2126)
Current wire protocol of unbundle sends the list of all heads in the remote
repository to avoid race condition. This causes "URL too long" error on HTTP
server when the repository has many heads.
This change allows clients to send SHA1 hash of sorted head hashes instead.
Also, this introduces "unbundlehash" capability to inform them that the server
accepts hashed heads parameter.
author | Shuhei Takahashi <takahashi.shuhei@gmail.com> |
---|---|
date | Sat, 16 Apr 2011 01:05:56 +0900 |
parents | |
children | ce99d887585f |
comparison
equal
deleted
inserted
replaced
13941:924f40b977ee | 13942:88f0e41d8802 |
---|---|
1 | |
2 Test wire protocol unbundle with hashed heads (capability: unbundlehash) | |
3 | |
4 Create a remote repository. | |
5 | |
6 $ hg init remote | |
7 $ hg serve -R remote --config web.push_ssl=False --config web.allow_push=* -p $HGPORT -d --pid-file=hg1.pid -E error.log -A access.log | |
8 $ cat hg1.pid >> $DAEMON_PIDS | |
9 | |
10 Clone the repository and push a change. | |
11 | |
12 $ hg clone http://localhost:$HGPORT/ local | |
13 no changes found | |
14 updating to branch default | |
15 0 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
16 $ touch local/README | |
17 $ hg ci -R local -A -m hoge | |
18 adding README | |
19 $ hg push -R local | |
20 pushing to http://localhost:$HGPORT/ | |
21 searching for changes | |
22 remote: adding changesets | |
23 remote: adding manifests | |
24 remote: adding file changes | |
25 remote: added 1 changesets with 1 changes to 1 files | |
26 | |
27 Ensure hashed heads format is used. | |
28 The hash here is always the same since the remote repository only has the null head. | |
29 | |
30 $ cat access.log | grep unbundle | |
31 * - - [*] "POST /?cmd=unbundle&heads=686173686564+6768033e216468247bd031a0a2d9876d79818f8f HTTP/1.1" 200 - (glob) |