| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package notifications
- import (
- "testing"
- "github.com/grafana/grafana/pkg/bus"
- m "github.com/grafana/grafana/pkg/models"
- "github.com/grafana/grafana/pkg/setting"
- . "github.com/smartystreets/goconvey/convey"
- )
- func TestNotifications(t *testing.T) {
- Convey("Given the notifications service", t, func() {
- bus.ClearBusHandlers()
- setting.StaticRootPath = "../../../public/"
- setting.Smtp.Enabled = true
- setting.Smtp.TemplatesPattern = "emails/*.html"
- setting.Smtp.FromAddress = "from@address.com"
- err := Init()
- So(err, ShouldBeNil)
- var sentMsg *Message
- addToMailQueue = func(msg *Message) {
- sentMsg = msg
- }
- Convey("When sending reset email password", func() {
- err := sendResetPasswordEmail(&m.SendResetPasswordEmailCommand{User: &m.User{Email: "asd@asd.com"}})
- So(err, ShouldBeNil)
- So(sentMsg.Body, ShouldContainSubstring, "body")
- So(sentMsg.Subject, ShouldEqual, "Reset your Grafana password - asd@asd.com")
- So(sentMsg.Body, ShouldNotContainSubstring, "Subject")
- })
- })
- }
|