2020-01-17 01:56:53 +08:00
|
|
|
import DiscourseURL, { userPath } from "discourse/lib/url";
|
2015-08-11 05:11:27 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.module("lib:url");
|
2014-01-06 18:46:19 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("isInternal with a HTTP url", assert => {
|
2015-08-11 05:11:27 +08:00
|
|
|
sandbox.stub(DiscourseURL, "origin").returns("http://eviltrout.com");
|
2014-01-15 04:20:46 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
assert.not(DiscourseURL.isInternal(null), "a blank URL is not internal");
|
|
|
|
assert.ok(DiscourseURL.isInternal("/test"), "relative URLs are internal");
|
|
|
|
assert.ok(
|
|
|
|
DiscourseURL.isInternal("//eviltrout.com"),
|
|
|
|
"a url on the same host is internal (protocol-less)"
|
|
|
|
);
|
|
|
|
assert.ok(
|
|
|
|
DiscourseURL.isInternal("http://eviltrout.com/tophat"),
|
|
|
|
"a url on the same host is internal"
|
|
|
|
);
|
|
|
|
assert.ok(
|
|
|
|
DiscourseURL.isInternal("https://eviltrout.com/moustache"),
|
|
|
|
"a url on a HTTPS of the same host is internal"
|
|
|
|
);
|
|
|
|
assert.not(
|
|
|
|
DiscourseURL.isInternal("//twitter.com.com"),
|
|
|
|
"a different host is not internal (protocol-less)"
|
|
|
|
);
|
|
|
|
assert.not(
|
|
|
|
DiscourseURL.isInternal("http://twitter.com"),
|
|
|
|
"a different host is not internal"
|
|
|
|
);
|
2014-01-15 04:20:46 +08:00
|
|
|
});
|
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("isInternal with a HTTPS url", assert => {
|
2015-08-11 05:11:27 +08:00
|
|
|
sandbox.stub(DiscourseURL, "origin").returns("https://eviltrout.com");
|
2017-06-15 01:57:58 +08:00
|
|
|
assert.ok(
|
|
|
|
DiscourseURL.isInternal("http://eviltrout.com/monocle"),
|
|
|
|
"HTTPS urls match HTTP urls"
|
|
|
|
);
|
2014-01-15 04:20:46 +08:00
|
|
|
});
|
2015-09-15 05:39:54 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("isInternal on subfolder install", assert => {
|
2015-09-15 05:39:54 +08:00
|
|
|
sandbox.stub(DiscourseURL, "origin").returns("http://eviltrout.com/forum");
|
2017-06-15 01:57:58 +08:00
|
|
|
assert.not(
|
|
|
|
DiscourseURL.isInternal("http://eviltrout.com"),
|
|
|
|
"the host root is not internal"
|
|
|
|
);
|
|
|
|
assert.not(
|
|
|
|
DiscourseURL.isInternal("http://eviltrout.com/tophat"),
|
|
|
|
"a url on the same host but on a different folder is not internal"
|
|
|
|
);
|
|
|
|
assert.ok(
|
|
|
|
DiscourseURL.isInternal("http://eviltrout.com/forum/moustache"),
|
|
|
|
"a url on the same host and on the same folder is internal"
|
|
|
|
);
|
2015-09-15 05:39:54 +08:00
|
|
|
});
|
2017-03-29 00:16:58 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("userPath", assert => {
|
2017-03-29 00:16:58 +08:00
|
|
|
assert.equal(userPath(), "/u");
|
|
|
|
assert.equal(userPath("eviltrout"), "/u/eviltrout");
|
|
|
|
assert.equal(userPath("hp.json"), "/u/hp.json");
|
|
|
|
});
|
2017-03-30 00:24:46 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.test("userPath with BaseUri", assert => {
|
2017-03-30 00:24:46 +08:00
|
|
|
Discourse.BaseUri = "/forum";
|
|
|
|
assert.equal(userPath(), "/forum/u");
|
|
|
|
assert.equal(userPath("eviltrout"), "/forum/u/eviltrout");
|
|
|
|
assert.equal(userPath("hp.json"), "/forum/u/hp.json");
|
2017-12-19 15:59:41 +08:00
|
|
|
});
|