mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
40 lines
1.6 KiB
Go
40 lines
1.6 KiB
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/argoproj/argo-cd/v2/pkg/apiclient/notification"
|
|
notifFixture "github.com/argoproj/argo-cd/v2/test/e2e/fixture/notification"
|
|
"github.com/stretchr/testify/assert"
|
|
"k8s.io/utils/pointer"
|
|
)
|
|
|
|
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) {
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, []*notification.Service{{Name: pointer.String("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) {
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, []*notification.Template{{Name: pointer.String("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) {
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, []*notification.Trigger{{Name: pointer.String("on-created")}}, triggers.Items)
|
|
})
|
|
}
|