blob: d92bf4ac740555d55bdf1404bd474e2e9a2a83bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# file : tests/rep-fetch-git.test
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# All tests use the same repository infrastructure present in the initial and
# the final states. See tests/common/git/init script for more details.
#
reason_dumb = ' (dumb HTTP)'
reason_unadv = ' (unadvertised commit)'
warn_dumb='
warning: fetching over dumb HTTP, no progress will be shown'
warn_repo_hist = "warning: fetching whole repository history"
warn_ref_hist = "warning: fetching whole reference history"
warn = '%.{0}' # None.
test.cleanups += &cfg/.bpkg/repos/*/***
+if ($git_protocol == 'local')
rep = "$rep_git_local"
elif ($git_protocol == 'https-dumb')
rep = "$rep_git_https_dumb"
elif ($git_protocol == 'https-smart')
rep = "$rep_git_https_smart"
elif ($git_protocol == 'https-smart-unadv')
rep = "$rep_git_https_smart_unadv"
elif ($git_protocol == 'git')
rep = "$rep_git_git"
else
exit "unexpected git protocol '$git_protocol'"
end
# Repository URL prefix for use with git commands.
#
# Note that git supports none of the standard 'file:' URL notations on Windows,
# so we produce one that is acceptable for git.
#
+if ($git_protocol == 'local' && $cxx.target.class == 'windows')
rep_git = "$regex.replace($rep, '^file:/', 'file://')"
else
rep_git = "$rep"
end
: branch
:
{
fragment = '#master'
.include rep-fetch-git-refname.test
}
: ltag
:
{
fragment = '#ltag'
.include rep-fetch-git-refname.test
}
: atag
:
{
fragment = '#atag'
.include rep-fetch-git-refname.test
}
: list
:
{
fragment = '#master,ltag,atag'
.include rep-fetch-git-refname.test
}
: commit
:
{
.include rep-fetch-git-commit.test
}
|