add basic tests using bats

This commit is contained in:
Natanael Copa 2019-11-07 11:01:18 +00:00
parent a8f564287e
commit 43fb2c012e
4 changed files with 50 additions and 0 deletions

2
.gitignore vendored
View File

@ -19,3 +19,5 @@ checkapk
devbuild
functions.sh
newapkbuild
src
pkg

View File

@ -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
View File

@ -0,0 +1,11 @@
setup() {
export ABUILD=../abuild
}
@test "help text" {
$ABUILD -h
}
@test "version string" {
$ABUILD -V
}

View 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"/
}