summaryrefslogtreecommitdiff
path: root/test/libremakepkg-test.sh
blob: 54816dd77f7af2a7c2571567b824001f8bb9ea36 (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
#!/usr/bin/env roundup

describe libremakepkg
. ./test-common.sh

setup_chrootdir

it_builds_a_trivial_package() {
	require network sudo || return 0
	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	testsudo libremakepkg -l "$roundup_test_name"

	[[ -f $(echo libretools-hello-1.0-1-any.pkg.tar.?z) ]]
}

it_enables_networking_during_prepare() {
	require network sudo || return 0
	cp libremakepkg.d/PKGBUILD-netprepare "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	testsudo libremakepkg -l "$roundup_test_name"
	[[ -f $(echo libretools-netprepare-1.0-1-any.pkg.tar.?z) ]]
}

it_disables_networking_during_build() {
	require network sudo || return 0
	cp libremakepkg.d/PKGBUILD-netbuild "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	not testsudo libremakepkg -l "$roundup_test_name"
	not [[ -f $(echo libretools-netbuild-1.0-1-any.pkg.tar.?z) ]]
	testsudo libremakepkg -l "$roundup_test_name" -N
	[[ -f $(echo libretools-netbuild-1.0-1-any.pkg.tar.?z) ]]
}

it_disables_networking_during_package() {
	require network sudo || return 0
	cp libremakepkg.d/PKGBUILD-netpackage "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	not testsudo libremakepkg -l "$roundup_test_name"
	not [[ -f $(echo libretools-netpackage-1.0-1-any.pkg.tar.?z) ]]
	testsudo libremakepkg -l "$roundup_test_name" -N
	[[ -f $(echo libretools-netpackage-1.0-1-any.pkg.tar.?z) ]]
}

it_cleans_the_chroot_before_building() {
	require network sudo || return 0
	# 1. First, we build testpkg1
	# 2. Then, we build testpkg2, which depends on testpkg1
	#    Therefore, testpkg1 will be installed after testpkg2 is built, we
	#    check for that.
	# 3. Then, we build hello, which depends on neither, so testpkg1 should
	#    be removed.

	# Also, do funny things with the output of libremakepkg to get a helpful
	# fail case.

	mkdir -p "$tmpdir"/{1,2,3}
	cp libremakepkg.d/PKGBUILD-testpkg1 "$tmpdir/1/PKGBUILD"
	cp libremakepkg.d/PKGBUILD-testpkg2 "$tmpdir/2/PKGBUILD"
	cp libremakepkg.d/PKGBUILD-hello    "$tmpdir/3/PKGBUILD"

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty

	cd "$tmpdir/1"
	testsudo libremakepkg -l "$roundup_test_name" &> "$tmpdir/out" || { r=$?; tail "$tmpdir/out"|cat -v; return $r; }

	cd "$tmpdir/2"
	testsudo libremakepkg -l "$roundup_test_name" &> "$tmpdir/out" || { r=$?; tail "$tmpdir/out"|cat -v; return $r; }
	testsudo librechroot -l "$roundup_test_name" run libretools-testpkg1 'first time, pass'

	# This next line is actually a separate test, but it fits in well with this test, and chroot tests are slow..
	# it_doesnt_cache_local_packages() {
	not testsudo librechroot -l "$roundup_test_name" run test -e /var/cache/pacman/pkg/libretools-testpkg1-1.0-1-any.pkg.tar.?z

	cd "$tmpdir/3"
	testsudo libremakepkg -l "$roundup_test_name" &> "$tmpdir/out" || { r=$?; tail "$tmpdir/out"|cat -v; return $r; }
	not testsudo librechroot -l "$roundup_test_name" run libretools-testpkg1 'second time, fail'
}

it_handles_PKGDEST_not_existing() {
	require network sudo || return 0
	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	testsudo env PKGDEST="$tmpdir/dest/pkgdest" libremakepkg -l "$roundup_test_name"

	[[ -f $(echo dest/pkgdest/libretools-hello-1.0-1-any.pkg.tar.?z) ]]
}

it_displays_help_as_normal_user() {
	rm -rf "$XDG_CONFIG_HOME"
	LC_ALL=C libremakepkg -h >$tmpdir/stdout 2>$tmpdir/stderr

	[[ "$(sed 1q $tmpdir/stdout)" =~ Usage:.* ]]
	empty $tmpdir/stderr
}

it_otherwise_fails_as_normal_user() {
	# I do this to give it a chance of passing
	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"
	local stat=0

	libremakepkg >$tmpdir/stdout 2>$tmpdir/stderr || stat=$?

	[[ $stat != 0 ]]
	empty $tmpdir/stdout
	not empty $tmpdir/stderr
}

it_fails_if_a_hook_fails() {
	require network sudo || return 0
	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"
	local stat=0

	sed -i 's/^BLACKLIST=.*/&-bogus/' "$XDG_CONFIG_HOME"/libretools/libretools.conf
	trap 'sed -i s/-bogus// "$XDG_CONFIG_HOME"/libretools/libretools.conf' RETURN

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	testsudo libremakepkg -l "$roundup_test_name" >$tmpdir/stdout 2>$tmpdir/stderr || stat=$?

	[[ $stat != 0 ]]
	tail -n1 $tmpdir/stderr | grep -qF '==> ERROR: Failure(s) in check_pkgbuild: check_pkgbuild_nonfree'
}

it_detects_distcc_files() {
	require network sudo || return 0
	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	echo "CHROOTEXTRAPKG+=(distcc-nozeroconf socat)" >> "$XDG_CONFIG_HOME"/libretools/chroot.conf
	trap 'sed -i /CHROOTEXTRAPKGs+=/d "$XDG_CONFIG_HOME"/libretools/chroot.conf' RETURN
	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	testsudo librechroot -l "$roundup_test_name" run pacman -S --noconfirm distcc-nozeroconf socat

	# first make sure that the engine works
	testsudo libremakepkg -l "$roundup_test_name"
	[[ -f $(echo libretools-hello-1.0-1-any.pkg.tar.?z) ]]
	rm -f -- libretools-hello-1.0-1-any.pkg.tar.?z
	# now throw a wrench in it
	testsudo librechroot -l "$roundup_test_name" run touch /bin/distcc-tool
	# and make sure that the engine broke
	testsudo libremakepkg -l "$roundup_test_name" || stat=$?
	[[ $stat != 0 ]]
	not [[ -f $(echo libretools-hello-1.0-1-any.pkg.tar.?z) ]]
}

it_symlinks_outputs() {
	require network sudo || return 0

	echo "WORKDIR='$tmpdir/workdir'" > $XDG_CONFIG_HOME/libretools/libretools.conf
	mkdir -p $XDG_CONFIG_HOME/pacman
	{
		printf 'PKGDEST=%q\n' "$tmpdir/workdir/pkgdest"
		printf 'SRCPKGDEST=%q\n' "$tmpdir/workdir/srcpkgdest"
	} >$XDG_CONFIG_HOME/pacman/makepkg.conf
	trap 'rm -f -- "$XDG_CONFIG_HOME/libretools/libretools.conf" "$XDG_CONFIG_HOME/pacman/makepkg.conf"' RETURN

	cp libremakepkg.d/PKGBUILD-hello "$tmpdir/PKGBUILD"
	cd "$tmpdir"

	libremessages msg 'Creating a chroot, may take a few minutes' &>/dev/tty
	testsudo libremakepkg -l "$roundup_test_name"

	[[ -f $(echo libretools-hello-1.0-1-any.pkg.tar.?z) ]]
	[[ -L $(echo libretools-hello-1.0-1-any.pkg.tar.?z) ]]
	[[ -f $(echo libretools-hello-1.0-1-any.src.tar.?z) ]]
	[[ -L $(echo libretools-hello-1.0-1-any.src.tar.?z) ]]
}