argo-cd/test/e2e/notification_test.go
Takuma Shibuya 6795b80cfc
refactor: replace ptr.To with new(expr) (#26534)
Signed-off-by: sivchari <shibuuuu5@gmail.com>
2026-02-24 17:42:12 +01:00

51 lines
1.8 KiB
Go

package e2e
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/argoproj/argo-cd/v3/pkg/apiclient/notification"
notifFixture "github.com/argoproj/argo-cd/v3/test/e2e/fixture/notification"
)
func TestNotificationsListServices(t *testing.T) {
ctx := notifFixture.Given(t)
ctx.When().
SetParamInNotificationConfigMap("service.webhook.test", "url: https://test.example.com").
Then().Services(func(services *notification.ServiceList, err error) {
require.NoError(t, err)
assert.Equal(t, []*notification.Service{{Name: new("test")}}, services.Items)
})
}
func TestNotificationsListTemplates(t *testing.T) {
ctx := notifFixture.Given(t)
ctx.When().
SetParamInNotificationConfigMap("template.app-created", "email:\n subject: Application {{.app.metadata.name}} has been created.\nmessage: Application {{.app.metadata.name}} has been created.\nteams:\n title: Application {{.app.metadata.name}} has been created.\n").
Then().Templates(func(templates *notification.TemplateList, err error) {
require.NoError(t, err)
assert.Equal(t, []*notification.Template{{Name: new("app-created")}}, templates.Items)
})
}
func TestNotificationsListTriggers(t *testing.T) {
ctx := notifFixture.Given(t)
ctx.When().
SetParamInNotificationConfigMap("trigger.on-created", "- description: Application is created.\n oncePer: app.metadata.name\n send:\n - app-created\n when: \"true\"\n").
Then().Triggers(func(triggers *notification.TriggerList, err error) {
require.NoError(t, err)
assert.Equal(t, []*notification.Trigger{{Name: new("on-created")}}, triggers.Items)
})
}
func TestNotificationsHealthcheck(t *testing.T) {
ctx := notifFixture.Given(t)
ctx.When().
Healthcheck().
Then().
Healthy(func(healthy bool) {
assert.True(t, healthy)
})
}