prevent upsert overwriting default values with applyDefaultValues option

Creates a new applyDefaultValues option on the Model constructor
defaulting to true, the current behaviour.

Updates the dao module to pass `{ applyDefaultValues: false }` to the
Model constructor during the updateOrCreate method when we assume an
update is happening.
This commit is contained in:
Bryan Clark 2015-06-18 15:19:45 -07:00
parent 1066313f3f
commit 342bc2f782
3 changed files with 30 additions and 5 deletions

View File

@ -446,7 +446,7 @@ DataAccessObject.updateOrCreate = DataAccessObject.upsert = function upsert(data
var update = data; var update = data;
var inst = data; var inst = data;
if (!(data instanceof Model)) { if (!(data instanceof Model)) {
inst = new Model(data); inst = new Model(data, { applyDefaultValues: false });
} }
update = inst.toObject(false); update = inst.toObject(false);

View File

@ -43,6 +43,9 @@ function ModelBaseClass(data, options) {
// Default to true // Default to true
options.applySetters = true; options.applySetters = true;
} }
if (!('applyDefaultValues' in options)) {
options.applyDefaultValues = true;
}
this._initProperties(data, options); this._initProperties(data, options);
} }
@ -51,6 +54,7 @@ function ModelBaseClass(data, options) {
* @param {Object} data The data object * @param {Object} data The data object
* @param {Object} options An object to control the instantiation * @param {Object} options An object to control the instantiation
* @property {Boolean} applySetters Controls if the setters will be applied * @property {Boolean} applySetters Controls if the setters will be applied
* @property {Boolean} applyDefaultValues Default attributes and values will be applied
* @property {Boolean} strict Set the instance level strict mode * @property {Boolean} strict Set the instance level strict mode
* @property {Boolean} persisted Whether the instance has been persisted * @property {Boolean} persisted Whether the instance has been persisted
* @private * @private
@ -72,6 +76,7 @@ ModelBaseClass.prototype._initProperties = function (data, options) {
options = options || {}; options = options || {};
var applySetters = options.applySetters; var applySetters = options.applySetters;
var applyDefaultValues = options.applyDefaultValues;
var strict = options.strict; var strict = options.strict;
if(strict === undefined) { if(strict === undefined) {
@ -243,7 +248,7 @@ ModelBaseClass.prototype._initProperties = function (data, options) {
var type = properties[p].type; var type = properties[p].type;
// Set default values // Set default values
if (propVal === undefined) { if (applyDefaultValues && propVal === undefined) {
var def = properties[p]['default']; var def = properties[p]['default'];
if (def !== undefined) { if (def !== undefined) {
if (typeof def === 'function') { if (typeof def === 'function') {
@ -265,7 +270,7 @@ ModelBaseClass.prototype._initProperties = function (data, options) {
} }
// Set default value using a named function // Set default value using a named function
if (propVal === undefined) { if (applyDefaultValues && propVal === undefined) {
var defn = properties[p].defaultFn; var defn = properties[p].defaultFn;
switch (defn) { switch (defn) {
case undefined: case undefined:

View File

@ -9,7 +9,8 @@ describe('defaults', function () {
before(function () { before(function () {
Server = db.define('Server', { Server = db.define('Server', {
host: String, host: String,
port: {type: Number, default: 80} port: {type: Number, default: 80},
createdAt: {type: Date, default: '$now'}
}); });
}); });
@ -49,4 +50,23 @@ describe('defaults', function () {
}); });
}); });
it('should apply defaults in upsert create', function (done) {
Server.upsert({port: 8181 }, function(err, server) {
should.not.exist(err);
should.exist(server.createdAt);
done();
});
});
it('should preserve defaults in upsert update', function (done) {
Server.findOne({}, function(err, server) {
Server.upsert({id:server.id, port: 1337 }, function(err, s) {
should.not.exist(err);
(Number(1337)).should.equal(s.port);
server.createdAt.should.eql(s.createdAt);
done();
});
});
});
}); });