forked from emersion/go-message
-
Notifications
You must be signed in to change notification settings - Fork 2
/
encoding_test.go
73 lines (68 loc) · 1.5 KB
/
encoding_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package message
import (
"bytes"
"io"
"io/ioutil"
"strings"
"testing"
)
var testEncodings = []struct {
enc string
encoded string
decoded string
}{
{
enc: "binary",
encoded: "café",
decoded: "café",
},
{
enc: "8bit",
encoded: "café",
decoded: "café",
},
{
enc: "7bit",
encoded: "hi there",
decoded: "hi there",
},
{
enc: "quoted-printable",
encoded: "caf=C3=A9",
decoded: "café",
},
{
enc: "base64",
encoded: "Y2Fmw6k=",
decoded: "café",
},
}
func TestDecode(t *testing.T) {
for _, test := range testEncodings {
r, err := encodingReader(test.enc, strings.NewReader(test.encoded))
if err != nil {
t.Errorf("Expected no error when creating decoder for encoding %q, but got: %v", test.enc, err)
} else if b, err := ioutil.ReadAll(r); err != nil {
t.Errorf("Expected no error when reading encoding %q, but got: %v", test.enc, err)
} else if s := string(b); s != test.decoded {
t.Errorf("Expected decoded text to be %q but got %q", test.decoded, s)
}
}
}
func TestDecode_error(t *testing.T) {
_, err := encodingReader("idontexist", nil)
if err == nil {
t.Errorf("Expected an error when creating decoder for invalid encoding")
}
}
func TestEncode(t *testing.T) {
for _, test := range testEncodings {
var b bytes.Buffer
wc, _ := encodingWriter(test.enc, &b)
io.WriteString(wc, test.decoded)
wc.Close()
if s := b.String(); s != test.encoded {
t.Errorf("Expected encoded text to be %q but got %q", test.encoded, s)
}
}
}