Возможно, у меня просто проблемы с определением обратного вызова, но я не могу найти способ проверить сохранение и загрузку в node.js.
Мой тест такой:
vows.describe('Saving').addBatch({
'Single item can be saved':{
topic:function () {
myStore.saveItems(1, [{id:3,name:'squat'}]);
myStore.getItems(1, this.callback);
},
'saved item is returned by getItems':function (err, items) {
assert.equal(items.length, 1);
assert.equal(items[0].deviceId, 1);
assert.equal(items[0].id, 3);
}
}
}).export(module);
При этом тестируется:
exports.saveItems = function (deviceId, items) {
var itemsCollection = db.collection('items');
itemsCollection.find({deviceId:deviceId}).toArray(function (err, existingItems) {
_.each(items, function (item) {
item['deviceId'] = deviceId;
var existingItem = _.find(existingItems, function (existingItem) {
return existingItem.id === item.id
});
if (typeof(existingItem) === 'undefined') {
itemsCollection.save(item);//callback here?
} else {
}
});
});
};
exports.getItems = function (deviceId, callback) {
var itemsCollection = db.collection('items');
itemsCollection.find({deviceId:deviceId}).toArray(callback);
};
Есть ли способ передать обратный вызов на saveItems
таким образом, чтобы getItems
не вызывался до все Монго сохраняет?