mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 04:01:29 -05:00
Add tests to isInternal on subfolder installs
This commit is contained in:
parent
4e39f9662d
commit
230bc8bb6e
1 changed files with 7 additions and 0 deletions
|
@ -16,3 +16,10 @@ test("isInternal with a HTTPS url", function() {
|
|||
sandbox.stub(DiscourseURL, "origin").returns("https://eviltrout.com");
|
||||
ok(DiscourseURL.isInternal("http://eviltrout.com/monocle"), "HTTPS urls match HTTP urls");
|
||||
});
|
||||
|
||||
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");
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue