我正在学习Backbone,并希望" mock"模型中this
调用的结果。我不想使用测试库或实际访问外部服务。
基本上我的模型中有一个设置,如果是.fetch()
,那么只需使用一个内部JSON对象作为"结果"的获取。另外,实际上是用真正的AJAX请求命中了API。
但是,这似乎不起作用。当我点击实际的API("真实" fetch)时,我的视图成功渲染了模型数据,但每当我尝试传入虚假数据时都不会。
有没有办法假装Backbone中的Fetch响应,而不引入像Sinon这样的测试库?
这是完整的模型(至少是它的相关部分)。基本上,模型获取数据,并为模板格式化。然后拥有该模型的视图将其呈现出来。
this.options.mock === true
视图中的相关位(ContentView):
'use strict';
(function (app, $, Backbone) {
app.Models.contentModel = Backbone.Model.extend({
/**
* Initializes model. Fetches data from API.
* @param {Object} options Configuration settings.
*/
initialize: function (options) {
var that = this;
that.set({
'template': options.template,
'mock': options.mock || false
});
$.when(this.retrieveData()).then(function (data) {
that.formatDataForTemplate(data);
}, function () {
console.error('failed!');
});
},
retrieveData: function () {
var that = this, deferred = $.Deferred();
if (typeof fbs_settings !== 'undefined' && fbs_settings.preview === 'true') {
deferred.resolve(fbs_settings.data);
}
else if (that.get('mock')) {
console.info('in mock block');
var mock = {
'title': 'Test Title',
'description': 'test description',
'position': 1,
'byline': 'Author'
};
deferred.resolve(mock);
}
else {
// hit API like normal.
console.info('in ajax block');
that.fetch({
success: function (collection, response) {
deferred.resolve(response.promotedContent.contentPositions[0]);
},
error: function(collection, response) {
console.error('error: fetch failed for contentModel.');
deferred.resolve();
}
});
}
return deferred.promise();
},
/**
* Formats data on a per-template basis.
* @return {[type]} [description]
*/
formatDataForTemplate: function (data) {
if (this.get('template') === 'welcomead_default') {
this.set({
'title': data.title,
'description': data.description,
'byline': data.author
});
}
// trigger the data formatted event for the view to render.
this.trigger('dataFormatted');
}
});
})(window.app, window.jQuery, window.Backbone);
数据设置得如此之快以至于听众还没有设置好吗?
答案 0 :(得分:2)
您可以像这样覆盖获取功能。
var MockedModel = Backbone.Model.extend({
initialize: function(attr, options) {
if (options.mock) {
this.fetch = this.fakeFetch;
}
},
url: 'http://someUrlThatWIllNeverBeCalled.com',
fakeFetch: function(options) {
var self = this
this.set({
'title': 'Test Title',
'description': 'test description',
'position': 1,
'byline': 'Author'
});
if (typeof options.success === 'function') {
options.success(self, {}, {})
}
}
});
var mockedModel = new MockedModel(null, {
mock: true
})
mockedModel.fetch({
success: function(model, xhr) {
alert(model.get('title'));
}
});
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
答案 1 :(得分:1)
问题不在于retrieveData
的实际实现,而在于它的调用方式。当您在返回之前解决延迟时,您基本上是立即进行。这会导致在您的模型仍在初始化时调用formatDataForTemplate
。
所以当你这样做时
this.model = new app.Models.contentModel({template: this.templateName});
this.listenTo(this.model, 'dataFormatted', this.render);
dataFormatted
事件最终在侦听器注册之前被触发。
一种解决方案是使用仅适用于
的超时setTimeout(function() {
deferred.resolve(mock);
});
因为这会延迟解析,直到听众到位时,直到下一轮的事件循环。
另一个不涉及setTimeout
的解决方案是在模型初始化期间不调用retrieveData
,而是让视图在附加其侦听器后执行。
this.model = new app.Models.contentModel({template: this.templateName});
this.listenTo(this.model, 'dataFormatted', this.render);
this.model.retrieveData();
我更喜欢后者,但如果这只是嘲笑数据离线工作,那么在我看来并不重要。
与此无关,值得注意的是,模型初始化的实际signature为new Model([attributes], [options])
,因此您的初始化应该看起来像这样
initialize: function (attributes, options) {
var that = this;
that.set({
'template': options.template,
'mock': options.mock || false
});
只是为了便于阅读。这又意味着,由于您只传递一个对象,因此根本不需要调用set
。