Files
Charon/backend/internal/services/backup_service_disk_test.go
GitHub Actions 63cebf07ab Refactor services and improve error handling
- Updated file permissions in certificate_service_test.go and log_service_test.go to use octal notation.
- Added a new doc.go file to document the services package.
- Enhanced error handling in docker_service.go, log_service.go, notification_service.go, proxyhost_service.go, remoteserver_service.go, update_service.go, and uptime_service.go by logging errors when closing resources.
- Improved log_service.go to simplify log file processing and deduplication.
- Introduced CRUD tests for notification templates in notification_service_template_test.go.
- Removed the obsolete python_compile_check.sh script.
- Updated notification_service.go to improve template management functions.
- Added tests for uptime service notifications in uptime_service_notification_test.go.
2025-12-08 05:55:17 +00:00

36 lines
825 B
Go

package services
import (
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestBackupService_GetAvailableSpace(t *testing.T) {
t.Parallel()
t.Run("returns space for existing directory", func(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
svc := &BackupService{BackupDir: tmpDir}
space, err := svc.GetAvailableSpace()
require.NoError(t, err)
assert.Greater(t, space, int64(0))
})
t.Run("errors for missing directory", func(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
missingDir := filepath.Join(tmpDir, "does-not-exist")
svc := &BackupService{BackupDir: missingDir}
_, err := svc.GetAvailableSpace()
require.Error(t, err)
})
}