// Vikunja is a to-do list application to facilitate your life. // Copyright 2018-2021 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public Licensee as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public Licensee for more details. // // You should have received a copy of the GNU Affero General Public Licensee // along with this program. If not, see . package notifications import ( "testing" "github.com/stretchr/testify/assert" ) func TestNewMail(t *testing.T) { t.Run("Full mail", func(t *testing.T) { mail := NewMail(). From("test@example.com"). To("test@otherdomain.com"). Subject("Testmail"). Greeting("Hi there,"). Line("This is a line"). Line("And another one"). Action("the actiopn", "https://example.com"). Line("This should be an outro line"). Line("And one more, because why not?") assert.Equal(t, "test@example.com", mail.from) assert.Equal(t, "test@otherdomain.com", mail.to) assert.Equal(t, "Testmail", mail.subject) assert.Equal(t, "Hi there,", mail.greeting) assert.Len(t, mail.introLines, 2) assert.Equal(t, "This is a line", mail.introLines[0]) assert.Equal(t, "And another one", mail.introLines[1]) assert.Len(t, mail.outroLines, 2) assert.Equal(t, "This should be an outro line", mail.outroLines[0]) assert.Equal(t, "And one more, because why not?", mail.outroLines[1]) }) t.Run("No greeting", func(t *testing.T) { mail := NewMail(). From("test@example.com"). To("test@otherdomain.com"). Subject("Testmail"). Line("This is a line"). Line("And another one") assert.Equal(t, "test@example.com", mail.from) assert.Equal(t, "test@otherdomain.com", mail.to) assert.Equal(t, "Testmail", mail.subject) assert.Equal(t, "Hi,", mail.greeting) // Default greeting assert.Len(t, mail.introLines, 2) assert.Equal(t, "This is a line", mail.introLines[0]) assert.Equal(t, "And another one", mail.introLines[1]) }) t.Run("No action", func(t *testing.T) { mail := NewMail(). From("test@example.com"). To("test@otherdomain.com"). Subject("Testmail"). Line("This is a line"). Line("And another one"). Line("This should be an outro line"). Line("And one more, because why not?") assert.Equal(t, "test@example.com", mail.from) assert.Equal(t, "test@otherdomain.com", mail.to) assert.Equal(t, "Testmail", mail.subject) assert.Len(t, mail.introLines, 4) assert.Equal(t, "This is a line", mail.introLines[0]) assert.Equal(t, "And another one", mail.introLines[1]) assert.Equal(t, "This should be an outro line", mail.introLines[2]) assert.Equal(t, "And one more, because why not?", mail.introLines[3]) }) } func TestRenderMail(t *testing.T) { mail := NewMail(). From("test@example.com"). To("test@otherdomain.com"). Subject("Testmail"). Greeting("Hi there,"). Line("This is a line"). Line("And another one"). Action("The action", "https://example.com"). Line("This should be an outro line"). Line("And one more, because why not?") mailopts, err := RenderMail(mail) assert.NoError(t, err) assert.Equal(t, mail.from, mailopts.From) assert.Equal(t, mail.to, mailopts.To) assert.Equal(t, ` Hi there, This is a line And another one The action: https://example.com This should be an outro line And one more, because why not? `, mailopts.Message) assert.Equal(t, `

Vikunja

Hi there,

This is a line

And another one

The action

This should be an outro line

And one more, because why not?

If the button above doesn't work, copy the url below and paste it in your browsers address bar:
https://example.com

`, mailopts.HTMLMessage) }