aaf0a0c656
Run `make fmt`. Signed-off-by: Moritz Poldrack <git@moritz.sh> Acked-by: Robin Jarry <robin@jarry.cc>
43 lines
1,005 B
Go
43 lines
1,005 B
Go
package msg
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestParseUnsubscribe(t *testing.T) {
|
|
type tc struct {
|
|
hdr string
|
|
expected []string
|
|
}
|
|
cases := []*tc{
|
|
{"", []string{}},
|
|
{"invalid", []string{}},
|
|
{"<https://example.com>, <http://example.com>", []string{
|
|
"https://example.com", "http://example.com",
|
|
}},
|
|
{"<https://example.com> is a URL", []string{
|
|
"https://example.com",
|
|
}},
|
|
{
|
|
"<mailto:user@host?subject=unsubscribe>, <https://example.com>",
|
|
[]string{
|
|
"mailto:user@host?subject=unsubscribe", "https://example.com",
|
|
},
|
|
},
|
|
{"<>, <https://example> ", []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])
|
|
}
|
|
}
|
|
}
|
|
}
|