2015-08-10 17:11:27 -04:00
|
|
|
import DiscourseURL from 'discourse/lib/url';
|
|
|
|
|
|
|
|
module("lib:url");
|
2014-01-06 05:46:19 -05:00
|
|
|
|
2014-01-14 15:20:46 -05:00
|
|
|
test("isInternal with a HTTP url", function() {
|
2015-08-10 17:11:27 -04:00
|
|
|
sandbox.stub(DiscourseURL, "origin").returns("http://eviltrout.com");
|
2014-01-14 15:20:46 -05:00
|
|
|
|
2015-08-10 17:11:27 -04:00
|
|
|
not(DiscourseURL.isInternal(null), "a blank URL is not internal");
|
|
|
|
ok(DiscourseURL.isInternal("/test"), "relative URLs are internal");
|
2016-04-11 16:21:39 -04:00
|
|
|
ok(DiscourseURL.isInternal("//eviltrout.com"), "a url on the same host is internal (protocol-less)");
|
2015-08-10 17:11:27 -04:00
|
|
|
ok(DiscourseURL.isInternal("http://eviltrout.com/tophat"), "a url on the same host is internal");
|
|
|
|
ok(DiscourseURL.isInternal("https://eviltrout.com/moustache"), "a url on a HTTPS of the same host is internal");
|
2016-04-11 16:21:39 -04:00
|
|
|
not(DiscourseURL.isInternal("//twitter.com.com"), "a different host is not internal (protocol-less)");
|
2015-08-10 17:11:27 -04:00
|
|
|
not(DiscourseURL.isInternal("http://twitter.com"), "a different host is not internal");
|
2014-01-14 15:20:46 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
test("isInternal with a HTTPS url", function() {
|
2015-08-10 17:11:27 -04:00
|
|
|
sandbox.stub(DiscourseURL, "origin").returns("https://eviltrout.com");
|
|
|
|
ok(DiscourseURL.isInternal("http://eviltrout.com/monocle"), "HTTPS urls match HTTP urls");
|
2014-01-14 15:20:46 -05:00
|
|
|
});
|
2015-09-14 17:39:54 -04:00
|
|
|
|
|
|
|
test("isInternal on subfolder install", function() {
|
|
|
|
sandbox.stub(DiscourseURL, "origin").returns("http://eviltrout.com/forum");
|
|
|
|
not(DiscourseURL.isInternal("http://eviltrout.com"), "the host root is not internal");
|
|
|
|
not(DiscourseURL.isInternal("http://eviltrout.com/tophat"), "a url on the same host but on a different folder is not internal");
|
|
|
|
ok(DiscourseURL.isInternal("http://eviltrout.com/forum/moustache"), "a url on the same host and on the same folder is internal");
|
|
|
|
});
|