comparison tests/test-sparse-requirement.t @ 33556:22371eabb3b1

sparse: add a requirement when a repository uses sparse (BC) The presence of a sparse checkout can confuse legacy clients or clients without sparse enabled for reasons that should be obvious. This commit introduces a new repository requirement that tracks whether sparse is enabled. The requirement is added when a sparse config is activated and removed when the sparse config is reset. The localrepository constructor has been taught to not open repos with this requirement unless the sparse feature is enabled. It yields a more actionable error message than what you would get if the lockout were handled strictly at the requirements verification phase. Old clients that aren't sparse aware will see the generic "repository requires features unknown to this Mercurial" error, however. The new requirement has "exp" in its name to reflect the experimental nature of sparse. There's a chance that the eventual non-experimental feature won't change significantly and we could have squatted on the "sparse" requirement without ill effect. If that happens, we can teach new clients to still recognize the old name. But I suspect we'll sneak in some BC and we'll want a new requirement to convey new meaning. Differential Revision: https://phab.mercurial-scm.org/D110
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 17 Jul 2017 11:45:38 -0700
parents
children c2c8962a9465
comparison
equal deleted inserted replaced
33555:6755b719048c 33556:22371eabb3b1
1 $ hg init repo
2 $ cd repo
3
4 $ touch a.html b.html c.py d.py
5
6 $ cat > frontend.sparse << EOF
7 > [include]
8 > *.html
9 > EOF
10
11 $ hg -q commit -A -m initial
12
13 $ echo 1 > a.html
14 $ echo 1 > c.py
15 $ hg commit -m 'commit 1'
16
17 Enable sparse profile
18
19 $ cat .hg/requires
20 dotencode
21 fncache
22 generaldelta
23 revlogv1
24 store
25
26 $ hg debugsparse --config extensions.sparse= --enable-profile frontend.sparse
27 $ ls
28 a.html
29 b.html
30
31 Requirement for sparse added when sparse is enabled
32
33 $ cat .hg/requires
34 dotencode
35 exp-sparse
36 fncache
37 generaldelta
38 revlogv1
39 store
40
41 Client without sparse enabled reacts properly
42
43 $ hg files
44 abort: repository is using sparse feature but sparse is not enabled; enable the "sparse" extensions to access!
45 [255]
46
47 Requirement for sparse is removed when sparse is disabled
48
49 $ hg debugsparse --reset --config extensions.sparse=
50
51 $ cat .hg/requires
52 dotencode
53 fncache
54 generaldelta
55 revlogv1
56 store
57
58 And client without sparse can access
59
60 $ hg files
61 a.html
62 b.html
63 c.py
64 d.py
65 frontend.sparse