##// END OF EJS Templates
wireprotov2: define and implement "manifestdata" command...
wireprotov2: define and implement "manifestdata" command The added command can be used for obtaining manifest data. Given a manifest path and set of manifest nodes, data about manifests can be retrieved. Unlike changeset data, we wish to emit deltas to describe manifest revisions. So the command uses the relatively new API for building delta requests and emitting them. The code calls into deltaparent(), which I'm not very keen of. There's still work to be done in delta generation land so implementation details of storage (e.g. exactly one delta is stored/available) don't creep into higher levels. But we can worry about this later (there is already a TODO on imanifestorage tracking this). On the subject of parent deltas, the server assumes parent revisions exist on the receiving end. This is obviously wrong for shallow clone. I've added TODOs to add a mechanism to the command to allow clients to specify desired behavior. This shouldn't be too difficult to implement. Another big change is that the client must explicitly request manifest nodes to retrieve. This is a major departure from "getbundle," where the server derives relevant manifests as it iterates changesets and sends them automatically. As implemented, the client must transmit each requested node to the server. At 20 bytes per node, we're looking at 2 MB per 100,000 nodes. Plus wire encoding overhead. This isn't ideal for clients with limited upload bandwidth. I plan to address this in the future by allowing alternate mechanisms for defining the revisions to retrieve. One idea is to define a range of changeset revisions whose manifest revisions to retrieve (similar to how "changesetdata" works). We almost certainly want an API to look up an individual manifest by node. And that's where I've chosen to start with the implementation. Again, a theme of this early exchangev2 work is I want to start by building primitives for accessing raw repository data first and see how far we can get with those before we need more complexity. Differential Revision: https://phab.mercurial-scm.org/D4488

File last commit:

r13519:43b3b761 default
r39673:c7a7c7e8 default
Show More
test-eol-patch.t
400 lines | 7.0 KiB | text/troff | Tads3Lexer
Matt Mackall
tests: unify test-eol-patch
r12420 Test EOL patching
Martin Geisler
tests: don't overwrite HGRCPATH...
r13519 $ cat >> $HGRCPATH <<EOF
Matt Mackall
tests: unify test-eol-patch
r12420 > [diff]
> git = 1
> EOF
Set up helpers
$ seteol () {
> if [ $1 = "LF" ]; then
> EOL='\n'
> else
> EOL='\r\n'
> fi
> }
$ makerepo () {
> seteol $1
> echo
> echo "# ==== setup $1 repository ===="
> echo '% hg init'
> hg init repo
> cd repo
> cat > .hgeol <<EOF
> [repository]
> native = $1
> [patterns]
> unix.txt = LF
> win.txt = CRLF
> **.txt = native
> EOF
> printf "first\r\nsecond\r\nthird\r\n" > win.txt
> printf "first\nsecond\nthird\n" > unix.txt
> printf "first${EOL}second${EOL}third${EOL}" > native.txt
> hg commit --addremove -m 'checkin'
> cd ..
> }
$ dotest () {
> seteol $1
> echo
> echo "% hg clone repo repo-$1"
> hg clone --noupdate repo repo-$1
> cd repo-$1
> cat > .hg/hgrc <<EOF
> [extensions]
> eol =
> [eol]
> native = $1
> EOF
> hg update
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 > echo '% native.txt'
> cat native.txt
> echo '% unix.txt'
> cat unix.txt
> echo '% win.txt'
> cat win.txt
Matt Mackall
tests: unify test-eol-patch
r12420 > printf "first${EOL}third${EOL}" > native.txt
> printf "first\r\nthird\r\n" > win.txt
> printf "first\nthird\n" > unix.txt
> echo '% hg diff'
> hg diff > p
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 > cat p
Matt Mackall
tests: unify test-eol-patch
r12420 > echo '% hg revert'
> hg revert --all
> echo '% hg import'
> hg import -m 'patch' p
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 > echo '% native.txt'
> cat native.txt
> echo '% unix.txt'
> cat unix.txt
> echo '% win.txt'
> cat win.txt
Matt Mackall
tests: unify test-eol-patch
r12420 > echo '% hg diff -c tip'
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 > hg diff -c tip
Matt Mackall
tests: unify test-eol-patch
r12420 > cd ..
> rm -r repo-$1
> }
Run tests
$ makerepo LF
# ==== setup LF repository ====
% hg init
adding .hgeol
adding native.txt
adding unix.txt
adding win.txt
$ dotest LF
% hg clone repo repo-LF
4 files updated, 0 files merged, 0 files removed, 0 files unresolved
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
second
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
second
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg revert
reverting native.txt
reverting unix.txt
reverting win.txt
% hg import
applying p
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff -c tip
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 $ dotest CRLF
% hg clone repo repo-CRLF
4 files updated, 0 files merged, 0 files removed, 0 files unresolved
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
first\r (esc)
second\r (esc)
third\r (esc)
% unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
second
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg revert
reverting native.txt
reverting unix.txt
reverting win.txt
% hg import
applying p
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
first\r (esc)
third\r (esc)
% unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff -c tip
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 $ rm -r repo
$ makerepo CRLF
# ==== setup CRLF repository ====
% hg init
adding .hgeol
adding native.txt
adding unix.txt
adding win.txt
$ dotest LF
% hg clone repo repo-LF
4 files updated, 0 files merged, 0 files removed, 0 files unresolved
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
second
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
second
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg revert
reverting native.txt
reverting unix.txt
reverting win.txt
% hg import
applying p
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff -c tip
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 $ dotest CRLF
% hg clone repo repo-CRLF
4 files updated, 0 files merged, 0 files removed, 0 files unresolved
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
first\r (esc)
second\r (esc)
third\r (esc)
% unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
second
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg revert
reverting native.txt
reverting unix.txt
reverting win.txt
% hg import
applying p
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % native.txt
first\r (esc)
third\r (esc)
% unix.txt
Matt Mackall
tests: unify test-eol-patch
r12420 first
third
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 % win.txt
first\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 % hg diff -c tip
diff --git a/native.txt b/native.txt
--- a/native.txt
+++ b/native.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 diff --git a/unix.txt b/unix.txt
--- a/unix.txt
+++ b/unix.txt
@@ -1,3 +1,2 @@
first
-second
third
diff --git a/win.txt b/win.txt
--- a/win.txt
+++ b/win.txt
@@ -1,3 +1,2 @@
Mads Kiilerich
tests: use (esc) instead of other kinds of string escaping
r12943 first\r (esc)
-second\r (esc)
third\r (esc)
Matt Mackall
tests: unify test-eol-patch
r12420 $ rm -r repo