From: Bastian Dehn Date: Wed, 5 Aug 2026 19:20:15 +0000 (+0200) Subject: add test without excludes X-Git-Tag: v1.0.6^2~1^2~45 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=d474b8f2228ceff5b2716658c61cc8846c8fe133;p=simple-backup.git add test without excludes --- diff --git a/src/backup b/src/backup index 073e9d7..4aa335c 100755 --- a/src/backup +++ b/src/backup @@ -154,8 +154,10 @@ path_backup() || return $? local excludes=() mapfile -t excludes < <(echo "$config" \ - | jq --raw-output ".machines.$machine.excludes[]") - echo "ℹ️ INFO: machine $machine; excludes ${excludes[*]}" + | jq --raw-output ".machines.$machine.excludes[]" \ + 2> /dev/null) + [ "${#excludes[@]}" -eq "0" ] \ + || echo "ℹ️ INFO: machine $machine; excludes ${excludes[*]}" # TODO: config read - rsync implementation } diff --git a/tests/backup_tests.bats b/tests/backup_tests.bats index 8110144..4385953 100755 --- a/tests/backup_tests.bats +++ b/tests/backup_tests.bats @@ -444,4 +444,37 @@ teardown() { assert_line --index 8 "ℹ️ INFO: machine ${LIGHTPURPLE}testpc1${RESET}; path ${YELLOW}/etc${RESET}" assert_line --index 9 "ℹ️ INFO: machine ${LIGHTPURPLE}testpc1${RESET}; excludes /home/user/.cache /home/user/.local" assert_line --index 10 "################################################################################" + assert_line --partial "✅ SUCCESS: backup" +} + +@test "success backup machine path without excludes" { + yq() { + echo '{ + "backup_path": "build", + "backup_name": "backup", + "backup_count": 15, + "machines": { + "testpc1": { + "remote_user": "testuser", + "host": "remotehost", + "port": 22, + "pathes": ["/home/user"] + } + } + }' + } + run main + + assert_success + assert_line --index 0 "⭐ START: backup" + assert_line --index 1 "ℹ️ INFO: backup path build" + assert_line --index 2 "ℹ️ INFO: backup name backup" + assert_line --index 3 "ℹ️ INFO: backup count 15" + assert_line --index 4 "ℹ️ INFO: backup folder 2000-01-01_01_backup" + assert_line --index 5 "ℹ️ INFO: create folder build/2000-01-01_01_backup" + assert_line --index 6 "ℹ️ INFO: create directory build/2000-01-01_01_backup/testpc1" + assert_line --index 7 "################################################################################" + assert_line --index 8 "ℹ️ INFO: machine ${LIGHTPURPLE}testpc1${RESET}; path ${YELLOW}/home/user${RESET}" + assert_line --index 9 "################################################################################" + assert_line --index 10 "✅ SUCCESS: backup" } \ No newline at end of file