discourse/test/javascripts/components/logo_component_test.js

143 lines
4.1 KiB
JavaScript
Raw Normal View History

2013-10-30 16:56:48 -04:00
var view, oldMobileView;
var View = Ember.View.extend({
template: Ember.Handlebars.compile("{{discourse-logo minimized=view.minimized}}")
});
var setSmallLogoUrl = function(url) {
Discourse.SiteSettings.logo_small_url = url;
};
var setBigLogoUrl = function(url) {
Discourse.SiteSettings.logo_url = url;
};
var setTitle = function(title) {
Discourse.SiteSettings.title = title;
};
var setMobileView = function(value) {
Discourse.Mobile.mobileView = value;
};
var setMinimized = function(value) {
Ember.run(function() {
view.set("minimized", value);
});
};
var smallLogoUrl = "/assets/logo-single.png";
var bigLogoUrl = "/assets/logo.png";
2013-10-30 16:56:48 -04:00
var smallLogoSelector = "img.logo-small";
var bigLogoSelector = "img#site-logo.logo-big";
var homeIconSelector = "i.icon-home";
var headerSelector = "h2#site-text-logo.text-logo";
var appendView = function() {
Ember.run(function() {
view.appendTo(fixture());
2013-10-30 16:56:48 -04:00
});
};
module("Discourse.DiscourseLogoComponent", {
setup: function() {
oldMobileView = Discourse.Mobile.mobileView;
view = View.create();
},
teardown: function() {
Discourse.Mobile.mobileView = oldMobileView;
}
});
test("displays small logo when 'minimized' version is chosen and application is not in mobile mode", function() {
setMobileView(false);
setMinimized(true);
appendView();
ok(exists(fixture(smallLogoSelector)), "small logo image is present");
equal(fixture(smallLogoSelector).attr("src"), smallLogoUrl, "small logo image has correct source");
ok(!exists(fixture(homeIconSelector)), "default home icon is not present");
ok(!exists(fixture(bigLogoSelector)), "big logo image is not present");
2013-10-30 16:56:48 -04:00
});
test("displays default home icon when small logo image should be displayed but its url is not configured", function() {
setMobileView(false);
setMinimized(true);
setSmallLogoUrl("");
appendView();
ok(exists(fixture(homeIconSelector)), "default home icon is present");
ok(!exists(fixture(smallLogoSelector)), "small logo image is not present");
ok(!exists(fixture(bigLogoSelector)), "big logo image is not present");
2013-10-30 16:56:48 -04:00
});
test("displays big logo when 'minimized' version is not chosen", function() {
setMobileView(false);
setMinimized(false);
appendView();
ok(exists(fixture(bigLogoSelector)), "big logo image is present");
ok(!exists(fixture(smallLogoSelector)), "small logo image is not present");
2013-10-30 16:56:48 -04:00
});
test("displays big logo when application is in mobile mode", function() {
setMobileView(true);
setMinimized(true);
appendView();
ok(exists(fixture(bigLogoSelector)), "big logo image is present");
ok(!exists(fixture(smallLogoSelector)), "small logo image is not present");
2013-10-30 16:56:48 -04:00
});
test("displays big logo image with alt title when big logo url is configured", function() {
setMobileView(true);
setMinimized(false);
setTitle("site-title");
appendView();
ok(exists(fixture(bigLogoSelector)), "big logo image is present");
equal(fixture(bigLogoSelector).attr("src"), bigLogoUrl, "big logo image has correct source");
equal(fixture(bigLogoSelector).attr("alt"), "site-title", "big logo image has correct alt text");
ok(!exists(fixture(headerSelector)), "header with title is not present");
2013-10-30 16:56:48 -04:00
});
test("displays header with site title when big logo image should be displayed but its url is not configured", function() {
setMobileView(true);
setMinimized(false);
setTitle("site-title");
setBigLogoUrl("");
appendView();
ok(exists(fixture(headerSelector)), "header with title is present");
equal(fixture(headerSelector).text(), "site-title", "header with title has correct text");
ok(!exists(fixture(bigLogoSelector)), "big logo image is not present");
2013-10-30 16:56:48 -04:00
});
test("dynamically toggles logo size when 'minimized' property changes", function() {
setMobileView(false);
setMinimized(true);
appendView();
ok(exists(fixture(smallLogoSelector)), "initially small logo is shown");
2013-10-30 16:56:48 -04:00
setMinimized(false);
ok(exists(fixture(bigLogoSelector)), "when 'minimized' version is turned off, small logo is replaced with the big one");
2013-10-30 16:56:48 -04:00
});
test("links logo to the site root", function() {
appendView();
equal(fixture(".title > a").attr("href"), "/");
2013-10-30 16:56:48 -04:00
});