Merge pull request #1620 from thelounge/xpaw/invalid-uri-test

Add tests for invalid urls
This commit is contained in:
Jérémie Astori 2017-10-06 22:21:26 -04:00 committed by GitHub
commit c2681a9f6e
1 changed files with 45 additions and 0 deletions

View File

@ -103,4 +103,49 @@ describe("findLinks", () => {
expect(actual).to.deep.equal(expected); expect(actual).to.deep.equal(expected);
}); });
it("does not find invalid urls", () => {
const input = "www.example.com ssh://-oProxyCommand=whois"; // Issue #1412
const expected = [{
start: 0,
end: 15,
link: "http://www.example.com"
}, {
end: 42,
start: 16,
link: "ssh://-oProxyCommand=whois"
}];
const actual = findLinks(input);
expect(actual).to.deep.equal(expected);
const input2 = "www.example.com http://root:'some%pass'@hostname/database"; // Issue #1618
const expected2 = [{
start: 0,
end: 15,
link: "http://www.example.com"
}];
const actual2 = findLinks(input2);
expect(actual2).to.deep.equal(expected2);
});
it("keeps parsing after finding an invalid url", () => {
const input = "www.example.com http://a:%p@c http://thelounge.chat";
const expected = [{
start: 0,
end: 15,
link: "http://www.example.com"
}, {
start: 30,
end: 51,
link: "http://thelounge.chat"
}];
const actual = findLinks(input);
expect(actual).to.deep.equal(expected);
});
}); });