63cebf07ab
- 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.
36 lines
1.1 KiB
Go
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(¬ifications).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)
|
|
}
|