-
-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix santa bug, email subject encoding, closes #65
- Loading branch information
Philipp Heckel
committed
Dec 26, 2021
1 parent
9a0f1f2
commit ec7e58a
Showing
2 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,10 +13,10 @@ func TestFormatMail_Basic(t *testing.T) { | |
Topic: "alerts", | ||
Message: "A simple message", | ||
}) | ||
expected := `Content-Type: text/plain; charset="utf-8" | ||
From: "ntfy.sh/alerts" <[email protected]> | ||
expected := `From: "ntfy.sh/alerts" <[email protected]> | ||
To: [email protected] | ||
Subject: A simple message | ||
Content-Type: text/plain; charset="utf-8" | ||
A simple message | ||
|
@@ -34,10 +34,10 @@ func TestFormatMail_JustEmojis(t *testing.T) { | |
Message: "A simple message", | ||
Tags: []string{"grinning"}, | ||
}) | ||
expected := `Content-Type: text/plain; charset="utf-8" | ||
From: "ntfy.sh/alerts" <[email protected]> | ||
expected := `From: "ntfy.sh/alerts" <[email protected]> | ||
To: [email protected] | ||
Subject: 😀 A simple message | ||
Subject: =?utf-8?b?8J+YgCBBIHNpbXBsZSBtZXNzYWdl?= | ||
Content-Type: text/plain; charset="utf-8" | ||
A simple message | ||
|
@@ -55,10 +55,10 @@ func TestFormatMail_JustOtherTags(t *testing.T) { | |
Message: "A simple message", | ||
Tags: []string{"not-an-emoji"}, | ||
}) | ||
expected := `Content-Type: text/plain; charset="utf-8" | ||
From: "ntfy.sh/alerts" <[email protected]> | ||
expected := `From: "ntfy.sh/alerts" <[email protected]> | ||
To: [email protected] | ||
Subject: A simple message | ||
Content-Type: text/plain; charset="utf-8" | ||
A simple message | ||
|
@@ -78,10 +78,10 @@ func TestFormatMail_JustPriority(t *testing.T) { | |
Message: "A simple message", | ||
Priority: 2, | ||
}) | ||
expected := `Content-Type: text/plain; charset="utf-8" | ||
From: "ntfy.sh/alerts" <[email protected]> | ||
expected := `From: "ntfy.sh/alerts" <[email protected]> | ||
To: [email protected] | ||
Subject: A simple message | ||
Content-Type: text/plain; charset="utf-8" | ||
A simple message | ||
|
@@ -101,10 +101,10 @@ func TestFormatMail_UTF8Subject(t *testing.T) { | |
Message: "A simple message", | ||
Title: " :: A not so simple title öäüß ¡Hola, señor!", | ||
}) | ||
expected := `Content-Type: text/plain; charset="utf-8" | ||
From: "ntfy.sh/alerts" <[email protected]> | ||
expected := `From: "ntfy.sh/alerts" <[email protected]> | ||
To: [email protected] | ||
Subject: :: A not so simple title öäüß ¡Hola, señor! | ||
Subject: =?utf-8?b?IDo6IEEgbm90IHNvIHNpbXBsZSB0aXRsZSDDtsOkw7zDnyDCoUhvbGEsIHNl?= =?utf-8?b?w7FvciE=?= | ||
Content-Type: text/plain; charset="utf-8" | ||
A simple message | ||
|
@@ -124,10 +124,10 @@ func TestFormatMail_WithAllTheThings(t *testing.T) { | |
Title: "Oh no 🙈\nThis is a message across\nmultiple lines", | ||
Message: "A message that contains monkeys 🙉\nNo really, though. Monkeys!", | ||
}) | ||
expected := `Content-Type: text/plain; charset="utf-8" | ||
From: "ntfy.sh/alerts" <[email protected]> | ||
expected := `From: "ntfy.sh/alerts" <[email protected]> | ||
To: [email protected] | ||
Subject: ⚠️ 💀 Oh no 🙈 This is a message across multiple lines | ||
Subject: =?utf-8?b?4pqg77iPIPCfkoAgT2ggbm8g8J+ZiCBUaGlzIGlzIGEgbWVzc2FnZSBhY3Jv?= =?utf-8?b?c3MgbXVsdGlwbGUgbGluZXM=?= | ||
Content-Type: text/plain; charset="utf-8" | ||
A message that contains monkeys 🙉 | ||
No really, though. Monkeys! | ||
|