Files
Charon/backend/internal/services/uptime_service_notification_test.go
T
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
1.1 KiB
Go

package services
import (
"testing"
"github.com/Wikid82/charon/backend/internal/models"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
func TestUptimeService_sendRecoveryNotification(t *testing.T) {
t.Parallel()
db, err := gorm.Open(sqlite.Open("file:"+uuid.NewString()+"?mode=memory&cache=shared"), &gorm.Config{})
require.NoError(t, err)
require.NoError(t, db.AutoMigrate(&models.Notification{}, &models.NotificationProvider{}))
ns := NewNotificationService(db)
svc := NewUptimeService(db, ns)
monitor := models.UptimeMonitor{Name: "API Server", URL: "https://api.example.com"}
svc.sendRecoveryNotification(monitor, "5m")
var notifications []models.Notification
require.NoError(t, db.Find(&notifications).Error)
require.Len(t, notifications, 1)
assert.Contains(t, notifications[0].Title, "API Server")
assert.Contains(t, notifications[0].Message, "Downtime: 5m")
assert.Equal(t, models.NotificationTypeSuccess, notifications[0].Type)
}