This repository has been archived by the owner on Apr 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcanonical_test.go
166 lines (153 loc) · 3.12 KB
/
canonical_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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package dkim
import (
"bytes"
"testing"
)
var simpleCanonicalizerBodyTests = []struct {
original []string
canonical string
}{
{
[]string{""},
"\r\n",
},
{
[]string{"\r\n"},
"\r\n",
},
{
[]string{"\r\n\r\n\r\n"},
"\r\n",
},
{
[]string{"Hey\r\n\r\n"},
"Hey\r\n",
},
{
[]string{"Hey\r\nHow r u?\r\n\r\n\r\n"},
"Hey\r\nHow r u?\r\n",
},
{
[]string{"Hey\r\n\r\nHow r u?"},
"Hey\r\n\r\nHow r u?\r\n",
},
{
[]string{"What about\nLF endings?\n\n"},
"What about\r\nLF endings?\r\n",
},
{
[]string{"\r\n", "\r", "\n"},
"\r\n",
},
{
[]string{"\r\n", "\r"},
"\r\n\r\r\n",
},
{
[]string{"\r\n", "\r", "\n", "hey\n", "\n"},
"\r\n\r\nhey\r\n",
},
}
func TestSimpleCanonicalizer_CanonicalBody(t *testing.T) {
c := new(simpleCanonicalizer)
var b bytes.Buffer
for _, test := range simpleCanonicalizerBodyTests {
b.Reset()
wc := c.CanonicalizeBody(&b)
for _, chunk := range test.original {
if _, err := wc.Write([]byte(chunk)); err != nil {
t.Fatalf("Expected no error while writing to simple body canonicalizer, got: %v", err)
}
}
if err := wc.Close(); err != nil {
t.Errorf("Expected no error while closing simple body canonicalizer, got: %v", err)
} else if s := b.String(); s != test.canonical {
t.Errorf("Expected canonical body for %q to be %q, but got %q", test.original, test.canonical, s)
}
}
}
var relaxedCanonicalizerHeaderTests = []struct {
original string
canonical string
}{
{
"SubjeCT: Your Name\r\n",
"subject:Your Name\r\n",
},
{
"Subject \t:\t Your Name\t \r\n",
"subject:Your Name\r\n",
},
{
"Subject \t:\t Kimi \t \r\n No \t\r\n Na Wa\r\n",
"subject:Kimi No Na Wa\r\n",
},
}
func TestRelaxedCanonicalizer_CanonicalizeHeader(t *testing.T) {
c := new(relaxedCanonicalizer)
for _, test := range relaxedCanonicalizerHeaderTests {
if s := c.CanonicalizeHeader(test.original); s != test.canonical {
t.Errorf("Expected relaxed canonical header to be %q but got %q", test.canonical, s)
}
}
}
var relaxedCanonicalizerBodyTests = []struct {
original string
canonical string
}{
{
"",
"",
},
{
"\r\n",
"",
},
{
"\r\n\r\n\r\n",
"",
},
{
"Hey\r\n\r\n",
"Hey\r\n",
},
{
"Hey\r\nHow r u?\r\n\r\n\r\n",
"Hey\r\nHow r u?\r\n",
},
{
"Hey\r\n\r\nHow r u?",
"Hey\r\n\r\nHow r u?\r\n",
},
{
"Hey \t you!",
"Hey you!\r\n",
},
{
"Hey \t \r\nyou!",
"Hey\r\nyou!\r\n",
},
{
"Hey\r\n \t you!\r\n",
"Hey\r\n you!\r\n",
},
{
"Hey\r\n \t \r\n \r\n",
"Hey\r\n",
},
}
func TestRelaxedCanonicalizer_CanonicalBody(t *testing.T) {
c := new(relaxedCanonicalizer)
var b bytes.Buffer
for _, test := range relaxedCanonicalizerBodyTests {
b.Reset()
wc := c.CanonicalizeBody(&b)
if _, err := wc.Write([]byte(test.original)); err != nil {
t.Errorf("Expected no error while writing to simple body canonicalizer, got: %v", err)
} else if err := wc.Close(); err != nil {
t.Errorf("Expected no error while closing simple body canonicalizer, got: %v", err)
} else if s := b.String(); s != test.canonical {
t.Errorf("Expected canonical body for %q to be %q, but got %q", test.original, test.canonical, s)
}
}
}