2014-08-06 11:26:47 +00:00
|
|
|
// This test written in mocha+should.js
|
|
|
|
var should = require('./init.js');
|
|
|
|
|
|
|
|
var jdb = require('../');
|
|
|
|
var ModelBuilder = jdb.ModelBuilder;
|
|
|
|
var DataSource = jdb.DataSource;
|
|
|
|
var Memory = require('../lib/connectors/memory');
|
|
|
|
|
2014-08-08 08:20:57 +00:00
|
|
|
var modelBuilder = new ModelBuilder();
|
|
|
|
var mixins = modelBuilder.mixins;
|
|
|
|
|
|
|
|
function timestamps(Model, options) {
|
|
|
|
|
|
|
|
Model.defineProperty('createdAt', { type: Date });
|
|
|
|
Model.defineProperty('updatedAt', { type: Date });
|
|
|
|
|
|
|
|
var originalBeforeSave = Model.beforeSave;
|
|
|
|
Model.beforeSave = function(next, data) {
|
|
|
|
Model.applyTimestamps(data, this.isNewRecord());
|
|
|
|
if (data.createdAt) {
|
|
|
|
this.createdAt = data.createdAt;
|
|
|
|
}
|
|
|
|
if (data.updatedAt) {
|
|
|
|
this.updatedAt = data.updatedAt;
|
|
|
|
}
|
|
|
|
if (originalBeforeSave) {
|
|
|
|
originalBeforeSave.apply(this, arguments);
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Model.applyTimestamps = function(data, creation) {
|
|
|
|
data.updatedAt = new Date();
|
|
|
|
if (creation) {
|
|
|
|
data.createdAt = data.updatedAt;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
mixins.define('TimeStamp', timestamps);
|
2014-08-06 11:26:47 +00:00
|
|
|
|
|
|
|
describe('Model class', function () {
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-09 08:58:03 +00:00
|
|
|
it('should define mixins', function() {
|
2014-08-06 11:26:47 +00:00
|
|
|
mixins.define('Example', function(Model, options) {
|
|
|
|
Model.prototype.example = function() {
|
|
|
|
return options;
|
|
|
|
};
|
|
|
|
});
|
2014-08-09 08:58:03 +00:00
|
|
|
mixins.define('Demo', function(Model, options) {
|
2014-08-17 10:29:04 +00:00
|
|
|
Model.demoMixin = options.value;
|
|
|
|
});
|
|
|
|
mixins.define('Multi', function(Model, options) {
|
|
|
|
Model.multiMixin = Model.multiMixin || {};
|
|
|
|
Model.multiMixin[options.key] = options.value;
|
2014-08-09 08:58:03 +00:00
|
|
|
});
|
2014-08-06 11:26:47 +00:00
|
|
|
});
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-06 11:26:47 +00:00
|
|
|
it('should apply a mixin class', function() {
|
|
|
|
var Address = modelBuilder.define('Address', {
|
|
|
|
street: { type: 'string', required: true },
|
|
|
|
city: { type: 'string', required: true }
|
|
|
|
});
|
2014-08-08 08:20:57 +00:00
|
|
|
|
|
|
|
var memory = new DataSource('mem', {connector: Memory}, modelBuilder);
|
|
|
|
var Item = memory.createModel('Item', { name: 'string' }, {
|
2014-08-09 08:58:03 +00:00
|
|
|
mixins: { Address: true }
|
2014-08-08 08:20:57 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
var properties = Item.definition.properties;
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-08 08:20:57 +00:00
|
|
|
properties.street.should.eql({ type: String, required: true });
|
|
|
|
properties.city.should.eql({ type: String, required: true });
|
2014-08-06 11:26:47 +00:00
|
|
|
});
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-06 11:26:47 +00:00
|
|
|
it('should apply mixins', function(done) {
|
2014-08-08 08:20:57 +00:00
|
|
|
var memory = new DataSource('mem', {connector: Memory}, modelBuilder);
|
2014-08-06 11:26:47 +00:00
|
|
|
var Item = memory.createModel('Item', { name: 'string' }, {
|
2015-03-11 08:02:00 +00:00
|
|
|
mixins: {
|
2014-08-17 10:29:04 +00:00
|
|
|
TimeStamp: true, Demo: { value: true },
|
|
|
|
Multi: [
|
2015-03-11 08:02:00 +00:00
|
|
|
{ key: 'foo', value: 'bar' },
|
2014-08-17 10:29:04 +00:00
|
|
|
{ key: 'fox', value: 'baz' }
|
|
|
|
]
|
|
|
|
}
|
2014-08-06 11:26:47 +00:00
|
|
|
});
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-06 11:26:47 +00:00
|
|
|
Item.mixin('Example', { foo: 'bar' });
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-09 08:58:03 +00:00
|
|
|
Item.demoMixin.should.be.true;
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-17 10:29:04 +00:00
|
|
|
Item.multiMixin.foo.should.equal('bar');
|
|
|
|
Item.multiMixin.fox.should.equal('baz');
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-08 08:20:57 +00:00
|
|
|
var properties = Item.definition.properties;
|
|
|
|
properties.createdAt.should.eql({ type: Date });
|
|
|
|
properties.updatedAt.should.eql({ type: Date });
|
2015-03-11 08:02:00 +00:00
|
|
|
|
2014-08-06 11:26:47 +00:00
|
|
|
Item.create({ name: 'Item 1' }, function(err, inst) {
|
|
|
|
inst.createdAt.should.be.a.date;
|
|
|
|
inst.updatedAt.should.be.a.date;
|
|
|
|
inst.example().should.eql({ foo: 'bar' });
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-03-11 08:02:00 +00:00
|
|
|
|
|
|
|
describe('#mixin()', function () {
|
|
|
|
|
|
|
|
var Person, Author, Address;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
Address = modelBuilder.define('Address', {
|
|
|
|
street: { type: 'string', required: true },
|
|
|
|
city: { type: 'string', required: true }
|
|
|
|
});
|
|
|
|
var memory = new DataSource('mem', {connector: Memory}, modelBuilder);
|
|
|
|
Person = memory.createModel('Person', { name: 'string' });
|
|
|
|
Author = memory.createModel('Author', { name: 'string' });
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should register mixin class into _mixins', function () {
|
|
|
|
Person.mixin(Address);
|
|
|
|
Person._mixins.should.containEql(Address);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should NOT share mixins registry', function () {
|
|
|
|
Person.mixin(Address);
|
|
|
|
Author._mixins.should.not.containEql(Address);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should able to mixin same class', function () {
|
|
|
|
Person.mixin(Address);
|
|
|
|
Author.mixin(Address);
|
|
|
|
Author._mixins.should.containEql(Address);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-08-06 11:26:47 +00:00
|
|
|
});
|