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

79 lines
2.1 KiB
JavaScript
Raw Normal View History

2016-04-01 22:25:16 +00:00
// Copyright IBM Corp. 2013,2016. All Rights Reserved.
// Node module: loopback-datasource-juggler
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
2013-04-06 10:57:12 +00:00
// This test written in mocha+should.js
2016-08-22 19:55:22 +00:00
'use strict';
/* global getSchema:false */
2018-12-07 14:54:29 +00:00
const should = require('./init.js');
2013-04-06 10:57:12 +00:00
2018-12-07 14:54:29 +00:00
const db = getSchema();
2016-04-01 11:48:17 +00:00
describe('defaults', function() {
2018-12-07 14:54:29 +00:00
let Server;
2016-04-01 11:48:17 +00:00
before(function() {
2014-01-24 17:09:53 +00:00
Server = db.define('Server', {
host: String,
2016-08-19 17:46:59 +00:00
port: {type: Number, default: 80},
createdAt: {type: Date, default: '$now'},
});
2014-01-24 17:09:53 +00:00
});
2016-04-01 11:48:17 +00:00
it('should apply defaults on new', function() {
2018-12-07 14:54:29 +00:00
const s = new Server;
2014-01-24 17:09:53 +00:00
s.port.should.equal(80);
});
2016-04-01 11:48:17 +00:00
it('should apply defaults on create', function(done) {
Server.create(function(err, s) {
2014-01-24 17:09:53 +00:00
s.port.should.equal(80);
done();
});
2014-01-24 17:09:53 +00:00
});
it('should NOT apply defaults on read', function(done) {
2014-01-24 17:09:53 +00:00
db.defineProperty('Server', 'host', {
type: String,
2016-04-01 11:48:17 +00:00
default: 'localhost',
2014-01-24 17:09:53 +00:00
});
2016-04-01 11:48:17 +00:00
Server.all(function(err, servers) {
should(servers[0].host).be.undefined();
2014-01-24 17:09:53 +00:00
done();
});
2014-01-24 17:09:53 +00:00
});
2016-04-01 11:48:17 +00:00
it('should ignore defaults with limited fields', function(done) {
2016-08-19 17:46:59 +00:00
Server.create({host: 'localhost', port: 8080}, function(err, s) {
should.not.exist(err);
s.port.should.equal(8080);
Server.findById(s.id, {fields: ['host']}, function(err, server) {
server.should.have.property('host', 'localhost');
server.should.have.property('port', undefined);
done();
});
});
});
2016-04-01 11:48:17 +00:00
it('should apply defaults in upsert create', function(done) {
2016-08-19 17:46:59 +00:00
Server.upsert({port: 8181}, function(err, server) {
should.not.exist(err);
should.exist(server.createdAt);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should preserve defaults in upsert update', function(done) {
Server.findOne({}, function(err, server) {
2016-08-19 17:46:59 +00:00
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();
});
});
});
});