mirror of
https://github.com/clearlinux/swupd-server.git
synced 2026-08-28 13:45:42 +00:00
825dc6c75f
Check that os-core is subtracked correctly and that $bundle-includes files are correctly subtracked as well. Also include testing for new bundles being subtracked.
94 lines
2.0 KiB
Bash
94 lines
2.0 KiB
Bash
# NOTE: source this file from a *.bats file
|
|
|
|
init_web_dir() {
|
|
# absolute path is a hard requirement right now
|
|
local dir=$(realpath $1)
|
|
mkdir -p $dir/{image,www}
|
|
echo $dir
|
|
}
|
|
|
|
init_server_ini() {
|
|
cp $srcdir/server.ini $DIR
|
|
sed -i "s|/var/lib/update|$DIR|" $DIR/server.ini
|
|
}
|
|
|
|
set_latest_ver() {
|
|
echo "$1" > $DIR/image/latest.version
|
|
}
|
|
|
|
init_groups_ini() {
|
|
for bundle in "$@"; do
|
|
cat >> $DIR/groups.ini << EOF
|
|
[$bundle]
|
|
group=$bundle
|
|
EOF
|
|
done
|
|
}
|
|
|
|
set_os_release() {
|
|
local ver=$1
|
|
local bundle=$2
|
|
mkdir -p $DIR/image/$ver/$bundle/usr/lib/
|
|
echo "VERSION_ID=$ver" > $DIR/image/$ver/$bundle/usr/lib/os-release
|
|
}
|
|
|
|
track_bundle() {
|
|
local ver=$1
|
|
local bundle=$2
|
|
mkdir -p $DIR/image/$ver/$bundle/usr/share/clear/bundles
|
|
touch $DIR/image/$ver/$bundle/usr/share/clear/bundles/$bundle
|
|
}
|
|
|
|
gen_includes_file() {
|
|
local bundle=$1
|
|
local ver=$2
|
|
local includes="${@:3}"
|
|
mkdir -p $DIR/www/$ver/noship
|
|
for b in $includes; do
|
|
cat >> $DIR/www/$ver/noship/"$bundle"-includes << EOF
|
|
$b
|
|
EOF
|
|
done
|
|
}
|
|
|
|
gen_file_to_delta() {
|
|
local origver=$1
|
|
local origsize=$2
|
|
local newver=$3
|
|
local newbytes=$4
|
|
local bundle=$5
|
|
|
|
# create some random data for the original version
|
|
mkdir -p $DIR/image/$origver/$bundle
|
|
dd if=/dev/urandom of=$DIR/image/$origver/$bundle/randomfile bs=1 count=$origsize
|
|
|
|
# append more random data to the end of the file in the new version
|
|
TMP=$(mktemp foo.XXXXXX)
|
|
mkdir -p $DIR/image/$newver/$bundle
|
|
dd if=/dev/urandom of=$TMP bs=1 count=$newbytes
|
|
cat $DIR/image/$origver/$bundle/randomfile $TMP > $DIR/image/$newver/$bundle/randomfile
|
|
rm $TMP
|
|
}
|
|
|
|
gen_file_plain() {
|
|
local ver=$1
|
|
local bundle=$2
|
|
local name=$3
|
|
|
|
# Add plain text file into a bundle
|
|
mkdir -p $DIR/image/$ver/$bundle
|
|
echo $name > $DIR/image/$ver/$bundle/$name
|
|
}
|
|
|
|
gen_file_plain_change() {
|
|
local ver=$1
|
|
local bundle=$2
|
|
local name=$3
|
|
|
|
# Add plain text file into a bundle
|
|
mkdir -p $DIR/image/$ver/$bundle
|
|
echo $ver $name > $DIR/image/$ver/$bundle/$name
|
|
}
|
|
|
|
# vi: ft=sh ts=8 sw=2 sts=2 et tw=80
|