mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-13 18:58:57 -05:00
62 lines
1.6 KiB
Bash
62 lines
1.6 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load test_helper
|
|
|
|
setup() {
|
|
f test/usr/bin/lost+found
|
|
f test/lost+found
|
|
f test/home/user/.dotfile
|
|
f test/home/user/chroot/var/tmp/file
|
|
f test/home/user/ccache/file
|
|
f test/root/ccache/file
|
|
f test/etc/secrets/key
|
|
gen2stage4 -q -t test test0
|
|
gen2stage4 \
|
|
-e 'test/lost+found' \
|
|
-e 'user/.*' \
|
|
-e 'test/home/user/chroot/var/tmp/file' \
|
|
-e 'ccache/*' \
|
|
-e 'secrets' \
|
|
-q -t test test
|
|
}
|
|
|
|
teardown() {
|
|
rm -rf test test.tar.xz test0.tar.xz
|
|
}
|
|
|
|
@test "-e '/lost+found'" {
|
|
assert_tar_excludes test/usr/bin/lost+found test0.tar.xz
|
|
assert_tar_excludes test/usr/bin/lost+found
|
|
|
|
assert_tar_excludes test/lost+found test0.tar.xz
|
|
assert_tar_excludes test/lost+found
|
|
}
|
|
|
|
@test "-e 'user/.*'" {
|
|
assert_tar_excludes test/home/user/.dotfile test0.tar.xz
|
|
assert_tar_excludes test/home/user/.dotfile
|
|
assert_tar_includes test/home/user/
|
|
}
|
|
|
|
@test "-e 'test/home/user/chroot/var/tmp/file'" {
|
|
assert_tar_excludes test/home/user/chroot/var/tmp/file test0.tar.xz
|
|
assert_tar_excludes test/home/user/chroot/var/tmp/file
|
|
}
|
|
|
|
@test "-e 'ccache/*'" {
|
|
assert_tar_excludes test/home/user/ccache/file test0.tar.xz
|
|
assert_tar_excludes test/home/user/ccache/file
|
|
assert_tar_excludes test/home/user/ccache/
|
|
|
|
assert_tar_includes test/root/ccache/file test0.tar.xz
|
|
assert_tar_excludes test/root/ccache/file
|
|
assert_tar_includes test/root/ccache/
|
|
}
|
|
|
|
@test "-e 'secrets'" {
|
|
assert_tar_includes test/etc/secrets/key test0.tar.xz
|
|
assert_tar_excludes test/etc/secrets/key
|
|
assert_tar_excludes test/etc/secrets/
|
|
}
|
|
|
|
# vim: ft=bash
|