From 030f39043628f01b174ebb11595a4e74da95f0b3 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Thu, 4 Jul 2019 11:01:07 -0400 Subject: Add unsubscribe command The unsubscribe command, available when in a message viewer context, enables users to easily unsubscribe from mailing lists. When the command is executed, aerc looks for a List-Unsubscribe header as defined in RFC 2369. If found, aerc will attempt to present the user with a suitable interface for completing the request. Currently, mailto and http(s) URLs are supported. In the case of a HTTP(S) URL, aerc will open the link in a browser. For mailto links, a new composer tab will be opened with a message filled out according to the URL. The message is not sent automatically in order to provide the user a chance to review it first. Closes #101 --- commands/msg/unsubscribe_test.go | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 commands/msg/unsubscribe_test.go (limited to 'commands/msg/unsubscribe_test.go') diff --git a/commands/msg/unsubscribe_test.go b/commands/msg/unsubscribe_test.go new file mode 100644 index 0000000..e4e6f25 --- /dev/null +++ b/commands/msg/unsubscribe_test.go @@ -0,0 +1,41 @@ +package msg + +import ( + "testing" +) + +func TestParseUnsubscribe(t *testing.T) { + type tc struct { + hdr string + expected []string + } + cases := []*tc{ + &tc{"", []string{}}, + &tc{"invalid", []string{}}, + &tc{", ", []string{ + "https://example.com", "http://example.com", + }}, + &tc{" is a URL", []string{ + "https://example.com", + }}, + &tc{", ", + []string{ + "mailto:user@host?subject=unsubscribe", "https://example.com", + }}, + &tc{"<>, ", []string{ + "", "https://example", + }}, + } + for _, c := range cases { + result := parseUnsubscribeMethods(c.hdr) + if len(result) != len(c.expected) { + t.Errorf("expected %d methods but got %d", len(c.expected), len(result)) + continue + } + for idx := 0; idx < len(result); idx++ { + if result[idx].String() != c.expected[idx] { + t.Errorf("expected %v but got %v", c.expected[idx], result[idx]) + } + } + } +} -- cgit v1.2.3