tests: test for removal of nested directories
This commit is contained in:
parent
949d2d90e7
commit
fa5911bb00
@ -8,6 +8,7 @@ include('xbps-checkvers/Kyuafile')
|
||||
include('xbps-create/Kyuafile')
|
||||
include('xbps-install/Kyuafile')
|
||||
include('xbps-query/Kyuafile')
|
||||
include('xbps-remove/Kyuafile')
|
||||
include('xbps-rindex/Kyuafile')
|
||||
include('xbps-uhelper/Kyuafile')
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
-include ../../config.mk
|
||||
|
||||
SUBDIRS = common libxbps xbps-alternatives xbps-checkvers xbps-create xbps-install xbps-query xbps-rindex xbps-uhelper
|
||||
SUBDIRS = common libxbps xbps-alternatives xbps-checkvers xbps-create xbps-install xbps-query xbps-remove xbps-rindex xbps-uhelper
|
||||
|
||||
include ../../mk/subdir.mk
|
||||
|
4
tests/xbps/xbps-remove/Kyuafile
Normal file
4
tests/xbps/xbps-remove/Kyuafile
Normal file
@ -0,0 +1,4 @@
|
||||
syntax("kyuafile", 1)
|
||||
|
||||
test_suite("xbps-remove")
|
||||
atf_test_program{name="basic_test"}
|
8
tests/xbps/xbps-remove/Makefile
Normal file
8
tests/xbps/xbps-remove/Makefile
Normal file
@ -0,0 +1,8 @@
|
||||
TOPDIR = ../../..
|
||||
-include $(TOPDIR)/config.mk
|
||||
|
||||
TESTSHELL = basic_test
|
||||
TESTSSUBDIR = xbps/xbps-remove
|
||||
EXTRA_FILES = Kyuafile
|
||||
|
||||
include $(TOPDIR)/mk/test.mk
|
28
tests/xbps/xbps-remove/basic_test.sh
Normal file
28
tests/xbps/xbps-remove/basic_test.sh
Normal file
@ -0,0 +1,28 @@
|
||||
#! /usr/bin/env atf-sh
|
||||
|
||||
atf_test_case remove_directory
|
||||
|
||||
remoe_directory_head() {
|
||||
atf_set "descr" "xbps-remove(8): remove nested directories"
|
||||
}
|
||||
|
||||
remove_directory_body() {
|
||||
mkdir -p some_repo pkg_A/B/C
|
||||
touch pkg_A/B/C/file00
|
||||
cd some_repo
|
||||
xbps-create -A noarch -n A-1.0_1 -s "A pkg" ../pkg_A
|
||||
atf_check_equal $? 0
|
||||
xbps-rindex -d -a $PWD/*.xbps
|
||||
atf_check_equal $? 0
|
||||
cd ..
|
||||
xbps-install -r root -C empty.conf --repository=$PWD/some_repo -y A
|
||||
atf_check_equal $? 0
|
||||
xbps-remove -r root -C empty.conf -y A
|
||||
atf_check_equal $? 0
|
||||
test -d root/B
|
||||
atf_check_equal $? 1
|
||||
}
|
||||
|
||||
atf_init_test_cases() {
|
||||
atf_add_test_case remove_directory
|
||||
}
|
Loading…
Reference in New Issue
Block a user