forked from YuriyGuts/regex-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomRegexTests.cs
215 lines (200 loc) · 10 KB
/
CustomRegexTests.cs
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
using System.Collections.Generic;
using System.Text.RegularExpressions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace YuriyGuts.RegexBuilder.Tests
{
[TestClass]
public class CustomRegexTests
{
[TestMethod]
public void TestHrefParser()
{
const string quotationMark = "\"";
// Regex value taken from MSDN: http://msdn.microsoft.com/en-us/library/t9e807fx.aspx
Regex hrefRegex = RegexBuilder.Build
(
RegexOptions.IgnoreCase,
RegexBuilder.Literal("href"),
RegexBuilder.MetaCharacter(RegexMetaChars.WhiteSpace, RegexQuantifier.ZeroOrMore),
RegexBuilder.Literal("="),
RegexBuilder.MetaCharacter(RegexMetaChars.WhiteSpace, RegexQuantifier.ZeroOrMore),
RegexBuilder.Alternate
(
RegexBuilder.Concatenate
(
RegexBuilder.NonEscapedLiteral(quotationMark),
RegexBuilder.Group
(
"Target",
RegexBuilder.NegativeCharacterSet(quotationMark, RegexQuantifier.ZeroOrMore)
),
RegexBuilder.NonEscapedLiteral(quotationMark)
),
RegexBuilder.Group
(
"Target",
RegexBuilder.MetaCharacter(RegexMetaChars.NonwhiteSpace, RegexQuantifier.OneOrMore)
)
)
);
Match match = hrefRegex.Match("My favorite web sites include:</p>"
+ "<a href=\"http://msdn2.microsoft.com\">"
+ "MSDN Home Page</A></P>"
+ "<a href=\"http://www.microsoft.com\">"
+ "Microsoft Corporation Home Page</a></p>"
+ "<a href=\"http://blogs.msdn.com/bclteam\">"
+ ".NET Base Class Library blog</a></p>)");
List<string> capturedValues = new List<string>();
while (match.Success)
{
capturedValues.Add(match.Groups["Target"].Value);
match = match.NextMatch();
}
Assert.AreEqual("http://msdn2.microsoft.com", capturedValues[0]);
Assert.AreEqual("http://www.microsoft.com", capturedValues[1]);
Assert.AreEqual("http://blogs.msdn.com/bclteam", capturedValues[2]);
}
[TestMethod]
public void TestServerURLParser()
{
Regex serverUrlRegex = RegexBuilder.Build
(
RegexBuilder.Concatenate
(
RegexBuilder.Group
(
"Protocol",
RegexBuilder.CharacterSet(RegexMetaChars.WordCharacter + '.' + '-', RegexQuantifier.OneOrMore)
),
RegexBuilder.Literal("://"),
RegexQuantifier.ZeroOrOne
),
RegexBuilder.Group
(
"Host",
RegexBuilder.NegativeCharacterSet("/:", RegexQuantifier.OneOrMore)
),
RegexBuilder.Concatenate
(
RegexBuilder.Literal(":", RegexQuantifier.ZeroOrOne),
RegexBuilder.Group
(
"Port",
RegexBuilder.MetaCharacter(RegexMetaChars.Digit, RegexQuantifier.OneOrMore)
),
RegexQuantifier.ZeroOrOne
)
);
Assert.IsTrue(serverUrlRegex.IsMatch("net.tcp://srv1.mycompany.com.ua:8080/"));
Assert.IsTrue(serverUrlRegex.IsMatch("http://srv1.mycompany.com.ua/"));
Assert.IsTrue(serverUrlRegex.IsMatch("srv1.mycompany.com.ua:9876"));
Match match1 = serverUrlRegex.Match("net.tcp://srv1.mycompany.com.ua:8080/");
Assert.AreEqual("net.tcp", match1.Groups["Protocol"].Value);
Assert.AreEqual("srv1.mycompany.com.ua", match1.Groups["Host"].Value);
Assert.AreEqual("8080", match1.Groups["Port"].Value);
Match match2 = serverUrlRegex.Match("ftp://filestore-international.company.com/");
Assert.AreEqual("ftp", match2.Groups["Protocol"].Value);
Assert.AreEqual("filestore-international.company.com", match2.Groups["Host"].Value);
Assert.AreEqual(string.Empty, match2.Groups["Port"].Value);
Match match3 = serverUrlRegex.Match("computer.company-domain.local");
Assert.AreEqual(string.Empty, match3.Groups["Protocol"].Value);
Assert.AreEqual("computer.company-domain.local", match3.Groups["Host"].Value);
Assert.AreEqual(string.Empty, match3.Groups["Port"].Value);
}
[TestMethod]
public void TestEmailValidator()
{
const string quotationMark = "\"";
const string alphaCharacters = "a-zA-Z";
const string alphaNumericCharacters = "0-9a-zA-Z";
const string allowedLoginSymbols = "-!#$%&'*+=?^`{}|~";
// Regex value taken from MSDN: http://msdn.microsoft.com/en-us/library/01escwtf.aspx
Regex emailRegex = RegexBuilder.Build
(
RegexBuilder.MetaCharacter(RegexMetaChars.LineStart),
// Match everything before @
RegexBuilder.ConditionalMatch
(
// If the string starts with a quotation mark...
RegexBuilder.Literal(quotationMark),
// ...then match the quoted text and the @ character...
RegexBuilder.Concatenate
(
RegexBuilder.Literal(quotationMark),
RegexBuilder.MetaCharacter(RegexMetaChars.AnyCharacter, RegexQuantifier.OneOrMoreLazy),
RegexBuilder.Literal(quotationMark),
RegexBuilder.Literal("@")
),
// ...otherwise, match a sequence of alphanumeric characters and symbols, followed by @
RegexBuilder.Concatenate
(
RegexBuilder.CharacterSet(alphaNumericCharacters, RegexQuantifier.None),
RegexBuilder.Alternate
(
// The sequence can either contain only one dot...
RegexBuilder.NegativeLookAhead
(
RegexBuilder.Literal("."),
RegexBuilder.Literal(".")
),
// ...or contain some special symbols (-!#$%&'*+=?^`{}|~)
RegexBuilder.CharacterSet(allowedLoginSymbols + RegexMetaChars.WordCharacter, RegexQuantifier.ZeroOrMore),
RegexQuantifier.ZeroOrMore
),
// Before matching the @ character, make sure that it is preceded by alphanumeric characters.
RegexBuilder.PositiveLookBehind
(
RegexBuilder.CharacterSet(alphaNumericCharacters, RegexQuantifier.None),
RegexBuilder.Literal("@")
)
)
),
// Match everything after @
RegexBuilder.ConditionalMatch
(
// Domain can be either an IP address enclosed in square brackets...
RegexBuilder.Literal("["),
// ...(IP address should look like [aaa.bbb.ccc.ddd])...
RegexBuilder.Concatenate
(
RegexBuilder.Literal("["),
RegexBuilder.Concatenate
(
RegexBuilder.MetaCharacter(RegexMetaChars.Digit, RegexQuantifier.Custom(1, 3, false)),
RegexBuilder.Literal("."),
RegexQuantifier.Exactly(3)
),
RegexBuilder.MetaCharacter(RegexMetaChars.Digit, RegexQuantifier.Custom(1, 3, false)),
RegexBuilder.Literal("]")
),
// ...or it can be a hostname.
RegexBuilder.Concatenate
(
RegexBuilder.Concatenate
(
RegexBuilder.CharacterSet(alphaNumericCharacters, RegexQuantifier.None),
RegexBuilder.CharacterSet("-" + RegexMetaChars.WordCharacter, RegexQuantifier.ZeroOrMore),
RegexBuilder.CharacterSet(alphaNumericCharacters, RegexQuantifier.None),
RegexBuilder.Literal("."),
RegexQuantifier.OneOrMore
),
RegexBuilder.CharacterSet(alphaCharacters, RegexQuantifier.Custom(2, 6, false))
)
),
RegexBuilder.MetaCharacter(RegexMetaChars.LineEnd)
);
Assert.IsTrue(emailRegex.IsMatch("[email protected]"));
Assert.IsTrue(emailRegex.IsMatch("[email protected]"));
Assert.IsTrue(emailRegex.IsMatch("[email protected]"));
Assert.IsFalse(emailRegex.IsMatch("[email protected]"));
Assert.IsFalse(emailRegex.IsMatch("[email protected]"));
Assert.IsTrue(emailRegex.IsMatch("js#[email protected]"));
Assert.IsTrue(emailRegex.IsMatch("j_9@[129.126.118.1]"));
Assert.IsFalse(emailRegex.IsMatch("[email protected]"));
Assert.IsFalse(emailRegex.IsMatch("js*@proseware.com"));
Assert.IsFalse(emailRegex.IsMatch("[email protected]"));
Assert.IsFalse(emailRegex.IsMatch("[email protected]"));
Assert.IsTrue(emailRegex.IsMatch("[email protected]"));
}
}
}