blob: 81aeba13deb2ab76dcaaf388fde13870ecf0efd5 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# file : tests/pkg-checkout.test
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
.include common.test config.test remote-git.test
# Source repository:
#
# pkg-checkout
# `-- git
# |-- libbar.git -> style-basic.git (prerequisite)
# `-- style-basic.git
# Prepare repositories used by tests if running in the local mode.
#
+if ($remote != true)
# Create git repositories.
#
$git_extract $src/git/libbar.tar
$git_extract $src/git/style-basic0.tar &$out_git/state0/***
$git_extract $src/git/style-basic1.tar &$out_git/state1/***
end
: git-rep
:
if ($git_supported != true)
{
# Skip git repository tests.
#
}
else
{
rep = "$rep_git/state0"
rep_add += -d cfg 2>!
rep_fetch += -d cfg 2>!
pkg_configure += -d cfg 2>!
pkg_disfigure += -d cfg 2>!
pkg_purge += -d cfg 2>!
pkg_status += -d cfg
test.cleanups += &cfg/.bpkg/repos/*/***
: unconfigured-dependency
:
$clone_root_cfg;
$rep_add "$rep/libbar.git#master";
$rep_fetch;
$* libmbar/1.0.0 2>>EOE != 0
error: no configured package satisfies dependency on style-basic >= 1.0.0
EOE
: configured-dependency
:
$clone_root_cfg;
$rep_add "$rep/libbar.git#master" && $rep_add "$rep/style-basic.git#master";
$rep_fetch;
$pkg_status style-basic | sed -n -e 's/style-basic available \[.+\] ([^ ]+)/\1/p' | set v;
$* "style-basic/$v" 2>>"EOE";
distributing style-basic/$v
checked out style-basic/$v
EOE
$pkg_configure style-basic;
$* libmbar/1.0.0 2>>EOE;
distributing libmbar/1.0.0
checked out libmbar/1.0.0
EOE
$pkg_disfigure style-basic;
$pkg_purge libmbar;
$pkg_purge style-basic
: replacement
:
# @@ Reduce to a single repository when multiple revisions can be specified
# in the repository URL fragment.
#
rep0 = "$rep_git/state0";
rep1 = "$rep_git/state1";
$clone_root_cfg;
$rep_add "$rep0/style-basic.git#master";
$rep_add "$rep1/style-basic.git#stable";
$rep_fetch;
$pkg_status style-basic | \
sed -n -e 's/style-basic available ([^ ]+) +([^ ]+)/\1 \2/p' | set vs;
echo "$vs" | sed -e 's/([^ ]+).+/\1/' | set v0;
echo "$vs" | sed -e 's/([^ ]+) +([^ ]+)/\2/' | set v1;
$* "style-basic/$v0" 2>!;
$pkg_status style-basic >~"/style-basic unpacked $v0/";
$* --replace "style-basic/$v1" 2>!;
$pkg_status style-basic >~"/style-basic unpacked $v1 .+/";
$pkg_purge style-basic
}
|