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

39 lines
838 B
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-03-26 00:41:00 +00:00
var db = getSchema();
2014-01-24 17:09:53 +00:00
describe('defaults', function () {
var Server;
2014-01-24 17:09:53 +00:00
before(function () {
Server = db.define('Server', {
host: String,
port: {type: Number, default: 80}
});
2014-01-24 17:09:53 +00:00
});
2014-01-24 17:09:53 +00:00
it('should apply defaults on new', function () {
var s = new Server;
s.port.should.equal(80);
});
2014-01-24 17:09:53 +00:00
it('should apply defaults on create', function (done) {
Server.create(function (err, s) {
s.port.should.equal(80);
done();
});
2014-01-24 17:09:53 +00:00
});
2014-01-24 17:09:53 +00:00
it('should apply defaults on read', function (done) {
db.defineProperty('Server', 'host', {
type: String,
default: 'localhost'
});
Server.all(function (err, servers) {
(new String('localhost')).should.equal(servers[0].host);
done();
});
2014-01-24 17:09:53 +00:00
});
});