mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
4981525047
- Upgrades Ember to latest - Fixes a bunch of bugs with page titles and missing "active" states
33 lines
1.4 KiB
JavaScript
33 lines
1.4 KiB
JavaScript
module("Discourse.URL");
|
|
|
|
test("isInternal with a HTTP url", function() {
|
|
this.stub(Discourse.URL, "origin").returns("http://eviltrout.com");
|
|
|
|
ok(!Discourse.URL.isInternal(null), "a blank URL is not internal");
|
|
ok(Discourse.URL.isInternal("/test"), "relative URLs are internal");
|
|
ok(Discourse.URL.isInternal("http://eviltrout.com/tophat"), "a url on the same host is internal");
|
|
ok(Discourse.URL.isInternal("https://eviltrout.com/moustache"), "a url on a HTTPS of the same host is internal");
|
|
ok(!Discourse.URL.isInternal("http://twitter.com"), "a different host is not internal");
|
|
});
|
|
|
|
test("isInternal with a HTTPS url", function() {
|
|
this.stub(Discourse.URL, "origin").returns("https://eviltrout.com");
|
|
ok(Discourse.URL.isInternal("http://eviltrout.com/monocle"), "HTTPS urls match HTTP urls");
|
|
});
|
|
|
|
test("navigatedToHome", function() {
|
|
var fakeListController = { send: function() { return true; } };
|
|
var mock = sinon.mock(fakeListController);
|
|
this.stub(Discourse.URL, "controllerFor").returns(fakeListController);
|
|
|
|
mock.expects("send").withArgs('refresh').twice();
|
|
ok(Discourse.URL.navigatedToHome("/", "/"));
|
|
|
|
var defaultFilter = "/" + Discourse.Site.currentProp('filters')[0];
|
|
ok(Discourse.URL.navigatedToHome(defaultFilter, "/"));
|
|
|
|
ok(!Discourse.URL.navigatedToHome("/old", "/new"));
|
|
|
|
// make sure we called the .refresh() method
|
|
mock.verify();
|
|
});
|