-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathAutolinkEmailTest.java
146 lines (124 loc) · 4.7 KB
/
AutolinkEmailTest.java
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
package org.nibor.autolink;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
import java.util.Arrays;
import java.util.EnumSet;
@RunWith(Parameterized.class)
public class AutolinkEmailTest extends AutolinkTestCase {
@Parameters(name = "{2}")
public static Iterable<Object[]> data() {
return Arrays.asList(new Object[][]{
{LinkExtractor.builder().linkTypes(EnumSet.of(LinkType.EMAIL)).build(), true, "email"},
{LinkExtractor.builder().linkTypes(EnumSet.allOf(LinkType.class)).build(), true, "all"},
{LinkExtractor.builder().emailDomainMustHaveDot(false).build(), false, "all, single part domain"}
});
}
@Parameter(0)
public LinkExtractor linkExtractor;
@Parameter(1)
public boolean domainMustHaveDot;
@Parameter(2)
public String description;
@Test
public void notLinked() {
assertNotLinked("");
assertNotLinked("foo");
assertNotLinked("@");
assertNotLinked("a@");
assertNotLinked("@a");
assertNotLinked("@@@");
}
@Test
public void simple() {
assertLinked("[email protected]", "|[email protected]|");
assertLinked("[email protected]", "|[email protected]|");
}
@Test
public void allowedText() {
// I know, I know...
assertLinked("#!$%&'*+-/=?^_`{}|[email protected]", "|#!$%&'*+-/=?^_`{}|[email protected]|");
}
@Test
public void spaceSeparation() {
assertLinked("foo [email protected]", "foo |[email protected]|");
assertLinked("[email protected] foo", "|[email protected]| foo");
assertLinked("\[email protected]", "\n|[email protected]|");
assertLinked("[email protected]\n", "|[email protected]|\n");
}
@Test
public void specialSeparation() {
assertLinked("([email protected])", "(|[email protected]|)");
assertLinked("\"[email protected]\"", "\"|[email protected]|\"");
assertLinked("\"[email protected]\"", "\"|[email protected]|\"");
assertLinked(",[email protected],", ",|[email protected]|,");
assertLinked(":[email protected]:", ":|[email protected]|:");
assertLinked(";[email protected];", ";|[email protected]|;");
}
@Test
public void dots() {
assertNotLinked("[email protected]");
assertNotLinked("[email protected]");
assertLinked("[email protected]", ".|[email protected]|");
assertLinked("[email protected]", ".|[email protected]|");
assertLinked("[email protected]", "a..|[email protected]|");
assertLinked("[email protected].", "|[email protected]|.");
}
@Test
public void domainWithoutDot() {
if (domainMustHaveDot) {
assertNotLinked("a@b");
assertNotLinked("a@b.");
assertLinked("[email protected].", "|[email protected]|.");
} else {
assertLinked("a@b", "|a@b|");
assertLinked("a@b.", "|a@b|.");
}
}
@Test
public void dashes() {
assertLinked("[email protected]", "|[email protected]|-");
assertLinked("[email protected]", "|[email protected]|");
assertNotLinked("[email protected]");
if (domainMustHaveDot) {
assertNotLinked("a@b-.");
} else {
assertLinked("a@b-.", "|a@b|-.");
}
}
@Test
public void multiple() {
}
@Test
public void international() {
assertLinked("üñîçøðé@example.com", "|üñîçøðé@example.com|");
assertLinked("üñîçøðé@üñîçøðé.com", "|üñîçøðé@üñîçøðé.com|");
}
@Test
public void triggerOverlap() {
// 'w' is a trigger character for WWW links. Make sure we can rewind enough.
assertLinked("[email protected]", "|[email protected]|");
}
@Test
public void replyLevel() {
assertLinked(">[email protected]", ">|[email protected]|");
assertLinked("> [email protected]", "> |[email protected]|");
assertLinked(">>[email protected]", ">>|[email protected]|");
assertLinked(">> [email protected]", ">> |[email protected]|");
assertLinked("> > [email protected]", "> > |[email protected]|");
assertLinked(">>>[email protected]", ">>>|[email protected]|");
assertLinked(">>> [email protected]", ">>> |[email protected]|");
assertLinked("> > > [email protected]", "> > > |[email protected]|");
}
@Override
protected LinkExtractor getLinkExtractor() {
return linkExtractor;
}
private void assertLinked(String input, String expected) {
super.assertLinked(input, expected, LinkType.EMAIL);
}
}