334 lines
6.6 KiB
Bash
Executable File
334 lines
6.6 KiB
Bash
Executable File
#!/usr/bin/env atf-sh
|
|
|
|
. $(atf_get_srcdir)/test_env.sh
|
|
|
|
tests_init \
|
|
noargs \
|
|
libs \
|
|
libs_cflags \
|
|
libs_cflags_version \
|
|
libs_cflags_version_multiple \
|
|
libs_cflags_version_alt \
|
|
libs_cflags_version_different \
|
|
libs_cflags_version_different_bad \
|
|
exists_nonexitent \
|
|
nonexitent \
|
|
exists_version \
|
|
exists_version_bad \
|
|
exists_version_bad2 \
|
|
exists_version_bad3 \
|
|
exists \
|
|
exists2 \
|
|
exists3 \
|
|
exists_version_alt \
|
|
uninstalled_bad \
|
|
uninstalled \
|
|
libs_intermediary \
|
|
libs_circular1 \
|
|
libs_circular2 \
|
|
libs_circular_directpc \
|
|
libs_static \
|
|
libs_static_ordering \
|
|
license_isc \
|
|
license_noassertion \
|
|
modversion_noflatten \
|
|
pkg_config_path \
|
|
nolibs \
|
|
nocflags \
|
|
arbitary_path \
|
|
with_path \
|
|
relocatable \
|
|
single_depth_selectors
|
|
|
|
noargs_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check -s exit:1 -e ignore pkgconf
|
|
}
|
|
|
|
libs_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lfoo \n" \
|
|
pkgconf --libs foo
|
|
}
|
|
|
|
libs_cflags_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-fPIC -I/test/include/foo -L/test/lib -lfoo \n" \
|
|
pkgconf --cflags --libs foo
|
|
}
|
|
|
|
atf_test_case basic_libs_cflags_version
|
|
libs_cflags_version_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-fPIC -I/test/include/foo -L/test/lib -lfoo \n" \
|
|
pkgconf --cflags --libs 'foo > 1.2'
|
|
}
|
|
|
|
libs_cflags_version_multiple_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-fPIC -I/test/include/foo -L/test/lib -lbar -lfoo \n" \
|
|
pkgconf --cflags --libs 'foo > 1.2 bar >= 1.3'
|
|
}
|
|
|
|
libs_cflags_version_multiple_coma_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-fPIC -I/test/include/foo -L/test/lib -lbar -lfoo \n" \
|
|
pkgconf --cflags --libs 'foo > 1.2,bar >= 1.3'
|
|
}
|
|
|
|
libs_cflags_version_alt_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-fPIC -I/test/include/foo -L/test/lib -lfoo \n" \
|
|
pkgconf --cflags --libs 'foo' '>' '1.2'
|
|
}
|
|
|
|
libs_cflags_version_different_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-fPIC -I/test/include/foo -L/test/lib -lfoo \n" \
|
|
pkgconf --cflags --libs 'foo' '!=' '1.3.0'
|
|
}
|
|
|
|
atf_test_case basic_libs_cflags_version_different_bad
|
|
libs_cflags_version_different_bad_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-s exit:1 \
|
|
-e inline:"Package dependency requirement 'foo != 1.2.3' could not be satisfied.\nPackage 'foo' has version '1.2.3', required version is '!= 1.2.3'\n" \
|
|
pkgconf --cflags --libs 'foo' '!=' '1.2.3'
|
|
}
|
|
|
|
exists_nonexitent_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-s exit:1 \
|
|
pkgconf --exists nonexistant
|
|
}
|
|
|
|
nonexitent_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-s exit:1 \
|
|
pkgconf nonexistant
|
|
}
|
|
|
|
exists_version_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
pkgconf --exists 'foo > 1.2'
|
|
}
|
|
|
|
exists_version_bad_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-s exit:1 \
|
|
pkgconf --exists 'foo > 1.2.3'
|
|
}
|
|
|
|
exists_version_alt_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
pkgconf --exists 'foo' '>' '1.2'
|
|
}
|
|
|
|
uninstalled_bad_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-s exit:1 \
|
|
pkgconf --uninstalled 'foo'
|
|
}
|
|
|
|
uninstalled_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
pkgconf --uninstalled 'omg'
|
|
}
|
|
|
|
exists_version_bad2_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-s exit:1 \
|
|
pkgconf --exists 'foo >= '
|
|
}
|
|
|
|
exists_version_bad3_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-s exit:1 \
|
|
pkgconf --exists 'tilde <= 1.0.0'
|
|
}
|
|
|
|
exists_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
pkgconf --exists 'tilde = 1.0.0~rc1'
|
|
}
|
|
|
|
exists2_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
pkgconf --exists 'tilde >= 1.0.0'
|
|
}
|
|
|
|
exists3_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
pkgconf --exists '' 'foo'
|
|
}
|
|
|
|
libs_intermediary_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-lintermediary-1 -lintermediary-2 -lfoo -lbar -lbaz \n" \
|
|
pkgconf --libs intermediary-1 intermediary-2
|
|
}
|
|
|
|
libs_circular2_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"circular-1: breaking circular reference (circular-1 -> circular-2 -> circular-1)\n" \
|
|
pkgconf circular-2 --validate
|
|
}
|
|
|
|
libs_circular1_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"circular-3: breaking circular reference (circular-3 -> circular-1 -> circular-3)\n" \
|
|
pkgconf circular-1 --validate
|
|
}
|
|
|
|
libs_circular_directpc_body()
|
|
{
|
|
atf_check \
|
|
-o inline:"-lcircular-1 -lcircular-2 -lcircular-3 \n" \
|
|
pkgconf --libs ${selfdir}/lib1/circular-3.pc
|
|
}
|
|
|
|
libs_static_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"/libfoo.a -pthread \n" \
|
|
pkgconf --libs static-archive-libs
|
|
}
|
|
|
|
libs_static_ordering_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lbar -lfoo \n" \
|
|
pkgconf --libs foo bar
|
|
}
|
|
|
|
pkg_config_path_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1${PATH_SEP}${selfdir}/lib2"
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lfoo \n" \
|
|
pkgconf --libs foo
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lbar -lfoo \n" \
|
|
pkgconf --libs bar
|
|
}
|
|
|
|
with_path_body()
|
|
{
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lfoo \n" \
|
|
pkgconf --with-path=${selfdir}/lib1 --with-path=${selfdir}/lib2 --libs foo
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lbar -lfoo \n" \
|
|
pkgconf --with-path=${selfdir}/lib1 --with-path=${selfdir}/lib2 --libs bar
|
|
}
|
|
|
|
nolibs_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"\n" \
|
|
pkgconf --libs nolib
|
|
}
|
|
|
|
nocflags_body()
|
|
{
|
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
|
atf_check \
|
|
-o inline:"\n" \
|
|
pkgconf --cflags nocflag
|
|
}
|
|
|
|
arbitary_path_body()
|
|
{
|
|
cp ${selfdir}/lib1/foo.pc .
|
|
atf_check \
|
|
-o inline:"-L/test/lib -lfoo \n" \
|
|
pkgconf --libs foo.pc
|
|
}
|
|
|
|
relocatable_body()
|
|
{
|
|
basedir=$(pkgconf --relocate ${selfdir})
|
|
atf_check \
|
|
-o inline:"${basedir}/lib-relocatable\n" \
|
|
pkgconf --define-prefix --variable=prefix ${basedir}/lib-relocatable/lib/pkgconfig/foo.pc
|
|
}
|
|
|
|
single_depth_selectors_body()
|
|
{
|
|
export PKG_CONFIG_MAXIMUM_TRAVERSE_DEPTH=1
|
|
atf_check \
|
|
-o inline:"foo\n" \
|
|
pkgconf --with-path=${selfdir}/lib3 --print-requires bar
|
|
}
|
|
|
|
license_isc_body()
|
|
{
|
|
atf_check \
|
|
-o inline:"foo: ISC\n" \
|
|
pkgconf --with-path=${selfdir}/lib1 --license foo
|
|
}
|
|
|
|
license_noassertion_body()
|
|
{
|
|
atf_check \
|
|
-o inline:"bar: NOASSERTION\nfoo: ISC\n" \
|
|
pkgconf --with-path=${selfdir}/lib1 --license bar
|
|
}
|
|
|
|
modversion_noflatten_body()
|
|
{
|
|
atf_check \
|
|
-o inline:"1.3\n" \
|
|
pkgconf --with-path=${selfdir}/lib1 --modversion bar
|
|
}
|