我使用以下格式来创建插件。
$(function () {
function PluginName() {
/* some more code here */
}
$.extend(PluginName.prototype, {
_attachPlugin: function (target, options, value) {
target = $(target);
if (target.hasClass(this.shortenerClass)) {
return;
}
var instance = {
options: $.extend({}, this._defaults)
};
if (typeof instance.options.requiredOption === 'undefined') {
throw 'You need required option!';
}
},
});
var getters = [/* some getters */];
function isNotChained(method, otherArgs) {
if (method === 'option' && (otherArgs.length === 0 ||
(otherArgs.length === 1 && typeof otherArgs[0] === 'string'))) {
return true;
}
return $.inArray(method, getters) > -1;
}
$.fn.pluginname = function (options) {
var args = Array.prototype.slice.call(arguments, 1);
if (isNotChained(options, args)) {
return plugin['_' + options + 'Plugin'].apply(plugin, [this[0]].concat(args));
}
return this.each(function () {
if (typeof options === 'string') {
if (!plugin['_' + options + 'Plugin']) {
throw 'Unknown method: ' + options;
}
plugin['_' + options + 'Plugin'].apply(plugin, [this].concat(args));
} else {
plugin._attachPlugin(this, options || {});
}
});
};
var plugin = $.pluginname = new PluginName();
})(jQuery);
当我传入我的选项对象时,我想确保某个选项存在。如果不是,则从 _attachPlugin 方法抛出错误。错误被抛出,但是我无法让 QUnit 断言错误被抛出。目前我的测试如下所示:
test('Init error', function () {
throws($('#selector').pluginname(), 'Throws error when missing required option.')
});
我想我可以通过这样编写测试来测试错误:
test('Init error', function () {
throws($.urlshortener._attachPlugin($('#selector')[0]), 'Throws an error');
});
无论我用哪种方式编写它,这两个测试都因 _attachPlugin 抛出的错误而死,这是 QUnit 没有捕捉到的。