mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2025-02-26 16:30:36 +00:00
add basic tests using bats
This commit is contained in:
parent
a8f564287e
commit
43fb2c012e
2
.gitignore
vendored
2
.gitignore
vendored
@ -19,3 +19,5 @@ checkapk
|
||||
devbuild
|
||||
functions.sh
|
||||
newapkbuild
|
||||
src
|
||||
pkg
|
||||
|
3
Makefile
3
Makefile
@ -93,6 +93,9 @@ help:
|
||||
@echo "$(P) makefile"
|
||||
@echo "usage: make install [ DESTDIR=<path> ]"
|
||||
|
||||
check: $(USR_BIN_FILE) functions.sh
|
||||
cd tests && bats *.bats
|
||||
|
||||
install: $(USR_BIN_FILES) $(SAMPLES) abuild.conf functions.sh
|
||||
install -d $(DESTDIR)/$(bindir) $(DESTDIR)/$(sysconfdir) \
|
||||
$(DESTDIR)/$(datadir) $(DESTDIR)/$(mandir)/man1 \
|
||||
|
11
tests/abuild.bats
Normal file
11
tests/abuild.bats
Normal file
@ -0,0 +1,11 @@
|
||||
setup() {
|
||||
export ABUILD=../abuild
|
||||
}
|
||||
|
||||
@test "help text" {
|
||||
$ABUILD -h
|
||||
}
|
||||
|
||||
@test "version string" {
|
||||
$ABUILD -V
|
||||
}
|
34
tests/testrepo/pkg1/APKBUILD
Normal file
34
tests/testrepo/pkg1/APKBUILD
Normal file
@ -0,0 +1,34 @@
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
|
||||
# test package
|
||||
pkgname="pkg1"
|
||||
pkgver="1.0"
|
||||
pkgrel=0
|
||||
pkgdesc="Dummy test package"
|
||||
url="https://gitlab.alpinelinux.org/alpine/aports"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
source=""
|
||||
builddir="$srcdir/pkg1-1.0"
|
||||
|
||||
prepare() {
|
||||
mkdir -p "$builddir"
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir -p usr/include usr/bin usr/share/man/man1
|
||||
touch usr/include/$pkgname.h
|
||||
touch usr/bin/$pkgname
|
||||
touch usr/share/man/man1/$pkgname.1
|
||||
}
|
||||
|
||||
check() {
|
||||
true
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"
|
||||
cp -r * "$pkgdir"/
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user