2020-06-06 10:35:16 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export LUET_NOLOCK=true
|
|
|
|
|
|
|
|
oneTimeSetUp() {
|
|
|
|
export tmpdir="$(mktemp -d)"
|
|
|
|
}
|
|
|
|
|
|
|
|
oneTimeTearDown() {
|
|
|
|
rm -rf "$tmpdir"
|
|
|
|
}
|
|
|
|
|
|
|
|
testBuild() {
|
2020-11-07 23:05:06 +00:00
|
|
|
mkdir $tmpdir/testrootfs/testbuild -p
|
|
|
|
luet build --tree "$ROOT_DIR/tests/fixtures/config_protect" \
|
|
|
|
--destination $tmpdir/testrootfs/testbuild --compression gzip test/a
|
2020-06-06 10:35:16 +00:00
|
|
|
buildst=$?
|
|
|
|
assertEquals 'builds successfully' "$buildst" "0"
|
2020-11-07 23:05:06 +00:00
|
|
|
assertTrue 'create package' "[ -e '$tmpdir/testrootfs/testbuild/a-test-1.0.package.tar.gz' ]"
|
2020-06-06 10:35:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testRepo() {
|
|
|
|
assertTrue 'no repository' "[ ! -e '$tmpdir/testbuild/repository.yaml' ]"
|
|
|
|
luet create-repo --tree "$ROOT_DIR/tests/fixtures/config_protect" \
|
2020-11-07 23:05:06 +00:00
|
|
|
--output $tmpdir/testrootfs/testbuild \
|
|
|
|
--packages $tmpdir/testrootfs/testbuild \
|
2020-06-06 10:35:16 +00:00
|
|
|
--name "test" \
|
|
|
|
--descr "Test Repo" \
|
|
|
|
--urls $tmpdir/testrootfs \
|
|
|
|
--type disk > /dev/null
|
|
|
|
|
|
|
|
createst=$?
|
|
|
|
assertEquals 'create repo successfully' "$createst" "0"
|
2020-11-07 23:05:06 +00:00
|
|
|
assertTrue 'create repository' "[ -e '$tmpdir/testrootfs/testbuild/repository.yaml' ]"
|
2020-06-06 10:35:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testConfig() {
|
|
|
|
|
2020-11-07 18:14:44 +00:00
|
|
|
mkdir $tmpdir/testrootfs/etc/luet/config.protect.d -p
|
2020-06-06 10:35:16 +00:00
|
|
|
|
2020-11-07 18:14:44 +00:00
|
|
|
cat <<EOF > $tmpdir/testrootfs/etc/luet/config.protect.d/conf1.yml
|
2020-06-06 10:35:16 +00:00
|
|
|
name: "protect1"
|
|
|
|
dirs:
|
|
|
|
- /etc/
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat <<EOF > $tmpdir/luet.yaml
|
|
|
|
general:
|
|
|
|
debug: true
|
|
|
|
system:
|
|
|
|
rootfs: $tmpdir/testrootfs
|
|
|
|
database_path: "/"
|
|
|
|
database_engine: "boltdb"
|
|
|
|
config_protect_confdir:
|
2020-11-07 18:14:44 +00:00
|
|
|
- /etc/luet/config.protect.d
|
|
|
|
config_from_host: false
|
2020-06-06 10:35:16 +00:00
|
|
|
repositories:
|
|
|
|
- name: "main"
|
|
|
|
type: "disk"
|
|
|
|
enable: true
|
|
|
|
urls:
|
2020-11-07 23:05:06 +00:00
|
|
|
- "/testbuild"
|
2020-06-06 10:35:16 +00:00
|
|
|
EOF
|
|
|
|
luet config --config $tmpdir/luet.yaml
|
|
|
|
res=$?
|
|
|
|
assertEquals 'config test successfully' "$res" "0"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testInstall() {
|
|
|
|
|
|
|
|
# Simulate previous installation
|
|
|
|
mkdir $tmpdir/testrootfs/etc/a -p
|
|
|
|
echo "fakeconf" > $tmpdir/testrootfs/etc/a/conf
|
|
|
|
|
2020-11-22 19:16:04 +00:00
|
|
|
luet install -y --config $tmpdir/luet.yaml test/a
|
2020-06-06 10:35:16 +00:00
|
|
|
installst=$?
|
|
|
|
assertEquals 'install test successfully' "$installst" "0"
|
|
|
|
|
|
|
|
|
|
|
|
# Simulate config protect
|
|
|
|
assertTrue 'package A installed' "[ -e '$tmpdir/testrootfs/c' ]"
|
|
|
|
assertTrue 'config protect created' "[ -e '$tmpdir/testrootfs/etc/a/._cfg0001_conf' ]"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
testUnInstall() {
|
2020-11-22 19:16:04 +00:00
|
|
|
luet uninstall -y --full --config $tmpdir/luet.yaml test/a
|
2020-06-06 10:35:16 +00:00
|
|
|
installst=$?
|
|
|
|
assertEquals 'uninstall test successfully' "$installst" "0"
|
|
|
|
assertTrue 'package uninstalled' "[ ! -e '$tmpdir/testrootfs/c' ]"
|
|
|
|
# TODO: we need remove it or not??
|
|
|
|
assertTrue 'config protect created' "[ -e '$tmpdir/testrootfs/etc/a/._cfg0001_conf' ]"
|
2021-07-11 08:21:35 +00:00
|
|
|
assertTrue 'config protect maintains the protected files' "[ ! -e '$tmpdir/testrootfs/etc/a/conf' ]"
|
2020-06-06 10:35:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
testCleanup() {
|
|
|
|
luet cleanup --config $tmpdir/luet.yaml
|
|
|
|
installst=$?
|
|
|
|
assertEquals 'install test successfully' "$installst" "0"
|
|
|
|
assertTrue 'package installed' "[ ! -e '$tmpdir/testrootfs/packages/a-test-1.0.package.tar.gz' ]"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Load shUnit2.
|
|
|
|
. "$ROOT_DIR/tests/integration/shunit2"/shunit2
|
|
|
|
|