blob: b64076adc0d3efd387ceb3c03f930870fbfc4064 (
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
|
#!/bin/sh
# Copyright 2023 Huawei Cloud Computing Technology Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
if ! command -v git >/dev/null; then
echo "git is required to run this script."
exit 1
fi
# ---
# Structure of test_repo_symlinks:
# ---
# <root> <--kTreeSymId: 18770dacfe14c15d88450c21c16668e13ab0e7f9 (tree)
# |
# +--bar <--kBarId: same as in test_repo.bundle (blob)
# +--foo <--kFooId: same as in test_repo.bundle (blob)
# +--baz_l <-- kBazLinkId: 3f9538666251333f5fa519e01eb267d371ca9c78 (blob)
# +--foo_l <-- kFooLinkId: b24736f10d3c60015386047ebc98b4ab63056041 (blob)
# +--baz <--kBazSymId: 1868f82682c290f0b1db3cacd092727eef1fa57f (tree)
# | +--bar
# | +--foo
# | +--bar_l <-- kBazBarLinkId: same as kBarId [same content] (blob)
# |
# ---
#
# kRootCoomit: 3ecce3f5b19ad7941c6354d65d841590662f33ef (commit)
#
# foo is a regular file
# bar is an executable
#
# foo_l is a symlink to "baz/foo"
# bar_l is a symlink to "bar" (i.e., baz/bar)
# baz_l is a symlink to "baz"
#
# Bundle name: test_repo_symlinks.bundle
#
# create the folder structure
mkdir -p test_repo_symlinks
cd test_repo_symlinks
printf %s "foo" >> foo # no newline
printf %s "bar" >> bar # no newline
chmod +x bar
mkdir -p baz/
cp foo baz/foo
cp bar baz/bar
ln -s baz/foo foo_l
ln -s bar baz/bar_l
ln -s baz baz_l
# create the repo
git init > /dev/null 2>&1
git checkout -q -b master
git config user.name "Nobody"
git config user.email "nobody@example.org"
git add .
GIT_AUTHOR_DATE="1970-01-01T00:00Z" GIT_COMMITTER_DATE="1970-01-01T00:00Z" git commit -m "First commit" > /dev/null
# create the git bundle
git bundle create ../data/test_repo_symlinks.bundle HEAD master
# unlink the symlinks ourselves, to avoid broken symlinks issues on cleanup
unlink baz_l
unlink baz/bar_l
unlink foo_l
|