blob: feb24710af1897c582d055730590e569ff4e2f80 (
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
|
#!/usr/bin/env zsh
setopt err_exit
function stringcmp {
diff -u <(echo $1) <(echo $2)
}
test_pdir=$(mktemp -dt pkgdir.XXXXXX)
test_proot=$(mktemp -dt pkgroot.XXXXXX)
test_home=$(mktemp -dt pkghome.XXXXXX)
cat << meow
test directories:
PDIR = $test_pdir
PKG_ROOT = $test_proot
HOME = $test_home
meow
echo "# setting up PKG_ROOT"
cd $test_proot
git clone ${1-git://git.tabularazor.org/~derf/pkg} core
cp core/include/pkglist pkglist
for repo in ra rb rc; (
mkdir $repo
cd $repo
git init
touch foo
git add foo
git commit -m 'initial commit'
)
echo "# bootstrapping PDIR"
cd $test_home
export HOME=$test_home
$test_proot/core/include/bootstrap $test_proot $test_pdir
echo "# checking for success"
[[ -e $test_home/.pkg.conf ]]
[[ -d $test_proot/core ]]
[[ -d $test_pdir/core ]]
echo "# pkg list local"
stringcmp "core" $(pkg list)
stringcmp "core" $(pkg list local)
echo "# pkg list not-installed"
stringcmp "ra\nrb\nrc" "$(pkg list not-installed)"
echo "# pkg list all"
stringcmp "core\nra\nrb\nrc" "$(pkg list all)"
rm -rf $test_pdir $test_proot $test_home
print -P '%F{green} test passed%F{default}'
|