loopback-datasource-juggler/test/datatype.test.js

251 lines
7.1 KiB
JavaScript
Raw Normal View History

2013-04-06 10:57:12 +00:00
// This test written in mocha+should.js
var should = require('./init.js');
2013-04-06 10:34:16 +00:00
var db, Model;
2014-01-24 17:09:53 +00:00
describe('datatypes', function () {
2013-04-06 10:34:16 +00:00
2014-01-24 17:09:53 +00:00
before(function (done) {
db = getSchema();
Nested = db.define('Nested', {});
2014-01-24 17:09:53 +00:00
Model = db.define('Model', {
str: String,
date: Date,
num: Number,
bool: Boolean,
2014-02-13 06:49:54 +00:00
list: {type: [String]},
arr: Array,
nested: Nested
2013-04-06 10:34:16 +00:00
});
2014-01-24 17:09:53 +00:00
db.automigrate(function () {
Model.destroyAll(done);
});
});
2013-04-06 10:34:16 +00:00
it('should return 400 when property of type array is set to string value',
function (done) {
var myModel = db.define('myModel', {
list: { type: ['object'] }
});
(function(){
myModel.create({ list: 'This string will crash the server' });
}).should.throw({ statusCode: 400 });
done();
});
it('should return 400 when property of type array is set to object value',
function (done) {
var myModel = db.define('myModel', {
list: { type: ['object'] }
});
(function(){
myModel.create({ list: { key: 'This string will crash the server' } });
}).should.throw({ statusCode: 400 });
done();
});
2014-01-24 17:09:53 +00:00
it('should keep types when get read data from db', function (done) {
var d = new Date, id;
2013-04-07 13:59:24 +00:00
2014-01-24 17:09:53 +00:00
Model.create({
str: 'hello', date: d, num: '3', bool: 1, list: ['test'], arr: [1, 'str']
2014-01-24 17:09:53 +00:00
}, function (err, m) {
should.not.exists(err);
2014-01-24 17:09:53 +00:00
should.exist(m && m.id);
m.str.should.be.type('string');
m.num.should.be.type('number');
m.bool.should.be.type('boolean');
m.list[0].should.be.equal('test');
m.arr[0].should.be.equal(1);
m.arr[1].should.be.equal('str');
2014-01-24 17:09:53 +00:00
id = m.id;
testFind(testAll);
});
2013-04-06 10:34:16 +00:00
2014-01-24 17:09:53 +00:00
function testFind(next) {
Model.findById(id, function (err, m) {
should.not.exist(err);
should.exist(m);
m.str.should.be.type('string');
m.num.should.be.type('number');
m.bool.should.be.type('boolean');
m.list[0].should.be.equal('test');
m.arr[0].should.be.equal(1);
m.arr[1].should.be.equal('str');
2014-01-24 17:09:53 +00:00
m.date.should.be.an.instanceOf(Date);
m.date.toString().should.equal(d.toString(), 'Time must match');
next();
});
}
2013-04-06 10:34:16 +00:00
2014-01-24 17:09:53 +00:00
function testAll() {
Model.findOne(function (err, m) {
should.not.exist(err);
should.exist(m);
m.str.should.be.type('string');
m.num.should.be.type('number');
m.bool.should.be.type('boolean');
2014-01-24 17:09:53 +00:00
m.date.should.be.an.instanceOf(Date);
m.date.toString().should.equal(d.toString(), 'Time must match');
done();
});
}
2013-04-07 13:59:24 +00:00
2014-01-24 17:09:53 +00:00
});
2013-04-06 10:34:16 +00:00
it('should respect data types when updating attributes', function (done) {
var d = new Date, id;
Model.create({
2014-02-13 06:49:54 +00:00
str: 'hello', date: d, num: '3', bool: 1}, function(err, m) {
should.not.exist(err);
should.exist(m && m.id);
// sanity check initial types
m.str.should.be.type('string');
m.num.should.be.type('number');
m.bool.should.be.type('boolean');
id = m.id;
testDataInDB(function () {
testUpdate(function() {
testDataInDB(done);
});
});
});
function testUpdate(done) {
Model.findById(id, function(err, m) {
should.not.exist(err);
// update using updateAttributes
m.updateAttributes({
id: m.id, num: '10'
}, function (err, m) {
should.not.exist(err);
m.num.should.be.type('number');
done();
});
});
}
function testDataInDB(done) {
// verify that the value stored in the db is still an object
db.connector.find(Model.modelName, id, function (err, data) {
should.exist(data);
data.num.should.be.type('number');
done();
});
}
});
it('should not coerce nested objects into ModelConstructor types', function() {
var coerced = Model._coerce({ nested: { foo: 'bar' } });
coerced.nested.constructor.name.should.equal('Object');
});
describe('model option persistUndefinedAsNull', function() {
var TestModel;
before(function(done) {
TestModel = db.define(
'TestModel',
{
desc: { type: String, required: false },
stars: { type: Number, required: false }
},
{
persistUndefinedAsNull: true
});
db.automigrate(done);
});
it('should set missing optional properties to null', function(done) {
var EXPECTED = { desc: null, stars: null };
TestModel.create({ name: 'a-test-name' }, function(err, created) {
if (err) return done(err);
created.should.have.properties(EXPECTED);
TestModel.findById(created.id, function(err, found) {
if (err) return done(err);
found.should.have.properties(EXPECTED);
done();
});
});
});
it('should convert property value undefined to null', function(done) {
var EXPECTED = { desc: null, extra: null };
var data ={ desc: undefined, extra: undefined };
TestModel.create(data, function(err, created) {
if (err) return done(err);
created.should.have.properties(EXPECTED);
TestModel.findById(created.id, function(err, found) {
if (err) return done(err);
found.should.have.properties(EXPECTED);
done();
});
});
});
it('should convert undefined to null in the setter', function() {
var inst = new TestModel();
inst.desc = undefined;
inst.should.have.property('desc', null);
inst.toObject().should.have.property('desc', null);
});
it('should use null in unsetAttribute()', function() {
var inst = new TestModel();
inst.unsetAttribute('stars');
inst.should.have.property('stars', null);
inst.toObject().should.have.property('stars', null);
});
it('should convert undefined to null on save', function(done) {
var EXPECTED = { desc: null, stars: null, extra: null };
TestModel.create({}, function(err, created) {
if (err) return done(err);
created.desc = undefined; // Note: this is may be a no-op
created.unsetAttribute('stars');
created.extra = undefined;
created.__data.dx = undefined;
created.save(function(err, saved) {
if (err) return done(err);
created.should.have.properties(EXPECTED);
TestModel.dataSource.connector.all(
TestModel.modelName,
{ where: { id: created.id } },
function(err, found) {
if (err) return done(err);
should.exist(found[0]);
found[0].should.have.properties(EXPECTED);
done();
}
);
});
});
});
it('should convert undefined to null in toObject()', function() {
var inst = new TestModel();
inst.desc = undefined; // Note: this may be a no-op
inst.unsetAttribute('stars');
inst.extra = undefined;
inst.__data.dx = undefined;
inst.toObject(false).should.have.properties({
desc: null, stars: null, extra: null, dx: null
});
});
});
2013-04-06 10:34:16 +00:00
});