aboutsummaryrefslogtreecommitdiff
path: root/tests/common/git/init
blob: 81479a83eb9464302b3968aa0c95962304327cc6 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
#! /bin/sh

# Create git repositories from project directories/tarballs.
#
# Usage example:
#
# ./init [--unpack]
#
owd=`pwd`
trap "{ cd $owd; exit 1; }" ERR
set -o errtrace # Trap in functions.

function info  () { echo "$*" 1>&2; }
function error () { info "error: $*"; exit 1; }
function trace () { if [ "$verbose" == 'y' ]; then info "trace: $*"; fi }

unpack=

while [ $# -gt 0 ]; do
  case $1 in
    --unpack)
      unpack='y'
      shift
      ;;
    *)
      error "invalid option $1"
      ;;
  esac
done

# Unpack repositories if requested.
#
if [ -n "$unpack" ]; then
  for f in */*.tar; do
    rm -r -f ${f%.tar}.git
    tar xf $f;
  done
fi

# Create the initial state of the repositories libfoo.git, libfox.git,
# libbar.git, style.git, and style-basic.git.
#
cd state0

rm -f -r links.git/.git
rm -f    links.git/.gitmodules
rm -f    links.git/bl
rm -f    links.git/lc
rm -f    links.git/pg
rm -f    links.git/bs
rm -f    links.git/bf
rm -f    links.git/tl
rm -f    links.git/td
rm -f    links.git/ts
rm -f -r links.git/doc/style

rm -f -r libfoo.git/.git
rm -f    libfoo.git/.gitmodules
rm -f    libfoo.git/README
rm -f -r libfoo.git/libbar
rm -f -r libfoo.git/doc/style

rm -f -r libfox.git/.git
rm -f    libfox.git/.gitmodules
rm -f -r libfox.git/libbar

rm -f -r libbar.git/.git
rm -f    libbar.git/.gitmodules
rm -f -r libbar.git/extras

rm -f -r style.git/.git
rm -f -r style.git/basic

rm -f -r style-basic.git/.git
rm -f    style-basic.git/README
rm -f    style-basic.git/INSTALL
rm -f    style-basic.git/repositories.manifest

# Create master branch for style-basic.git.
#
git -C style-basic.git init
git -C style-basic.git add '*'
git -C style-basic.git commit -am 'Create'

# Create stable branch for style-basic.
#
sleep 1 # Make sure that master commits are older than stable commits.
git -C style-basic.git branch stable
git -C style-basic.git checkout stable
echo "TODO" >style-basic.git/README
cat <<EOF >style-basic.git/repositories.manifest
: 1
email: user@example.com
EOF
git -C style-basic.git add README repositories.manifest
git -C style-basic.git commit -am 'README'

# Create master branch for style.git, adding style-basic.git as a submodule.
#
git -C style.git init
git -C style.git add '*'
git -C style.git submodule add ../style-basic.git basic # The stable branch.
git -C style.git commit -am 'Create'

# Make style.git to refer an unadvertised reference, commiting into the stable
# branch of style-basic.git.
#
touch style-basic.git/INSTALL
git -C style-basic.git add INSTALL
git -C style-basic.git commit -am 'INSTALL'
git -C style-basic.git checkout master

# Create master branch for libbar.git.
#
git -C libbar.git init

cat <<EOF >libbar.git/libbar/manifest
: 1
name: libbar
version: 1.0.0
summary: libbar
license: MIT
description-file: README
url: http://example.org/libbar
email: pkg@example.org
depends: style-basic >= $
EOF

git -C libbar.git add '*'
git -C libbar.git commit -am 'Create'
git -C libbar.git tag -a 'v1.0.0' -m 'Tag version 1.0.0'

git -C libbar.git submodule add -b stable ../style-basic.git extras
cat <<EOF >libbar.git/libbar/manifest
: 1
name: libbar
version: 1.0.0+1
summary: libbar
license: MIT
description-file: README
url: http://example.org/libbar
email: pkg@example.org
depends: style-basic >= $
EOF

git -C libbar.git commit -am 'Add extras'
git -C libbar.git tag -a 'v1.0.0+1' -m 'Tag version 1.0.0+1'

# Create master branch for libfoo.git, adding style.git and libbar.git as
# submodules.
#
git -C libfoo.git init

cat <<EOF >libfoo.git/manifest
: 1
name: libfoo
version: 0.0.1
summary: libfoo
license: MIT
url: http://example.org
email: pkg@example.org
EOF

git -C libfoo.git add '*'
git -C libfoo.git submodule add ../style.git doc/style
git -C libfoo.git submodule add ../libbar.git libbar
git -C libfoo.git submodule update --init --recursive # Updates doc/style/basic.
git -C libfoo.git commit -am 'Create'
git -C libfoo.git tag -a 'v0.0.1' -m 'Tag version 0.0.1'

# Increase libfoo version and add tags.
#
cat <<EOF >libfoo.git/manifest
: 1
name: libfoo
version: 1.0.0
summary: libfoo
license: MIT
url: http://example.org
email: pkg@example.org
EOF

git -C libfoo.git commit -am 'Increase version to 1.0.0'

git -C libfoo.git tag 'ltag'
git -C libfoo.git tag -a 'atag'   -m 'Create annotated tag'
git -C libfoo.git tag -a 'v1.0.0' -m 'Tag version 1.0.0'

# Advance the master branch to make tags not to mark a branch tip.
#
touch  libfoo.git/README
git -C libfoo.git add README
git -C libfoo.git commit -am 'README'

# Create master branch for libfox.git, adding libbar.git as a submodule.
#
git -C libfox.git init
git -C libfox.git add '*'
git -C libfox.git submodule add ../libbar.git libbar
git -C libfox.git submodule update --init --recursive # Recursive for safety.
git -C libfox.git commit -am 'Create'

# Create master branch for links.git, adding style.git as a submodule.
#
git -C links.git init

cat <<EOF >links.git/manifest
: 1
name: links
version: 0.0.1
summary: links
license: MIT
url: http://example.org
email: pkg@example.org
EOF

git -C links.git add '*'
git -C links.git submodule add ../style.git doc/style
git -C links.git submodule update --init --recursive # Updates doc/style/basic.
git -C links.git commit -am 'Create'
git -C links.git tag -a 'v0.0.1' -m 'Tag version 0.0.1'

# Increase links version and add symlinks.
#
cat <<EOF >links.git/manifest
: 1
name: links
version: 1.0.0-a.0.z
summary: links
license: MIT
url: http://example.org
email: pkg@example.org
EOF

ln -s tests links.git/ts               # Directory symlink.
ln -s ts/TODO links.git/td             # File symlink via directory symlink.
ln -s td links.git/tl                  # Symlink symlink.
ln -s doc/style/buildfile links.git/bf # Submodule file symlink.
ln -s doc/style/basic links.git/bs     # Submodule directory symlink.
ln -s bs/page.css links.git/pg         # Symlink via submodule directory symlink.

git -C links.git add '*'
git -C links.git commit -am 'Add symlinks'
git -C links.git tag -a 'v1.0.0-alpha' -m 'Tag version 1.0.0-alpha'

# Increase links version and add dangling symlink.
#
cat <<EOF >links.git/manifest
: 1
name: links
version: 1.0.1
summary: links
license: MIT
url: http://example.org
email: pkg@example.org
EOF

ln -s lc links.git/bl # Dangling symlink.

git -C links.git add '*'
git -C links.git commit -am 'Add dangling symlinks'
git -C links.git tag -a 'v1.0.1' -m 'Tag version 1.0.1'

# Increase links version and add cyclic symlink.
#
cat <<EOF >links.git/manifest
: 1
name: links
version: 1.0.2
summary: links
license: MIT
url: http://example.org
email: pkg@example.org
EOF

ln -s bl links.git/lc # Cyclic symlink.

git -C links.git add '*'
git -C links.git commit -am 'Add cyclic symlinks'
git -C links.git tag -a 'v1.0.2' -m 'Tag version 1.0.2'


# Create the modified state of the repositories, replacing libbar.git submodule
# of libfoo with the newly created libbaz.git repository. Also advance master
# branches and tags for libfoo.git and it's submodule style.git.
#
cd ../state1

# Copy repositories initial state.
#
for d in ../state0/*.git; do
  rm -f -r $(basename $d)
  cp -r $d .
done

# Drop the links.git repository.
#
rm -f -r links.git/

# Create libbaz.git repository.
#
rm -f -r libbaz.git/.git

git -C libbaz.git init
git -C libbaz.git add '*'
git -C libbaz.git commit -am 'Create'

# Sync submodule references with their new locations.
#
for d in *.git; do
  git -C $d  submodule sync --recursive
done

# Advance style.git master branch.
#
touch  style.git/README
git -C style.git add README
git -C style.git commit -am 'README'

# Advance libfoo.git master branch.
#
git -C libfoo.git submodule update --init --remote # Pull style only.
git -C libfoo.git commit -am 'Update style'

git -C libfoo.git rm -r tests
git -C libfoo.git commit -am 'Remove tests'

git -C libfoo.git submodule deinit libbar
git -C libfoo.git rm libbar
git -C libfoo.git commit -am 'Remove libbar'
rm -f -r libbar.git

git -C libfoo.git submodule add ../libbaz.git libbaz
git -C libfoo.git submodule update --init libbaz
git -C libfoo.git commit -am 'Add libbaz'

git -C libfoo.git tag -f 'ltag'
git -C libfoo.git tag -f -a 'atag' -m 'Move annotated tag'

touch  libfoo.git/INSTALL
git -C libfoo.git add INSTALL
git -C libfoo.git commit -am 'INSTALL'