123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- package server
- import (
- "github.com/emersion/go-smtp"
- "github.com/stretchr/testify/require"
- "strings"
- "testing"
- )
- func TestSmtpBackend_Multipart(t *testing.T) {
- email := `MIME-Version: 1.0
- Date: Tue, 28 Dec 2021 00:30:10 +0100
- Message-ID: <CAAvm79YP0C=Rt1N=KWmSUBB87KK2rRChmdzKqF1vCwMEUiVzLQ@mail.gmail.com>
- Subject: and one more
- From: Phil <phil@example.com>
- To: ntfy-mytopic@ntfy.sh
- Content-Type: multipart/alternative; boundary="000000000000f3320b05d42915c9"
- --000000000000f3320b05d42915c9
- Content-Type: text/plain; charset="UTF-8"
- what's up
- --000000000000f3320b05d42915c9
- Content-Type: text/html; charset="UTF-8"
- <div dir="ltr">what's up<br clear="all"><div><br></div></div>
- --000000000000f3320b05d42915c9--`
- _, backend := newTestBackend(t, func(m *message) error {
- require.Equal(t, "mytopic", m.Topic)
- require.Equal(t, "and one more", m.Title)
- require.Equal(t, "what's up", m.Message)
- return nil
- })
- session, _ := backend.AnonymousLogin(nil)
- require.Nil(t, session.Mail("phil@example.com", smtp.MailOptions{}))
- require.Nil(t, session.Rcpt("ntfy-mytopic@ntfy.sh"))
- require.Nil(t, session.Data(strings.NewReader(email)))
- }
- func TestSmtpBackend_MultipartNoBody(t *testing.T) {
- email := `MIME-Version: 1.0
- Date: Tue, 28 Dec 2021 01:33:34 +0100
- Message-ID: <CAAvm7ABCDsi9vsuu0WTRXzZQBC8dXrDOLT8iCWdqrsmg@mail.gmail.com>
- Subject: This email has a subject but no body
- From: Phil <phil@example.com>
- To: ntfy-emailtest@ntfy.sh
- Content-Type: multipart/alternative; boundary="000000000000bcf4a405d429f8d4"
- --000000000000bcf4a405d429f8d4
- Content-Type: text/plain; charset="UTF-8"
- --000000000000bcf4a405d429f8d4
- Content-Type: text/html; charset="UTF-8"
- <div dir="ltr"><br></div>
- --000000000000bcf4a405d429f8d4--`
- _, backend := newTestBackend(t, func(m *message) error {
- require.Equal(t, "emailtest", m.Topic)
- require.Equal(t, "", m.Title) // We flipped message and body
- require.Equal(t, "This email has a subject but no body", m.Message)
- return nil
- })
- session, _ := backend.AnonymousLogin(nil)
- require.Nil(t, session.Mail("phil@example.com", smtp.MailOptions{}))
- require.Nil(t, session.Rcpt("ntfy-emailtest@ntfy.sh"))
- require.Nil(t, session.Data(strings.NewReader(email)))
- }
- func TestSmtpBackend_Plaintext(t *testing.T) {
- email := `Date: Tue, 28 Dec 2021 00:30:10 +0100
- Message-ID: <CAAvm79YP0C=Rt1N=KWmSUBB87KK2rRChmdzKqF1vCwMEUiVzLQ@mail.gmail.com>
- Subject: and one more
- From: Phil <phil@example.com>
- To: mytopic@ntfy.sh
- Content-Type: text/plain; charset="UTF-8"
- what's up
- `
- conf, backend := newTestBackend(t, func(m *message) error {
- require.Equal(t, "mytopic", m.Topic)
- require.Equal(t, "and one more", m.Title)
- require.Equal(t, "what's up", m.Message)
- return nil
- })
- conf.SMTPServerAddrPrefix = ""
- session, _ := backend.AnonymousLogin(nil)
- require.Nil(t, session.Mail("phil@example.com", smtp.MailOptions{}))
- require.Nil(t, session.Rcpt("mytopic@ntfy.sh"))
- require.Nil(t, session.Data(strings.NewReader(email)))
- }
- func TestSmtpBackend_Plaintext_EncodedSubject(t *testing.T) {
- email := `Date: Tue, 28 Dec 2021 00:30:10 +0100
- Subject: =?UTF-8?B?VGhyZWUgc2FudGFzIPCfjoXwn46F8J+OhQ==?=
- From: Phil <phil@example.com>
- To: ntfy-mytopic@ntfy.sh
- Content-Type: text/plain; charset="UTF-8"
- what's up
- `
- _, backend := newTestBackend(t, func(m *message) error {
- require.Equal(t, "Three santas ๐
๐
๐
", m.Title)
- return nil
- })
- session, _ := backend.AnonymousLogin(nil)
- require.Nil(t, session.Mail("phil@example.com", smtp.MailOptions{}))
- require.Nil(t, session.Rcpt("ntfy-mytopic@ntfy.sh"))
- require.Nil(t, session.Data(strings.NewReader(email)))
- }
- func TestSmtpBackend_Plaintext_TooLongTruncate(t *testing.T) {
- email := `Date: Tue, 28 Dec 2021 00:30:10 +0100
- Message-ID: <CAAvm79YP0C=Rt1N=KWmSUBB87KK2rRChmdzKqF1vCwMEUiVzLQ@mail.gmail.com>
- Subject: and one more
- From: Phil <phil@example.com>
- To: mytopic@ntfy.sh
- Content-Type: text/plain; charset="UTF-8"
- you know this is a string.
- it's a long string.
- it's supposed to be longer than the max message length
- which is 4096 bytes,
- it used to be 512 bytes, but I increased that for the UnifiedPush support
- the 512 bytes was a little short, some people said
- but it kinda makes sense when you look at what it looks like one a phone
- heck this wasn't even half of it so far.
- so i'm gonna fill the rest of this with AAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- and with BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
- BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
- BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
- that should do it
- `
- conf, backend := newTestBackend(t, func(m *message) error {
- expected := `you know this is a string.
- it's a long string.
- it's supposed to be longer than the max message length
- which is 4096 bytes,
- it used to be 512 bytes, but I increased that for the UnifiedPush support
- the 512 bytes was a little short, some people said
- but it kinda makes sense when you look at what it looks like one a phone
- heck this wasn't even half of it so far.
- so i'm gonna fill the rest of this with AAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa
- AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- ......................................................................
- and with BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
- BBBBBBBBBBBBBBBBBBBBBBBB`
- require.Equal(t, 4096, len(expected)) // Sanity check
- require.Equal(t, expected, m.Message)
- return nil
- })
- conf.SMTPServerAddrPrefix = ""
- session, _ := backend.AnonymousLogin(nil)
- require.Nil(t, session.Mail("phil@example.com", smtp.MailOptions{}))
- require.Nil(t, session.Rcpt("mytopic@ntfy.sh"))
- require.Nil(t, session.Data(strings.NewReader(email)))
- }
- func TestSmtpBackend_Unsupported(t *testing.T) {
- email := `Date: Tue, 28 Dec 2021 00:30:10 +0100
- Message-ID: <CAAvm79YP0C=Rt1N=KWmSUBB87KK2rRChmdzKqF1vCwMEUiVzLQ@mail.gmail.com>
- Subject: and one more
- From: Phil <phil@example.com>
- To: mytopic@ntfy.sh
- Content-Type: text/SOMETHINGELSE
- what's up
- `
- conf, backend := newTestBackend(t, func(m *message) error {
- return nil
- })
- conf.SMTPServerAddrPrefix = ""
- session, _ := backend.Login(nil, "user", "pass")
- require.Nil(t, session.Mail("phil@example.com", smtp.MailOptions{}))
- require.Nil(t, session.Rcpt("mytopic@ntfy.sh"))
- require.Equal(t, errUnsupportedContentType, session.Data(strings.NewReader(email)))
- }
- func newTestBackend(t *testing.T, sub subscriber) (*Config, *smtpBackend) {
- conf := newTestConfig(t)
- conf.SMTPServerListen = ":25"
- conf.SMTPServerDomain = "ntfy.sh"
- conf.SMTPServerAddrPrefix = "ntfy-"
- backend := newMailBackend(conf, sub)
- return conf, backend
- }
|