mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-22 23:12:45 +00:00
47 lines
857 B
Plaintext
Executable File
47 lines
857 B
Plaintext
Executable File
#!/usr/bin/env atf-sh
|
|
|
|
. $(atf_get_srcdir)/test_env.sh
|
|
init_tests \
|
|
abuild_help \
|
|
abuild_invalid_opt \
|
|
abuild_version \
|
|
abuild_simple_pkg_without_deps
|
|
|
|
export ABUILD_SHAREDIR=$(atf_get_srcdir)/..
|
|
export ABUILD_CONF=/dev/null
|
|
export GIT_CONFIG_GLOBAL="$(atf_get_srcdir)/testdata/gitconfig"
|
|
export REPODEST="$PWD"/packages
|
|
|
|
testrepo=$(atf_get_srcdir)/testrepo
|
|
|
|
# copy keys
|
|
cp -ra "$(atf_get_srcdir)"/testdata/.abuild "$PWD"
|
|
|
|
abuild_help_body() {
|
|
atf_check -s exit:0 \
|
|
-o match:"usage:" \
|
|
abuild -h
|
|
}
|
|
|
|
abuild_invalid_opt_body() {
|
|
atf_check -s exit:1 \
|
|
-e match:"usage:" \
|
|
abuild -@
|
|
}
|
|
|
|
abuild_version_body() {
|
|
atf_check -s exit:0 \
|
|
-o match:"abuild [0-9]+\.[0-9]+" \
|
|
abuild -V
|
|
}
|
|
|
|
abuild_simple_pkg_without_deps_body() {
|
|
cp -r "$testrepo"/pkg1 .
|
|
cd pkg1
|
|
atf_check -s exit:0 \
|
|
-e not-match:"WARNING" \
|
|
-e not-match:"fatal" \
|
|
abuild
|
|
}
|
|
|