2011-09-28 09:16:26 -04:00
|
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2011-07-05 14:09:26 -04:00
|
|
|
|
|
|
|
|
|
// Test cases for MessageTray URLification
|
|
|
|
|
|
|
|
|
|
const JsUnit = imports.jsUnit;
|
|
|
|
|
|
2023-07-10 02:05:14 -04:00
|
|
|
|
import '../../js/ui/environment.js';
|
2011-07-05 14:09:26 -04:00
|
|
|
|
|
|
|
|
|
const Util = imports.misc.util;
|
|
|
|
|
|
|
|
|
|
const tests = [
|
2023-07-10 01:59:46 -04:00
|
|
|
|
{
|
|
|
|
|
input: 'This is a test',
|
|
|
|
|
output: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is http://www.gnome.org a test',
|
|
|
|
|
output: [{url: 'http://www.gnome.org', pos: 8}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is http://www.gnome.org',
|
|
|
|
|
output: [{url: 'http://www.gnome.org', pos: 8}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'http://www.gnome.org a test',
|
|
|
|
|
output: [{url: 'http://www.gnome.org', pos: 0}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'http://www.gnome.org',
|
|
|
|
|
output: [{url: 'http://www.gnome.org', pos: 0}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'Go to http://www.gnome.org.',
|
|
|
|
|
output: [{url: 'http://www.gnome.org', pos: 6}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'Go to http://www.gnome.org/.',
|
|
|
|
|
output: [{url: 'http://www.gnome.org/', pos: 6}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: '(Go to http://www.gnome.org!)',
|
|
|
|
|
output: [{url: 'http://www.gnome.org', pos: 7}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'Use GNOME (http://www.gnome.org).',
|
|
|
|
|
output: [{url: 'http://www.gnome.org', pos: 11}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is a http://www.gnome.org/path test.',
|
|
|
|
|
output: [{url: 'http://www.gnome.org/path', pos: 10}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is a www.gnome.org scheme-less test.',
|
|
|
|
|
output: [{url: 'www.gnome.org', pos: 10}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is a www.gnome.org/scheme-less test.',
|
|
|
|
|
output: [{url: 'www.gnome.org/scheme-less', pos: 10}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is a http://www.gnome.org:99/port test.',
|
|
|
|
|
output: [{url: 'http://www.gnome.org:99/port', pos: 10}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is an ftp://www.gnome.org/ test.',
|
|
|
|
|
output: [{url: 'ftp://www.gnome.org/', pos: 11}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'https://www.gnome.org/(some_url,_with_very_unusual_characters)',
|
|
|
|
|
output: [{url: 'https://www.gnome.org/(some_url,_with_very_unusual_characters)', pos: 0}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'https://www.gnome.org/(some_url_with_unbalanced_parenthesis',
|
|
|
|
|
output: [{url: 'https://www.gnome.org/', pos: 0}],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'https://www.gnome.org/ plus trailing junk',
|
|
|
|
|
output: [{url: 'https://www.gnome.org/', pos: 0}],
|
|
|
|
|
},
|
2011-07-05 14:09:26 -04:00
|
|
|
|
|
2023-07-10 01:59:46 -04:00
|
|
|
|
{
|
|
|
|
|
input: 'Visit http://www.gnome.org/ and http://developer.gnome.org',
|
|
|
|
|
output: [{url: 'http://www.gnome.org/', pos: 6},
|
|
|
|
|
{url: 'http://developer.gnome.org', pos: 32}],
|
|
|
|
|
},
|
2011-07-05 14:09:26 -04:00
|
|
|
|
|
2023-07-10 01:59:46 -04:00
|
|
|
|
{
|
|
|
|
|
input: 'This is not.a.domain test.',
|
|
|
|
|
output: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is not:a.url test.',
|
|
|
|
|
output: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is not:/a.url/ test.',
|
|
|
|
|
output: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is not:/a.url/ test.',
|
|
|
|
|
output: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is not@a.url/ test.',
|
|
|
|
|
output: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
input: 'This is surely@not.a/url test.',
|
|
|
|
|
output: [],
|
|
|
|
|
},
|
2011-07-05 14:09:26 -04:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < tests.length; i++) {
|
|
|
|
|
let match = Util.findUrls(tests[i].input);
|
|
|
|
|
|
2023-07-10 01:59:46 -04:00
|
|
|
|
JsUnit.assertEquals(`Test ${i} match length`,
|
|
|
|
|
match.length, tests[i].output.length);
|
2011-07-05 14:09:26 -04:00
|
|
|
|
for (let j = 0; j < match.length; j++) {
|
2023-07-10 01:59:46 -04:00
|
|
|
|
JsUnit.assertEquals(`Test ${i}, match ${j} url`, match[j].url, tests[i].output[j].url);
|
|
|
|
|
JsUnit.assertEquals(`Test ${i}, match ${j} position`, match[j].pos, tests[i].output[j].pos);
|
2011-07-05 14:09:26 -04:00
|
|
|
|
}
|
2018-02-27 07:20:02 -05:00
|
|
|
|
}
|