import DiscourseURL from 'discourse/lib/url'; var testMouseTrap; import KeyboardShortcuts from 'discourse/lib/keyboard-shortcuts'; module("lib:keyboard-shortcuts", { setup: function() { var _bindings = {}; testMouseTrap = { bind: function(bindings, callback) { var registerBinding = _.bind(function(binding) { _bindings[binding] = callback; }, this); if (_.isArray(bindings)) { _.each(bindings, registerBinding, this); } else { registerBinding(bindings); } }, trigger: function(binding) { _bindings[binding].call(); } }; sandbox.stub(DiscourseURL, "routeTo"); $("#qunit-fixture").html([ "
", "" + "
", "
", " ", "
", "", " ", "
", " ", "
", "", "
", "", "
", "
", "
", "
", "
" ].join("\n")); }, teardown: function() { $("#qunit-scratch").html(""); } }); var pathBindings = KeyboardShortcuts.PATH_BINDINGS; _.each(pathBindings, function(path, binding) { var testName = binding + " goes to " + path; test(testName, function() { KeyboardShortcuts.bindEvents(testMouseTrap); testMouseTrap.trigger(binding); ok(DiscourseURL.routeTo.calledWith(path)); }); }); var clickBindings = KeyboardShortcuts.CLICK_BINDINGS; _.each(clickBindings, function(selector, binding) { var bindings = binding.split(","); var testName = binding + " clicks on " + selector; test(testName, function() { KeyboardShortcuts.bindEvents(testMouseTrap); $(selector).on("click", function() { ok(true, selector + " was clicked"); }); _.each(bindings, function(b) { testMouseTrap.trigger(b); }, this); }); }); var functionBindings = KeyboardShortcuts.FUNCTION_BINDINGS; _.each(functionBindings, function(func, binding) { var testName = binding + " calls " + func; test(testName, function() { sandbox.stub(KeyboardShortcuts, func, function() { ok(true, func + " is called when " + binding + " is triggered"); }); KeyboardShortcuts.bindEvents(testMouseTrap); testMouseTrap.trigger(binding); }); }); test("selectDown calls _moveSelection with 1", function() { var spy = sandbox.spy(KeyboardShortcuts, '_moveSelection'); KeyboardShortcuts.selectDown(); ok(spy.calledWith(1), "_moveSelection is called with 1"); }); test("selectUp calls _moveSelection with -1", function() { var spy = sandbox.spy(KeyboardShortcuts, '_moveSelection'); KeyboardShortcuts.selectUp(); ok(spy.calledWith(-1), "_moveSelection is called with -1"); }); test("goBack calls history.back", function() { var called = false; sandbox.stub(history, 'back', function() { called = true; }); KeyboardShortcuts.goBack(); ok(called, "history.back is called"); }); test("nextSection calls _changeSection with 1", function() { var spy = sandbox.spy(KeyboardShortcuts, '_changeSection'); KeyboardShortcuts.nextSection(); ok(spy.calledWith(1), "_changeSection is called with 1"); }); test("prevSection calls _changeSection with -1", function() { var spy = sandbox.spy(KeyboardShortcuts, '_changeSection'); KeyboardShortcuts.prevSection(); ok(spy.calledWith(-1), "_changeSection is called with -1"); });