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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
// Copyright 2008 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
goog.provide('goog.string.linkifyTest');
goog.setTestOnly('goog.string.linkifyTest');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.dom.safe');
goog.require('goog.html.SafeHtml');
goog.require('goog.string');
goog.require('goog.string.linkify');
goog.require('goog.testing.dom');
goog.require('goog.testing.jsunit');
var div = goog.dom.createElement(goog.dom.TagName.DIV);
function assertLinkify(comment, input, expected, opt_preserveNewlines) {
assertEquals(
comment, expected,
goog.html.SafeHtml.unwrap(
goog.string.linkify.linkifyPlainTextAsHtml(
input, {rel: '', target: ''}, opt_preserveNewlines)));
}
function testContainsNoLink() {
assertLinkify(
'Text does not contain any links', 'Text with no links in it.',
'Text with no links in it.');
}
function testContainsALink() {
assertLinkify(
'Text only contains a link', 'http://www.google.com/',
'<a href="http://www.google.com/">http://www.google.com/<\/a>');
}
function testStartsWithALink() {
assertLinkify(
'Text starts with a link',
'http://www.google.com/ is a well known search engine',
'<a href="http://www.google.com/">http://www.google.com/<\/a>' +
' is a well known search engine');
}
function testEndsWithALink() {
assertLinkify(
'Text ends with a link',
'Look at this search engine: http://www.google.com/',
'Look at this search engine: ' +
'<a href="http://www.google.com/">http://www.google.com/<\/a>');
}
function testContainsOnlyEmail() {
assertLinkify(
'Text only contains an email address', 'bolinfest@google.com',
'<a href="mailto:bolinfest@google.com">bolinfest@google.com<\/a>');
}
function testStartsWithAnEmail() {
assertLinkify(
'Text starts with an email address',
'bolinfest@google.com wrote this test.',
'<a href="mailto:bolinfest@google.com">bolinfest@google.com<\/a>' +
' wrote this test.');
}
function testEndsWithAnEmail() {
assertLinkify(
'Text ends with an email address',
'This test was written by bolinfest@google.com.',
'This test was written by ' +
'<a href="mailto:bolinfest@google.com">bolinfest@google.com<\/a>.');
}
function testUrlWithPortNumber() {
assertLinkify(
'URL with a port number', 'http://www.google.com:80/',
'<a href="http://www.google.com:80/">http://www.google.com:80/<\/a>');
}
function testUrlWithUserPasswordAndPortNumber() {
assertLinkify(
'URL with a user, a password and a port number',
'http://lascap:p4ssw0rd@google.com:80/s?q=a&hl=en',
'<a href="http://lascap:p4ssw0rd@google.com:80/s?q=a&hl=en">' +
'http://lascap:p4ssw0rd@google.com:80/s?q=a&hl=en<\/a>');
}
function testUrlWithUnderscore() {
assertLinkify(
'URL with an underscore', 'http://www_foo.google.com/',
'<a href="http://www_foo.google.com/">http://www_foo.google.com/<\/a>');
}
function testInternalUrlWithoutDomain() {
assertLinkify(
'Internal URL without a proper domain', 'http://tracker/1068594',
'<a href="http://tracker/1068594">http://tracker/1068594<\/a>');
}
function testInternalUrlOneChar() {
assertLinkify(
'Internal URL with a one char domain', 'http://b',
'<a href="http://b">http://b<\/a>');
}
function testSecureInternalUrlWithoutDomain() {
assertLinkify(
'Secure Internal URL without a proper domain', 'https://review/6594805',
'<a href="https://review/6594805">https://review/6594805<\/a>');
}
function testTwoUrls() {
assertLinkify(
'Text with two URLs in it',
'I use both http://www.google.com and http://yahoo.com, don\'t you?',
'I use both <a href="http://www.google.com">http://www.google.com<\/a> ' +
'and <a href="http://yahoo.com">http://yahoo.com<\/a>, ' +
goog.string.htmlEscape('don\'t you?'));
}
function testGetParams() {
assertLinkify(
'URL with GET params', 'http://google.com/?a=b&c=d&e=f',
'<a href="http://google.com/?a=b&c=d&e=f">' +
'http://google.com/?a=b&c=d&e=f<\/a>');
}
function testGoogleCache() {
assertLinkify(
'Google search result from cache',
'http://66.102.7.104/search?q=cache:I4LoMT6euUUJ:' +
'www.google.com/intl/en/help/features.html+google+cache&hl=en',
'<a href="http://66.102.7.104/search?q=cache:I4LoMT6euUUJ:' +
'www.google.com/intl/en/help/features.html+google+cache&hl=en">' +
'http://66.102.7.104/search?q=cache:I4LoMT6euUUJ:' +
'www.google.com/intl/en/help/features.html+google+cache&hl=en' +
'<\/a>');
}
function testUrlWithoutHttp() {
assertLinkify(
'URL without http protocol',
'It\'s faster to type www.google.com without the http:// in front.',
goog.string.htmlEscape('It\'s faster to type ') +
'<a href="http://www.google.com">www.google.com' +
'<\/a> without the http:// in front.');
}
function testUrlWithCapitalsWithoutHttp() {
assertLinkify(
'URL with capital letters without http protocol',
'It\'s faster to type Www.google.com without the http:// in front.',
goog.string.htmlEscape('It\'s faster to type ') +
'<a href="http://Www.google.com">Www.google.com' +
'<\/a> without the http:// in front.');
}
function testUrlHashBang() {
assertLinkify(
'URL with #!', 'Another test URL: ' +
'https://www.google.com/testurls/#!/page',
'Another test URL: ' +
'<a href="https://www.google.com/testurls/#!/page">' +
'https://www.google.com/testurls/#!/page<\/a>');
}
function testTextLooksLikeUrlWithoutHttp() {
assertLinkify(
'Text looks like an url but is not', 'This showww.is just great: www.is',
'This showww.is just great: <a href="http://www.is">www.is<\/a>');
}
function testEmailWithSubdomain() {
assertLinkify(
'Email with a subdomain', 'Send mail to bolinfest@groups.google.com.',
'Send mail to <a href="mailto:bolinfest@groups.google.com">' +
'bolinfest@groups.google.com<\/a>.');
}
function testEmailWithHyphen() {
assertLinkify(
'Email with a hyphen in the domain name',
'Send mail to bolinfest@google-groups.com.',
'Send mail to <a href="mailto:bolinfest@google-groups.com">' +
'bolinfest@google-groups.com<\/a>.');
}
function testEmailUsernameWithSpecialChars() {
assertLinkify(
'Email with a hyphen, period, and + in the user name',
'Send mail to bolin-fest+for.um@google.com',
'Send mail to <a href="mailto:bolin-fest+for.um@google.com">' +
'bolin-fest+for.um@google.com<\/a>');
assertLinkify(
'Email with all special characters in the user name',
'Send mail to muad\'dib!#$%&\*/=?^_`{|}~@google.com', 'Send mail to ' +
'<a href="mailto:muad'dib!#$%&\*/=?^_`{|}~@google.com">' +
'muad'dib!#$%&\*/=?^_`{|}~@google.com<\/a>');
}
function testEmailWithUnderscoreInvalid() {
assertLinkify(
'Email with an underscore in the domain name, which is invalid',
'Do not email bolinfest@google_groups.com.',
'Do not email bolinfest@google_groups.com.');
}
function testUrlNotHttp() {
assertLinkify(
'Url using unusual scheme',
'Looking for some goodies: ftp://ftp.google.com/goodstuff/',
'Looking for some goodies: ' +
'<a href="ftp://ftp.google.com/goodstuff/">' +
'ftp://ftp.google.com/goodstuff/<\/a>');
}
function testJsInjection() {
assertLinkify(
'Text includes some javascript',
'Welcome in hell <script>alert(\'this is hell\')<\/script>',
goog.string.htmlEscape(
'Welcome in hell <script>alert(\'this is hell\')<\/script>'));
}
function testJsInjectionDotIsBlind() {
assertLinkify(
'Javascript injection using regex . blindness to newline chars',
'<script>malicious_code()<\/script>\nVery nice url: www.google.com',
'<script>malicious_code()</script>\nVery nice url: ' +
'<a href="http://www.google.com">www.google.com<\/a>');
}
function testJsInjectionWithUnicodeLineReturn() {
assertLinkify(
'Javascript injection using regex . blindness to newline chars with a ' +
'unicode newline character.',
'<script>malicious_code()<\/script>\u2029Vanilla text',
'<script>malicious_code()</script>\u2029Vanilla text');
}
function testJsInjectionWithIgnorableNonTagChar() {
assertLinkify(
'Angle brackets are normalized even when followed by an ignorable ' +
'non-tag character.',
'<\u0000img onerror=alert(1337) src=\n>',
'<�img onerror=alert(1337) src=\n>');
}
function testJsInjectionWithTextarea() {
assertLinkify(
'Putting the result in a textarea can\'t cause other textarea text to ' +
'be treated as tag content.',
'</textarea', '</textarea');
}
function testJsInjectionWithNewlineConversion() {
assertLinkify(
'Any newline conversion and whitespace normalization won\'t cause tag ' +
'parts to be recombined.',
'<<br>script<br>>alert(1337)<<br>/<br>script<br>>',
'<<br>script<br>>alert(1337)<<br>/<' +
'br>script<br>>');
}
function testNoProtocolBlacklisting() {
assertLinkify(
'No protocol blacklisting.',
'Click: jscript:alert%281337%29\nClick: JSscript:alert%281337%29\n' +
'Click: VBscript:alert%281337%29\nClick: Script:alert%281337%29\n' +
'Click: flavascript:alert%281337%29',
'Click: jscript:alert%281337%29\nClick: JSscript:alert%281337%29\n' +
'Click: VBscript:alert%281337%29\nClick: Script:alert%281337%29\n' +
'Click: flavascript:alert%281337%29');
}
function testProtocolWhitelistingEffective() {
assertLinkify(
'Protocol whitelisting is effective.',
'Click httpscript:alert%281337%29\nClick mailtoscript:alert%281337%29\n' +
'Click j\u00A0avascript:alert%281337%29\n' +
'Click \u00A0javascript:alert%281337%29',
'Click httpscript:alert%281337%29\nClick mailtoscript:alert%281337%29\n' +
'Click j\u00A0avascript:alert%281337%29\n' +
'Click \u00A0javascript:alert%281337%29');
}
function testLinkifyNoOptions() {
goog.dom.safe.setInnerHtml(div,
goog.string.linkify.linkifyPlainTextAsHtml('http://www.google.com'));
goog.testing.dom.assertHtmlContentsMatch(
'<a href="http://www.google.com" target="_blank" rel="nofollow">' +
'http://www.google.com<\/a>',
div, true /* opt_strictAttributes */);
}
function testLinkifyOptionsNoAttributes() {
goog.dom.safe.setInnerHtml(div, goog.string.linkify.linkifyPlainTextAsHtml(
'The link for www.google.com is located somewhere in ' +
'https://www.google.fr/?hl=en, you should find it easily.',
{rel: '', target: ''}));
goog.testing.dom.assertHtmlContentsMatch(
'The link for <a href="http://www.google.com">www.google.com<\/a> is ' +
'located somewhere in ' +
'<a href="https://www.google.fr/?hl=en">https://www.google.fr/?hl=en' +
'<\/a>, you should find it easily.',
div, true /* opt_strictAttributes */);
}
function testLinkifyOptionsClassName() {
goog.dom.safe.setInnerHtml(div, goog.string.linkify.linkifyPlainTextAsHtml(
'Attribute with <class> name www.w3c.org.', {'class': 'link-added'}));
goog.testing.dom.assertHtmlContentsMatch(
'Attribute with <class> name <a href="http://www.w3c.org" ' +
'target="_blank" rel="nofollow" class="link-added">www.w3c.org<\/a>.',
div, true /* opt_strictAttributes */);
}
function testFindFirstUrlNoScheme() {
assertEquals(
'www.google.com', goog.string.linkify.findFirstUrl('www.google.com'));
}
function testFindFirstUrlNoSchemeUppercase() {
assertEquals(
'WWW.GOOGLE.COM', goog.string.linkify.findFirstUrl('WWW.GOOGLE.COM'));
}
function testFindFirstUrlNoSchemeMixedcase() {
assertEquals(
'WwW.GoOgLe.CoM', goog.string.linkify.findFirstUrl('WwW.GoOgLe.CoM'));
}
function testFindFirstUrlNoSchemeWithText() {
assertEquals(
'www.google.com',
goog.string.linkify.findFirstUrl('prefix www.google.com something'));
}
function testFindFirstUrlScheme() {
assertEquals(
'http://www.google.com',
goog.string.linkify.findFirstUrl('http://www.google.com'));
}
function testFindFirstUrlSchemeUppercase() {
assertEquals(
'HTTP://WWW.GOOGLE.COM',
goog.string.linkify.findFirstUrl('HTTP://WWW.GOOGLE.COM'));
}
function testFindFirstUrlSchemeMixedcase() {
assertEquals(
'HtTp://WwW.gOoGlE.cOm',
goog.string.linkify.findFirstUrl('HtTp://WwW.gOoGlE.cOm'));
}
function testFindFirstUrlSchemeWithText() {
assertEquals(
'http://www.google.com', goog.string.linkify.findFirstUrl(
'prefix http://www.google.com something'));
}
function testFindFirstUrlNoUrl() {
assertEquals(
'', goog.string.linkify.findFirstUrl(
'ygvtfr676 5v68fk uygbt85F^&%^&I%FVvc .'));
}
function testFindFirstEmailNoScheme() {
assertEquals(
'fake@google.com', goog.string.linkify.findFirstEmail('fake@google.com'));
}
function testFindFirstEmailNoSchemeUppercase() {
assertEquals(
'FAKE@GOOGLE.COM', goog.string.linkify.findFirstEmail('FAKE@GOOGLE.COM'));
}
function testFindFirstEmailNoSchemeMixedcase() {
assertEquals(
'fAkE@gOoGlE.cOm', goog.string.linkify.findFirstEmail('fAkE@gOoGlE.cOm'));
}
function testFindFirstEmailNoSchemeWithText() {
assertEquals(
'fake@google.com',
goog.string.linkify.findFirstEmail('prefix fake@google.com something'));
}
function testFindFirstEmailScheme() {
assertEquals(
'mailto:fake@google.com',
goog.string.linkify.findFirstEmail('mailto:fake@google.com'));
}
function testFindFirstEmailSchemeUppercase() {
assertEquals(
'MAILTO:FAKE@GOOGLE.COM',
goog.string.linkify.findFirstEmail('MAILTO:FAKE@GOOGLE.COM'));
}
function testFindFirstEmailSchemeMixedcase() {
assertEquals(
'MaIlTo:FaKe@GoOgLe.CoM',
goog.string.linkify.findFirstEmail('MaIlTo:FaKe@GoOgLe.CoM'));
}
function testFindFirstEmailSchemeWithText() {
assertEquals(
'mailto:fake@google.com', goog.string.linkify.findFirstEmail(
'prefix mailto:fake@google.com something'));
}
function testFindFirstEmailNoEmail() {
assertEquals(
'', goog.string.linkify.findFirstEmail(
'ygvtfr676 5v68fk uygbt85F^&%^&I%FVvc .'));
}
function testContainsPunctuation_parens() {
assertLinkify(
'Link contains parens, but does not end with them',
'www.google.com/abc(v1).html',
'<a href="http://www.google.com/abc(v1).html">' +
'www.google.com/abc(v1).html<\/a>');
}
function testEndsWithPunctuation() {
assertLinkify(
'Link ends with punctuation',
'Have you seen www.google.com? It\'s awesome.',
'Have you seen <a href="http://www.google.com">www.google.com<\/a>?' +
goog.string.htmlEscape(' It\'s awesome.'));
}
function testEndsWithPunctuation_closeParen() {
assertLinkify(
'Link inside parentheses', '(For more info see www.googl.com)',
'(For more info see <a href="http://www.googl.com">www.googl.com<\/a>)');
assertLinkify(
'Parentheses inside link',
'http://en.wikipedia.org/wiki/Titanic_(1997_film)',
'<a href="http://en.wikipedia.org/wiki/Titanic_(1997_film)">' +
'http://en.wikipedia.org/wiki/Titanic_(1997_film)<\/a>');
}
function testEndsWithPunctuation_openParen() {
assertLinkify(
'Link followed by open parenthesis', 'www.google.com(',
'<a href="http://www.google.com(">www.google.com(<\/a>');
}
function testEndsWithPunctuation_angles() {
assertLinkify(
'Link inside angled brackets',
'Here is a bibliography entry <http://www.google.com/>',
'Here is a bibliography entry <<a href="http://www.google.com/">' +
'http://www.google.com/<\/a>>');
}
function testEndsWithPunctuation_curlies() {
assertLinkify(
'Link inside curly brackets', '{http://www.google.com/}',
'{<a href="http://www.google.com/">' +
'http://www.google.com/<\/a>}');
}
function testEndsWithPunctuation_closingPairThenSingle() {
assertLinkify(
'Link followed by closing punctuation pair then singular punctuation',
'Here is a bibliography entry <http://www.google.com/>, PTAL.',
'Here is a bibliography entry <<a href="http://www.google.com/">' +
'http://www.google.com/<\/a>>, PTAL.');
}
function testEndsWithPunctuation_ellipses() {
assertLinkify(
'Link followed by three dots', 'just look it up on www.google.com...',
'just look it up on <a href="http://www.google.com">www.google.com' +
'<\/a>...');
}
function testBracketsInUrl() {
assertLinkify(
'Link containing brackets',
'before http://google.com/details?answer[0]=42 after',
'before <a href="http://google.com/details?answer[0]=42">' +
'http://google.com/details?answer[0]=42<\/a> after');
}
function testUrlWithExclamation() {
assertLinkify(
'URL with exclamation points', 'This is awesome www.google.com!',
'This is awesome <a href="http://www.google.com">www.google.com<\/a>!');
}
function testSpecialCharactersInUrl() {
assertLinkify(
'Link with characters that are neither reserved nor unreserved as per' +
'RFC 3986 but that are recognized by other Google properties.',
'https://www.google.com/?q=\`{|}recognized',
'<a href="https://www.google.com/?q=\`{|}recognized">' +
'https://www.google.com/?q=\`{|}recognized<\/a>');
}
function testUsuallyUnrecognizedCharactersAreNotInUrl() {
assertLinkify(
'Link with characters that are neither reserved nor unreserved as per' +
'RFC 3986 and which are not recognized by other Google properties.',
'https://www.google.com/?q=<^>"',
'<a href="https://www.google.com/?q=">' +
'https://www.google.com/?q=<\/a><^>"');
}
function testIpv6Url() {
assertLinkify(
'IPv6 URL', 'http://[::FFFF:129.144.52.38]:80/index.html',
'<a href="http://[::FFFF:129.144.52.38]:80/index.html">' +
'http://[::FFFF:129.144.52.38]:80/index.html<\/a>');
}
function testPreserveNewlines() {
assertLinkify(
'Preserving newlines', 'Example:\nhttp://www.google.com/',
'Example:<br>' +
'<a href="http://www.google.com/">http://www.google.com/<\/a>',
/* preserveNewlines */ true);
assertLinkify(
'Preserving newlines with no links', 'Line 1\nLine 2', 'Line 1<br>Line 2',
/* preserveNewlines */ true);
}
|