2023-03-19 11:28:02 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
2023-05-13 00:08:12 +02:00
|
|
|
|
2023-03-19 11:28:02 +01:00
|
|
|
backups = config.programs.borgmatic.backups;
|
2023-05-13 00:08:12 +02:00
|
|
|
excludeFile = builtins.toFile "excludeFile.txt" "/foo/bar";
|
|
|
|
|
2023-03-19 11:28:02 +01:00
|
|
|
in {
|
2023-05-13 00:08:12 +02:00
|
|
|
programs.borgmatic = {
|
|
|
|
enable = true;
|
|
|
|
backups = {
|
|
|
|
main = {
|
|
|
|
location = {
|
|
|
|
sourceDirectories = [ "/my-stuff-to-backup" ];
|
|
|
|
repositories = [ "/mnt/disk1" ];
|
|
|
|
excludeHomeManagerSymlinks = true;
|
|
|
|
extraConfig = { exclude_from = [ (toString excludeFile) ]; };
|
2023-03-19 11:28:02 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-05-13 00:08:12 +02:00
|
|
|
};
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
test.stubs.borgmatic = { };
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
nmt.script = ''
|
|
|
|
config_file=$TESTED/home-files/.config/borgmatic.d/main.yaml
|
|
|
|
assertFileExists $config_file
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
declare -A expectations
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-10-15 00:38:55 +02:00
|
|
|
expectations[exclude_from[0]]="${excludeFile}"
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
yq=${pkgs.yq-go}/bin/yq
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
for filter in "''${!expectations[@]}"; do
|
|
|
|
expected_value="''${expectations[$filter]}"
|
|
|
|
actual_value="$($yq ".$filter" $config_file)"
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
if [[ "$actual_value" != "$expected_value" ]]; then
|
|
|
|
fail "Expected '$filter' to be '$expected_value' but was '$actual_value'"
|
|
|
|
fi
|
|
|
|
done
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-10-15 00:38:55 +02:00
|
|
|
hmExclusionsFile=$($yq '.exclude_from[1]' $config_file)
|
2023-05-13 00:08:12 +02:00
|
|
|
expected_content='/home/hm-user/.config/borgmatic.d/main.yaml'
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
grep --quiet "$expected_content" "$hmExclusionsFile"
|
2023-03-19 11:28:02 +01:00
|
|
|
|
2023-05-13 00:08:12 +02:00
|
|
|
if [[ $? -ne 0 ]]; then
|
|
|
|
echo "Expected to find $expected_content in file $hmExclusionsFile but didn't" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
'';
|
2023-03-19 11:28:02 +01:00
|
|
|
}
|