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';
|
2016-12-05 14:14:09 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
/* global getSchema:false, connectorCapabilities:false */
|
2018-12-07 16:13:48 +00:00
|
|
|
const assert = require('assert');
|
|
|
|
const bdd = require('./helpers/bdd-if');
|
|
|
|
const should = require('./init.js');
|
|
|
|
const uid = require('./helpers/uid-generator');
|
|
|
|
const jdb = require('../');
|
|
|
|
const DataSource = jdb.DataSource;
|
|
|
|
const createPromiseCallback = require('../lib/utils.js').createPromiseCallback;
|
|
|
|
|
|
|
|
let db, tmp, Book, Chapter, Author, Reader, Article, Employee;
|
|
|
|
let Category, Job;
|
|
|
|
let Picture, PictureLink;
|
|
|
|
let Person, Address;
|
|
|
|
let Link;
|
|
|
|
|
|
|
|
const getTransientDataSource = function(settings) {
|
2016-04-01 11:48:17 +00:00
|
|
|
return new DataSource('transient', settings, db.modelBuilder);
|
2014-09-04 13:33:12 +00:00
|
|
|
};
|
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const getMemoryDataSource = function(settings) {
|
2016-04-01 11:48:17 +00:00
|
|
|
return new DataSource('memory', settings, db.modelBuilder);
|
2014-09-07 10:59:47 +00:00
|
|
|
};
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('relations', function() {
|
2015-02-21 00:10:25 +00:00
|
|
|
before(function() {
|
|
|
|
db = getSchema();
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany', function() {
|
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book = db.define('Book', {name: String, type: String});
|
|
|
|
Chapter = db.define('Chapter', {name: {type: String, index: true},
|
|
|
|
bookType: String});
|
|
|
|
Author = db.define('Author', {name: String});
|
|
|
|
Reader = db.define('Reader', {name: String});
|
2014-07-15 23:10:37 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Book', 'Chapter', 'Author', 'Reader'], done);
|
2013-03-26 00:39:47 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared in different ways', function(done) {
|
2014-01-24 17:09:53 +00:00
|
|
|
Book.hasMany(Chapter);
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.hasMany(Reader, {as: 'users'});
|
|
|
|
Book.hasMany(Author, {foreignKey: 'projectId'});
|
2018-12-07 16:13:48 +00:00
|
|
|
const b = new Book;
|
2014-01-24 17:09:53 +00:00
|
|
|
b.chapters.should.be.an.instanceOf(Function);
|
|
|
|
b.users.should.be.an.instanceOf(Function);
|
|
|
|
b.authors.should.be.an.instanceOf(Function);
|
2015-02-03 10:37:43 +00:00
|
|
|
Object.keys((new Chapter).toObject()).should.containEql('bookId');
|
|
|
|
Object.keys((new Author).toObject()).should.containEql('projectId');
|
2014-01-24 17:09:53 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Book', 'Chapter', 'Author', 'Reader'], done);
|
2013-03-26 00:39:47 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared in short form', function(done) {
|
2017-04-06 20:04:16 +00:00
|
|
|
Author = db.define('Author', {name: String});
|
|
|
|
Reader = db.define('Reader', {name: String});
|
2014-01-24 17:09:53 +00:00
|
|
|
Author.hasMany('readers');
|
|
|
|
(new Author).readers.should.be.an.instanceOf(Function);
|
2015-02-03 10:37:43 +00:00
|
|
|
Object.keys((new Reader).toObject()).should.containEql('authorId');
|
2013-03-26 00:39:47 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.autoupdate(['Author', 'Reader'], done);
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-26 20:48:14 +00:00
|
|
|
|
2014-11-07 23:21:15 +00:00
|
|
|
describe('with scope', function() {
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2014-11-07 23:21:15 +00:00
|
|
|
Book.hasMany(Chapter);
|
|
|
|
done();
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-26 20:48:14 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should build record on scope', function(done) {
|
|
|
|
Book.create(function(err, book) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const chaps = book.chapters;
|
|
|
|
const c = chaps.build();
|
2015-04-24 23:50:15 +00:00
|
|
|
c.bookId.should.eql(book.id);
|
2014-11-07 23:21:15 +00:00
|
|
|
c.save(done);
|
2013-03-26 20:48:14 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-26 20:48:14 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope', function(done) {
|
|
|
|
Book.create(function(err, book) {
|
|
|
|
book.chapters.create(function(err, c) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-01-24 17:09:53 +00:00
|
|
|
should.exist(c);
|
2015-04-24 23:50:15 +00:00
|
|
|
c.bookId.should.eql(book.id);
|
2017-04-06 20:04:16 +00:00
|
|
|
done(err);
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-26 20:48:14 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-04-03 20:46:41 +00:00
|
|
|
|
2018-01-17 18:34:37 +00:00
|
|
|
it('should not update FK', function(done) {
|
|
|
|
Book.create(function(err, book) {
|
|
|
|
book.chapters.create({name: 'chapter 1'}, function(err, c) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(c);
|
|
|
|
c.bookId.should.eql(book.id);
|
|
|
|
c.name.should.eql('chapter 1');
|
|
|
|
book.chapters.updateById(c.id, {name: 'chapter 0', bookId: 10}, function(err, cc) {
|
|
|
|
should.exist(err);
|
|
|
|
err.message.should.startWith('Cannot override foreign key');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Book.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
return book.chapters.create()
|
|
|
|
.then(function(c) {
|
|
|
|
should.exist(c);
|
|
|
|
c.bookId.should.eql(book.id);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create a batch of records on scope', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const chapters = [
|
2016-08-19 17:46:59 +00:00
|
|
|
{name: 'a'},
|
|
|
|
{name: 'z'},
|
|
|
|
{name: 'c'},
|
2014-11-08 02:01:18 +00:00
|
|
|
];
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
|
|
|
book.chapters.create(chapters, function(err, chs) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-08 02:01:18 +00:00
|
|
|
should.exist(chs);
|
|
|
|
chs.should.have.lengthOf(chapters.length);
|
|
|
|
chs.forEach(function(c) {
|
2015-04-24 23:50:15 +00:00
|
|
|
c.bookId.should.eql(book.id);
|
2014-11-08 02:01:18 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
done();
|
|
|
|
});
|
2013-03-26 00:39:47 +00:00
|
|
|
});
|
2014-11-08 02:01:18 +00:00
|
|
|
});
|
2013-04-03 20:46:41 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create a batch of records on scope with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const chapters = [
|
2016-08-19 17:46:59 +00:00
|
|
|
{name: 'a'},
|
|
|
|
{name: 'z'},
|
|
|
|
{name: 'c'},
|
2015-02-18 05:04:31 +00:00
|
|
|
];
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
2015-02-18 05:04:31 +00:00
|
|
|
book.chapters.create(chapters)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(chs) {
|
|
|
|
should.exist(chs);
|
|
|
|
chs.should.have.lengthOf(chapters.length);
|
|
|
|
chs.forEach(function(c) {
|
|
|
|
c.bookId.should.eql(book.id);
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should fetch all scoped instances', function(done) {
|
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function() {
|
|
|
|
book.chapters.create({name: 'z'}, function() {
|
|
|
|
book.chapters.create({name: 'c'}, function() {
|
2014-11-07 23:21:15 +00:00
|
|
|
verify(book);
|
|
|
|
});
|
2013-04-03 20:46:41 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-04-03 20:46:41 +00:00
|
|
|
});
|
2014-11-07 23:21:15 +00:00
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters(function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(3);
|
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const chapters = book.chapters();
|
2014-11-07 23:21:15 +00:00
|
|
|
chapters.should.eql(ch);
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
book.chapters(function(e, c) {
|
2014-11-07 23:21:15 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(c);
|
2017-04-06 20:04:16 +00:00
|
|
|
ch.should.have.lengthOf(3);
|
2018-12-07 16:13:48 +00:00
|
|
|
const acz = ['a', 'c', 'z'];
|
2017-04-06 20:04:16 +00:00
|
|
|
acz.should.containEql(c[0].name);
|
|
|
|
acz.should.containEql(c[1].name);
|
|
|
|
acz.should.containEql(c[2].name);
|
2014-11-07 23:21:15 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should fetch all scoped instances with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Book.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
return book.chapters.create({name: 'a'})
|
|
|
|
.then(function() {
|
|
|
|
return book.chapters.create({name: 'z'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return book.chapters.create({name: 'c'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return verify(book);
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
2017-07-19 13:31:21 +00:00
|
|
|
return book.chapters.find()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(ch) {
|
|
|
|
should.exist(ch);
|
2017-04-06 20:04:16 +00:00
|
|
|
ch.should.have.lengthOf(3);
|
2018-12-07 16:13:48 +00:00
|
|
|
const chapters = book.chapters();
|
2018-06-12 07:13:32 +00:00
|
|
|
chapters.should.eql(ch);
|
|
|
|
return book.chapters.find()
|
|
|
|
.then(function(c) {
|
|
|
|
should.exist(c);
|
|
|
|
ch.should.have.lengthOf(3);
|
2018-12-07 16:13:48 +00:00
|
|
|
const acz = ['a', 'c', 'z'];
|
2018-06-12 07:13:32 +00:00
|
|
|
acz.should.containEql(c[0].name);
|
|
|
|
acz.should.containEql(c[1].name);
|
|
|
|
acz.should.containEql(c[2].name);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-07-19 13:31:21 +00:00
|
|
|
it('should fetch all scoped instances with find() with callback and condition', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function() {
|
|
|
|
book.chapters.create({name: 'z'}, function() {
|
|
|
|
book.chapters.create({name: 'c'}, function() {
|
2015-02-18 05:04:31 +00:00
|
|
|
verify(book);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters(function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-18 05:04:31 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(3);
|
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const chapters = book.chapters();
|
2015-02-18 05:04:31 +00:00
|
|
|
chapters.should.eql(ch);
|
2017-07-19 13:31:21 +00:00
|
|
|
book.chapters.find(function(e, c) {
|
2015-02-18 05:04:31 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(c);
|
2017-04-06 20:04:16 +00:00
|
|
|
ch.should.have.lengthOf(3);
|
2018-12-07 16:13:48 +00:00
|
|
|
const acz = ['a', 'c', 'z'];
|
2017-04-06 20:04:16 +00:00
|
|
|
acz.should.containEql(c[0].name);
|
|
|
|
acz.should.containEql(c[1].name);
|
|
|
|
acz.should.containEql(c[2].name);
|
2015-02-18 05:04:31 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-07-19 13:31:21 +00:00
|
|
|
it('should fetch all scoped instances with find() with callback and no condition', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function() {
|
|
|
|
book.chapters.create({name: 'z'}, function() {
|
|
|
|
book.chapters.create({name: 'c'}, function() {
|
2015-02-18 05:04:31 +00:00
|
|
|
verify(book);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters(function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-18 05:04:31 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(3);
|
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const chapters = book.chapters();
|
2015-02-18 05:04:31 +00:00
|
|
|
chapters.should.eql(ch);
|
|
|
|
|
2017-07-19 13:31:21 +00:00
|
|
|
book.chapters.find(function(e, c) {
|
2015-02-18 05:04:31 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(c);
|
|
|
|
should.exist(c.length);
|
2017-04-06 20:04:16 +00:00
|
|
|
c.should.have.lengthOf(3);
|
2018-12-07 16:13:48 +00:00
|
|
|
const acz = ['a', 'c', 'z'];
|
2017-04-06 20:04:16 +00:00
|
|
|
acz.should.containEql(c[0].name);
|
|
|
|
acz.should.containEql(c[1].name);
|
|
|
|
acz.should.containEql(c[2].name);
|
2015-02-18 05:04:31 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function(err, ch) {
|
2014-11-07 23:21:15 +00:00
|
|
|
id = ch.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'z'}, function() {
|
|
|
|
book.chapters.create({name: 'c'}, function() {
|
2014-11-07 23:21:15 +00:00
|
|
|
verify(book);
|
|
|
|
});
|
2014-08-26 12:54:19 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-11-07 23:21:15 +00:00
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters.findById(id, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.id.should.eql(id);
|
2014-08-26 12:54:19 +00:00
|
|
|
done();
|
|
|
|
});
|
2014-11-07 23:21:15 +00:00
|
|
|
}
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2015-02-18 05:04:31 +00:00
|
|
|
Book.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
return book.chapters.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return book.chapters.create({name: 'z'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return book.chapters.create({name: 'c'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return verify(book);
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
|
|
|
return book.chapters.findById(id)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(ch) {
|
|
|
|
should.exist(ch);
|
|
|
|
ch.id.should.eql(id);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should count scoped records - all and filtered', function(done) {
|
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function(err, ch) {
|
|
|
|
book.chapters.create({name: 'b'}, function() {
|
|
|
|
book.chapters.create({name: 'c'}, function() {
|
2014-11-07 23:21:15 +00:00
|
|
|
verify(book);
|
|
|
|
});
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
});
|
2014-11-07 23:21:15 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters.count(function(err, count) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
count.should.equal(3);
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.count({name: 'b'}, function(err, count) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
count.should.equal(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should count scoped records - all and filtered with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Book.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
book.chapters.create({name: 'a'})
|
|
|
|
.then(function() {
|
|
|
|
return book.chapters.create({name: 'b'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return book.chapters.create({name: 'c'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return verify(book);
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
|
|
|
return book.chapters.count()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(count) {
|
|
|
|
count.should.equal(3);
|
|
|
|
return book.chapters.count({name: 'b'});
|
|
|
|
})
|
|
|
|
.then(function(count) {
|
|
|
|
count.should.equal(1);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-11-07 23:21:15 +00:00
|
|
|
it('should set targetClass on scope property', function() {
|
|
|
|
should.equal(Book.prototype.chapters._targetClass, 'Chapter');
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should update scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function(err, ch) {
|
2014-11-07 23:21:15 +00:00
|
|
|
id = ch.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.updateById(id, {name: 'aa'}, function(err, ch) {
|
2014-11-07 23:21:15 +00:00
|
|
|
verify(book);
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
});
|
2014-11-07 23:21:15 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters.findById(id, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.id.should.eql(id);
|
|
|
|
ch.name.should.equal('aa');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should update scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2015-02-18 05:04:31 +00:00
|
|
|
Book.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
return book.chapters.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return book.chapters.updateById(id, {name: 'aa'});
|
|
|
|
})
|
|
|
|
.then(function(ch) {
|
|
|
|
return verify(book);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
})
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
|
|
|
return book.chapters.findById(id)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(ch) {
|
|
|
|
should.exist(ch);
|
|
|
|
ch.id.should.eql(id);
|
|
|
|
ch.name.should.equal('aa');
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should destroy scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function(err, ch) {
|
2014-11-07 23:21:15 +00:00
|
|
|
id = ch.id;
|
|
|
|
book.chapters.destroy(id, function(err, ch) {
|
|
|
|
verify(book);
|
|
|
|
});
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
|
2014-11-07 23:21:15 +00:00
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters.findById(id, function(err, ch) {
|
2014-11-07 23:21:15 +00:00
|
|
|
should.exist(err);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should destroy scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2015-02-18 05:04:31 +00:00
|
|
|
Book.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
return book.chapters.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return book.chapters.destroy(id);
|
|
|
|
})
|
|
|
|
.then(function(ch) {
|
|
|
|
return verify(book);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
})
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
|
|
|
return book.chapters.findById(id)
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(function(err) {
|
|
|
|
should.exist(err);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check existence of a scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2016-04-01 11:48:17 +00:00
|
|
|
Book.create(function(err, book) {
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'a'}, function(err, ch) {
|
2014-11-07 23:21:15 +00:00
|
|
|
id = ch.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
book.chapters.create({name: 'z'}, function() {
|
|
|
|
book.chapters.create({name: 'c'}, function() {
|
2014-11-07 23:21:15 +00:00
|
|
|
verify(book);
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-11-07 23:21:15 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters.exists(id, function(err, flag) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
flag.should.be.eql(true);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check existence of a scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2015-02-18 05:04:31 +00:00
|
|
|
Book.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
return book.chapters.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return book.chapters.create({name: 'z'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return book.chapters.create({name: 'c'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return verify(book);
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(book) {
|
|
|
|
return book.chapters.exists(id)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(flag) {
|
|
|
|
flag.should.be.eql(true);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check ignore related data on creation - array', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.create({chapters: []}, function(err, book) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
book.chapters.should.be.a.function;
|
2018-12-07 16:13:48 +00:00
|
|
|
const obj = book.toObject();
|
2014-11-07 23:21:15 +00:00
|
|
|
should.not.exist(obj.chapters);
|
2014-07-15 15:50:34 +00:00
|
|
|
done();
|
|
|
|
});
|
2014-08-21 08:44:55 +00:00
|
|
|
});
|
2014-11-07 23:21:15 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check ignore related data on creation with promises - array', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.create({chapters: []})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
book.chapters.should.be.a.function;
|
2018-12-07 16:13:48 +00:00
|
|
|
const obj = book.toObject();
|
2018-06-12 07:13:32 +00:00
|
|
|
should.not.exist(obj.chapters);
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check ignore related data on creation - object', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.create({chapters: {}}, function(err, book) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-07 23:21:15 +00:00
|
|
|
book.chapters.should.be.a.function;
|
2018-12-07 16:13:48 +00:00
|
|
|
const obj = book.toObject();
|
2014-11-07 23:21:15 +00:00
|
|
|
should.not.exist(obj.chapters);
|
|
|
|
done();
|
|
|
|
});
|
2014-08-21 08:44:55 +00:00
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check ignore related data on creation with promises - object', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.create({chapters: {}})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
book.chapters.should.be.a.function;
|
2018-12-07 16:13:48 +00:00
|
|
|
const obj = book.toObject();
|
2018-06-12 07:13:32 +00:00
|
|
|
should.not.exist(obj.chapters);
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2014-08-21 08:44:55 +00:00
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany through', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Physician, Patient, Appointment, Address;
|
2014-07-15 15:50:34 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician = db.define('Physician', {name: String});
|
2017-08-01 18:15:21 +00:00
|
|
|
Patient = db.define('Patient', {name: String, age: Number, realm: String,
|
2017-07-11 18:56:39 +00:00
|
|
|
sequence: {type: Number, index: true}});
|
2016-08-19 17:46:59 +00:00
|
|
|
Appointment = db.define('Appointment', {date: {type: Date,
|
2016-04-01 11:48:17 +00:00
|
|
|
default: function() {
|
2014-07-15 15:50:34 +00:00
|
|
|
return new Date();
|
2016-08-19 17:46:59 +00:00
|
|
|
}}});
|
|
|
|
Address = db.define('Address', {name: String});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.hasMany(Patient, {through: Appointment});
|
|
|
|
Patient.hasMany(Physician, {through: Appointment});
|
2014-08-20 12:03:38 +00:00
|
|
|
Patient.belongsTo(Address);
|
2014-07-15 15:50:34 +00:00
|
|
|
Appointment.belongsTo(Patient);
|
|
|
|
Appointment.belongsTo(Physician);
|
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Physician', 'Patient', 'Appointment', 'Address'], done);
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
|
2017-05-01 01:59:44 +00:00
|
|
|
it('should build record on scope', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Physician.create(function(err, physician) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const patient = physician.patients.build();
|
2015-04-24 23:50:15 +00:00
|
|
|
patient.physicianId.should.eql(physician.id);
|
2014-07-15 15:50:34 +00:00
|
|
|
patient.save(done);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope', function(done) {
|
|
|
|
Physician.create(function(err, physician) {
|
|
|
|
physician.patients.create(function(err, patient) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-15 15:50:34 +00:00
|
|
|
should.exist(patient);
|
2016-08-19 17:46:59 +00:00
|
|
|
Appointment.find({where: {physicianId: physician.id, patientId: patient.id}},
|
2014-07-15 15:50:34 +00:00
|
|
|
function(err, apps) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-15 15:50:34 +00:00
|
|
|
apps.should.have.lengthOf(1);
|
|
|
|
done();
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Physician.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create()
|
|
|
|
.then(function(patient) {
|
|
|
|
should.exist(patient);
|
|
|
|
return Appointment.find({where: {physicianId: physician.id, patientId: patient.id}})
|
|
|
|
.then(function(apps) {
|
|
|
|
apps.should.have.lengthOf(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create multiple records on scope', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const async = require('async');
|
2016-04-01 11:48:17 +00:00
|
|
|
Physician.create(function(err, physician) {
|
|
|
|
physician.patients.create([{}, {}], function(err, patients) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-11-11 21:36:49 +00:00
|
|
|
should.exist(patients);
|
|
|
|
patients.should.have.lengthOf(2);
|
|
|
|
function verifyPatient(patient, next) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Appointment.find({where: {
|
2014-11-11 21:36:49 +00:00
|
|
|
physicianId: physician.id,
|
2016-04-01 11:48:17 +00:00
|
|
|
patientId: patient.id,
|
2014-11-11 21:36:49 +00:00
|
|
|
}},
|
2018-06-12 07:13:32 +00:00
|
|
|
function(err, apps) {
|
|
|
|
if (err) return done(err);
|
|
|
|
apps.should.have.lengthOf(1);
|
|
|
|
next();
|
|
|
|
});
|
2014-11-11 21:36:49 +00:00
|
|
|
}
|
|
|
|
async.forEach(patients, verifyPatient, done);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create multiple records on scope with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const async = require('async');
|
2015-02-18 05:04:31 +00:00
|
|
|
Physician.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create([{}, {}])
|
|
|
|
.then(function(patients) {
|
|
|
|
should.exist(patients);
|
|
|
|
patients.should.have.lengthOf(2);
|
|
|
|
function verifyPatient(patient, next) {
|
|
|
|
Appointment.find({where: {
|
|
|
|
physicianId: physician.id,
|
|
|
|
patientId: patient.id,
|
|
|
|
}})
|
|
|
|
.then(function(apps) {
|
|
|
|
apps.should.have.lengthOf(1);
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
async.forEach(patients, verifyPatient, done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2018-06-12 07:13:32 +00:00
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should fetch all scoped instances', function(done) {
|
|
|
|
Physician.create(function(err, physician) {
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.create({name: 'a'}, function() {
|
|
|
|
physician.patients.create({name: 'z'}, function() {
|
|
|
|
physician.patients.create({name: 'c'}, function() {
|
2014-07-15 15:50:34 +00:00
|
|
|
verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
function verify(physician) {
|
2016-04-01 11:48:17 +00:00
|
|
|
physician.patients(function(err, ch) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const patients = physician.patients();
|
2014-09-04 19:25:26 +00:00
|
|
|
patients.should.eql(ch);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-15 15:50:34 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(3);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should fetch all scoped instances with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Physician.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create({name: 'a'})
|
|
|
|
.then(function() {
|
|
|
|
return physician.patients.create({name: 'z'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return physician.patients.create({name: 'c'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return verify(physician);
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
function verify(physician) {
|
2017-07-19 13:31:21 +00:00
|
|
|
return physician.patients.find()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(ch) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const patients = physician.patients();
|
2018-06-12 07:13:32 +00:00
|
|
|
should.equal(patients, ch);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(3);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-10-27 14:18:54 +00:00
|
|
|
describe('fetch scoped instances with paging filters', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let samplePatientId;
|
|
|
|
let physician;
|
2016-10-27 14:18:54 +00:00
|
|
|
|
|
|
|
beforeEach(createSampleData);
|
|
|
|
|
|
|
|
context('with filter skip', function() {
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.supportPagination !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'skips the first patient', function(done) {
|
|
|
|
physician.patients({skip: 1, order: 'sequence'}, function(err, ch) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(2);
|
|
|
|
ch[0].name.should.eql('z');
|
|
|
|
ch[1].name.should.eql('c');
|
|
|
|
done();
|
|
|
|
});
|
2016-10-27 14:18:54 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
context('with filter order', function() {
|
|
|
|
it('orders the result by patient name', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const filter = connectorCapabilities.adhocSort !== false ? {order: 'name DESC'} : {};
|
2017-04-06 20:04:16 +00:00
|
|
|
physician.patients(filter, function(err, ch) {
|
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(3);
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
ch[0].name.should.eql('z');
|
|
|
|
ch[1].name.should.eql('c');
|
|
|
|
ch[2].name.should.eql('a');
|
|
|
|
} else {
|
2018-12-07 16:13:48 +00:00
|
|
|
const acz = ['a', 'c', 'z'];
|
2017-04-06 20:04:16 +00:00
|
|
|
ch[0].name.should.be.oneOf(acz);
|
|
|
|
ch[1].name.should.be.oneOf(acz);
|
|
|
|
ch[2].name.should.be.oneOf(acz);
|
|
|
|
}
|
2016-10-27 14:18:54 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
context('with filter limit', function() {
|
|
|
|
it('limits to 1 result', function(done) {
|
2017-05-02 17:35:57 +00:00
|
|
|
physician.patients({limit: 1, order: 'sequence'}, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(1);
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
ch[0].name.should.eql('a');
|
|
|
|
} else {
|
|
|
|
ch[0].name.should.be.oneOf(['a', 'c', 'z']);
|
|
|
|
}
|
2016-10-27 14:18:54 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
context('with filter fields', function() {
|
|
|
|
it('includes field \'name\' but not \'age\'', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const fieldsFilter = {
|
2017-05-02 17:35:57 +00:00
|
|
|
fields: {name: true, age: false},
|
|
|
|
order: 'sequence',
|
|
|
|
};
|
2016-10-27 14:18:54 +00:00
|
|
|
physician.patients(fieldsFilter, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
should.exist(ch);
|
|
|
|
should.exist(ch[0].name);
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
ch[0].name.should.eql('a');
|
|
|
|
} else {
|
|
|
|
ch[0].name.should.be.oneOf(['a', 'c', 'z']);
|
|
|
|
}
|
2016-10-27 14:18:54 +00:00
|
|
|
should.not.exist(ch[0].age);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
context('with filter include', function() {
|
2017-05-01 01:59:44 +00:00
|
|
|
it('returns physicians included in patient', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const includeFilter = {include: 'physicians'};
|
2016-10-27 14:18:54 +00:00
|
|
|
physician.patients(includeFilter, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
ch.should.have.lengthOf(3);
|
|
|
|
should.exist(ch[0].physicians);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
context('with filter where', function() {
|
2017-05-01 01:59:44 +00:00
|
|
|
it('returns patient where id equal to samplePatientId', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const whereFilter = {where: {id: samplePatientId}};
|
2017-05-15 04:27:33 +00:00
|
|
|
physician.patients(whereFilter, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(1);
|
|
|
|
ch[0].id.should.eql(samplePatientId);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2017-11-14 19:22:48 +00:00
|
|
|
it('returns patient where name equal to samplePatient name', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const whereFilter = {where: {name: 'a'}};
|
2017-11-14 19:22:48 +00:00
|
|
|
physician.patients(whereFilter, function(err, ch) {
|
2017-06-07 17:01:07 +00:00
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(ch);
|
2017-11-14 19:22:48 +00:00
|
|
|
ch.should.have.lengthOf(1);
|
|
|
|
ch[0].name.should.eql('a');
|
2017-06-07 17:01:07 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2017-05-01 01:59:44 +00:00
|
|
|
it('returns patients where id in an array', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const idArr = [];
|
|
|
|
let whereFilter;
|
2016-10-27 14:18:54 +00:00
|
|
|
physician.patients.create({name: 'b'}, function(err, p) {
|
|
|
|
idArr.push(samplePatientId, p.id);
|
|
|
|
whereFilter = {where: {id: {inq: idArr}}};
|
|
|
|
physician.patients(whereFilter, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(2);
|
2017-05-02 17:35:57 +00:00
|
|
|
if (typeof idArr[0] === 'object') {
|
|
|
|
// mongodb returns `id` as an object
|
|
|
|
idArr[0] = idArr[0].toString();
|
|
|
|
idArr[1] = idArr[1].toString();
|
|
|
|
idArr.indexOf(ch[0].id.toString()).should.not.equal(-1);
|
|
|
|
idArr.indexOf(ch[1].id.toString()).should.not.equal(-1);
|
|
|
|
} else {
|
|
|
|
idArr.indexOf(ch[0].id).should.not.equal(-1);
|
|
|
|
idArr.indexOf(ch[1].id).should.not.equal(-1);
|
|
|
|
}
|
2016-10-27 14:18:54 +00:00
|
|
|
done();
|
2015-05-13 05:18:50 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-11-14 19:22:48 +00:00
|
|
|
it('returns empty result when patientId does not belongs to physician', function(done) {
|
|
|
|
Patient.create({name: 'x'}, function(err, p) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(p);
|
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const wrongWhereFilter = {where: {id: p.id}};
|
2017-11-14 19:22:48 +00:00
|
|
|
physician.patients(wrongWhereFilter, function(err, ch) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(0);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-05-13 05:18:50 +00:00
|
|
|
});
|
2016-10-27 14:18:54 +00:00
|
|
|
context('findById with filter include', function() {
|
|
|
|
it('returns patient where id equal to \'samplePatientId\'' +
|
|
|
|
'with included physicians', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const includeFilter = {include: 'physicians'};
|
2016-10-27 14:18:54 +00:00
|
|
|
physician.patients.findById(samplePatientId,
|
|
|
|
includeFilter, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.id.should.eql(samplePatientId);
|
|
|
|
should.exist(ch.physicians);
|
2015-05-14 01:55:54 +00:00
|
|
|
done();
|
|
|
|
});
|
2016-10-27 14:18:54 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
context('findById with filter fields', function() {
|
|
|
|
it('returns patient where id equal to \'samplePatientId\'' +
|
|
|
|
'with field \'name\' but not \'age\'', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const fieldsFilter = {fields: {name: true, age: false}};
|
2016-10-27 14:18:54 +00:00
|
|
|
physician.patients.findById(samplePatientId,
|
|
|
|
fieldsFilter, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-10-27 14:18:54 +00:00
|
|
|
should.exist(ch);
|
|
|
|
should.exist(ch.name);
|
|
|
|
ch.name.should.eql('a');
|
|
|
|
should.not.exist(ch.age);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2017-03-22 14:03:36 +00:00
|
|
|
});
|
|
|
|
context('findById with include filter that contains string fields', function() {
|
|
|
|
it('should accept string and convert it to array', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const includeFilter = {include: {relation: 'patients', scope: {fields: 'name'}}};
|
|
|
|
const physicianId = physician.id;
|
2017-03-22 14:03:36 +00:00
|
|
|
Physician.findById(physicianId, includeFilter, function(err, result) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-03-22 14:03:36 +00:00
|
|
|
should.exist(result);
|
|
|
|
result.id.should.eql(physicianId);
|
|
|
|
should.exist(result.patients);
|
|
|
|
result.patients().should.be.an.instanceOf(Array);
|
|
|
|
should.exist(result.patients()[0]);
|
|
|
|
should.exist(result.patients()[0].name);
|
|
|
|
should.not.exist(result.patients()[0].age);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2016-10-27 14:18:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function createSampleData(done) {
|
|
|
|
Physician.create(function(err, result) {
|
2017-05-02 17:35:57 +00:00
|
|
|
result.patients.create({name: 'a', age: '10', sequence: 1},
|
|
|
|
function(err, p) {
|
|
|
|
samplePatientId = p.id;
|
|
|
|
result.patients.create({name: 'z', age: '20', sequence: 2},
|
|
|
|
function() {
|
|
|
|
result.patients.create({name: 'c', sequence: 3}, function() {
|
|
|
|
physician = result;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2016-10-27 14:18:54 +00:00
|
|
|
});
|
2015-05-13 05:18:50 +00:00
|
|
|
});
|
2018-12-07 16:13:48 +00:00
|
|
|
}
|
2015-05-13 05:18:50 +00:00
|
|
|
});
|
|
|
|
|
2017-08-01 18:15:21 +00:00
|
|
|
describe('find over related model with options', function() {
|
|
|
|
after(function() {
|
|
|
|
Physician.clearObservers('access');
|
|
|
|
Patient.clearObservers('access');
|
|
|
|
});
|
|
|
|
before(function() {
|
|
|
|
Physician.observe('access', beforeAccessFn);
|
|
|
|
Patient.observe('access', beforeAccessFn);
|
|
|
|
|
|
|
|
function beforeAccessFn(ctx, next) {
|
|
|
|
ctx.query.where.realm = ctx.options.realm;
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
it('should find be filtered from option', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2017-08-01 18:15:21 +00:00
|
|
|
Physician.create(function(err, physician) {
|
|
|
|
if (err) return done(err);
|
|
|
|
physician.patients.create({name: 'a', realm: 'test'}, function(err, ch) {
|
|
|
|
if (err) return done(err);
|
|
|
|
id = ch.id;
|
|
|
|
physician.patients.create({name: 'z', realm: 'test'}, function(err) {
|
|
|
|
if (err) return done(err);
|
|
|
|
physician.patients.create({name: 'c', realm: 'anotherRealm'}, function(err) {
|
|
|
|
if (err) return done(err);
|
|
|
|
verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function verify(physician) {
|
|
|
|
physician.patients({order: 'name ASC'}, {realm: 'test'}, function(err, records) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(records);
|
|
|
|
records.length.should.eql(2);
|
|
|
|
const expected = ['a:test', 'z:test'];
|
|
|
|
const actual = records.map(function(r) { return r.name + ':' + r.realm; });
|
2017-08-02 14:45:36 +00:00
|
|
|
actual.sort().should.eql(expected.sort());
|
2017-08-01 18:15:21 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2016-04-01 11:48:17 +00:00
|
|
|
Physician.create(function(err, physician) {
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.create({name: 'a'}, function(err, ch) {
|
2014-07-15 15:50:34 +00:00
|
|
|
id = ch.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.create({name: 'z'}, function() {
|
|
|
|
physician.patients.create({name: 'c'}, function() {
|
2014-07-15 15:50:34 +00:00
|
|
|
verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function verify(physician) {
|
2016-04-01 11:48:17 +00:00
|
|
|
physician.patients.findById(id, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-15 15:50:34 +00:00
|
|
|
should.exist(ch);
|
2014-09-06 12:38:57 +00:00
|
|
|
ch.id.should.eql(id);
|
2014-07-15 15:50:34 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2015-02-18 05:04:31 +00:00
|
|
|
Physician.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return physician.patients.create({name: 'z'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return physician.patients.create({name: 'c'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return verify(physician);
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(physician) {
|
2016-04-01 11:48:17 +00:00
|
|
|
return physician.patients.findById(id, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-18 05:04:31 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.id.should.eql(id);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to use include syntax on related data', function(done) {
|
|
|
|
Physician.create(function(err, physician) {
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.create({name: 'a'}, function(err, patient) {
|
|
|
|
Address.create({name: 'z'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 09:05:57 +00:00
|
|
|
patient.address(address);
|
|
|
|
patient.save(function() {
|
2014-08-08 16:39:36 +00:00
|
|
|
verify(physician, address.id);
|
2014-07-29 09:05:57 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-08-08 16:39:36 +00:00
|
|
|
function verify(physician, addressId) {
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients({include: 'address'}, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 09:05:57 +00:00
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(1);
|
2014-08-08 16:39:36 +00:00
|
|
|
ch[0].addressId.should.eql(addressId);
|
2018-12-07 16:13:48 +00:00
|
|
|
const address = ch[0].address();
|
2014-07-29 09:05:57 +00:00
|
|
|
should.exist(address);
|
|
|
|
address.should.be.an.instanceof(Address);
|
|
|
|
address.name.should.equal('z');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to use include syntax on related data with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Physician.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create({name: 'a'})
|
|
|
|
.then(function(patient) {
|
|
|
|
return Address.create({name: 'z'})
|
|
|
|
.then(function(address) {
|
|
|
|
patient.address(address);
|
|
|
|
return patient.save()
|
|
|
|
.then(function() {
|
|
|
|
return verify(physician, address.id);
|
|
|
|
});
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2018-06-12 07:13:32 +00:00
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(physician, addressId) {
|
2017-07-19 13:31:21 +00:00
|
|
|
return physician.patients.find({include: 'address'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(ch) {
|
|
|
|
should.exist(ch);
|
|
|
|
ch.should.have.lengthOf(1);
|
|
|
|
ch[0].addressId.toString().should.eql(addressId.toString());
|
2018-12-07 16:13:48 +00:00
|
|
|
const address = ch[0].address();
|
2018-06-12 07:13:32 +00:00
|
|
|
should.exist(address);
|
|
|
|
address.should.be.an.instanceof(Address);
|
|
|
|
address.name.should.equal('z');
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-15 15:50:34 +00:00
|
|
|
it('should set targetClass on scope property', function() {
|
|
|
|
should.equal(Physician.prototype.patients._targetClass, 'Patient');
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should update scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2016-04-01 11:48:17 +00:00
|
|
|
Physician.create(function(err, physician) {
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.create({name: 'a'}, function(err, ch) {
|
2014-07-15 15:50:34 +00:00
|
|
|
id = ch.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.updateById(id, {name: 'aa'}, function(err, ch) {
|
2014-07-15 15:50:34 +00:00
|
|
|
verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function verify(physician) {
|
2016-04-01 11:48:17 +00:00
|
|
|
physician.patients.findById(id, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-15 15:50:34 +00:00
|
|
|
should.exist(ch);
|
2014-09-06 12:38:57 +00:00
|
|
|
ch.id.should.eql(id);
|
2014-07-15 15:50:34 +00:00
|
|
|
ch.name.should.equal('aa');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should update scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2015-02-18 05:04:31 +00:00
|
|
|
Physician.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return physician.patients.updateById(id, {name: 'aa'})
|
|
|
|
.then(function(ch) {
|
|
|
|
return verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(physician) {
|
|
|
|
return physician.patients.findById(id)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(ch) {
|
|
|
|
should.exist(ch);
|
|
|
|
ch.id.should.eql(id);
|
|
|
|
ch.name.should.equal('aa');
|
|
|
|
done();
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should destroy scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2018-06-12 07:13:32 +00:00
|
|
|
Physician.create(function(err, physician) {
|
|
|
|
physician.patients.create({name: 'a'}, function(err, ch) {
|
|
|
|
id = ch.id;
|
|
|
|
physician.patients.destroy(id, function(err, ch) {
|
|
|
|
verify(physician);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
function verify(physician) {
|
|
|
|
physician.patients.findById(id, function(err, ch) {
|
|
|
|
should.exist(err);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
|
|
|
'should destroy scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2018-06-12 07:13:32 +00:00
|
|
|
Physician.create()
|
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return physician.patients.destroy(id)
|
|
|
|
.then(function(ch) {
|
|
|
|
return verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
|
|
|
|
|
|
|
function verify(physician) {
|
|
|
|
return physician.patients.findById(id)
|
|
|
|
.then(function(ch) {
|
|
|
|
should.not.exist(ch);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
should.exist(err);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check existence of a scoped record', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2016-04-01 11:48:17 +00:00
|
|
|
Physician.create(function(err, physician) {
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.create({name: 'a'}, function(err, ch) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-15 15:50:34 +00:00
|
|
|
id = ch.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.create({name: 'z'}, function() {
|
|
|
|
physician.patients.create({name: 'c'}, function() {
|
2014-07-15 15:50:34 +00:00
|
|
|
verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function verify(physician) {
|
2016-04-01 11:48:17 +00:00
|
|
|
physician.patients.exists(id, function(err, flag) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-15 15:50:34 +00:00
|
|
|
flag.should.be.eql(true);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check existence of a scoped record with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2015-02-18 05:04:31 +00:00
|
|
|
Physician.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create({name: 'a'})
|
|
|
|
.then(function(ch) {
|
|
|
|
id = ch.id;
|
|
|
|
return physician.patients.create({name: 'z'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return physician.patients.create({name: 'c'});
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return verify(physician);
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
|
|
|
function verify(physician) {
|
|
|
|
return physician.patients.exists(id)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(flag) {
|
|
|
|
flag.should.be.eql(true);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to add connection with instance', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.create({name: 'ph1'}, function(e, physician) {
|
|
|
|
Patient.create({name: 'pa1'}, function(e, patient) {
|
2016-04-01 11:48:17 +00:00
|
|
|
physician.patients.add(patient, function(e, app) {
|
2014-07-15 15:50:34 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(app);
|
|
|
|
app.should.be.an.instanceOf(Appointment);
|
2015-04-24 23:50:15 +00:00
|
|
|
app.physicianId.should.eql(physician.id);
|
|
|
|
app.patientId.should.eql(patient.id);
|
2014-07-15 15:50:34 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to add connection with instance with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.create({name: 'ph1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return Patient.create({name: 'pa1'})
|
|
|
|
.then(function(patient) {
|
|
|
|
return physician.patients.add(patient)
|
|
|
|
.then(function(app) {
|
|
|
|
should.exist(app);
|
|
|
|
app.should.be.an.instanceOf(Appointment);
|
|
|
|
app.physicianId.should.eql(physician.id);
|
|
|
|
app.patientId.should.eql(patient.id);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to add connection with through data', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.create({name: 'ph1'}, function(e, physician) {
|
|
|
|
Patient.create({name: 'pa1'}, function(e, patient) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const now = Date.now();
|
2016-08-19 17:46:59 +00:00
|
|
|
physician.patients.add(patient, {date: new Date(now)}, function(e, app) {
|
2014-08-31 13:40:18 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(app);
|
|
|
|
app.should.be.an.instanceOf(Appointment);
|
2015-04-24 23:50:15 +00:00
|
|
|
app.physicianId.should.eql(physician.id);
|
|
|
|
app.patientId.should.eql(patient.id);
|
|
|
|
app.patientId.should.eql(patient.id);
|
2014-08-31 13:40:18 +00:00
|
|
|
app.date.getTime().should.equal(now);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to add connection with through data with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.create({name: 'ph1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(physician) {
|
|
|
|
return Patient.create({name: 'pa1'})
|
|
|
|
.then(function(patient) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const now = Date.now();
|
2018-06-12 07:13:32 +00:00
|
|
|
return physician.patients.add(patient, {date: new Date(now)})
|
|
|
|
.then(function(app) {
|
|
|
|
should.exist(app);
|
|
|
|
app.should.be.an.instanceOf(Appointment);
|
|
|
|
app.physicianId.should.eql(physician.id);
|
|
|
|
app.patientId.should.eql(patient.id);
|
|
|
|
app.patientId.should.eql(patient.id);
|
|
|
|
app.date.getTime().should.equal(now);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should allow to remove connection with instance', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2018-06-12 07:13:32 +00:00
|
|
|
Physician.create(function(err, physician) {
|
|
|
|
physician.patients.create({name: 'a'}, function(err, patient) {
|
|
|
|
id = patient.id;
|
|
|
|
physician.patients.remove(id, function(err, ch) {
|
|
|
|
verify(physician);
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
function verify(physician) {
|
|
|
|
physician.patients.exists(id, function(err, flag) {
|
|
|
|
if (err) return done(err);
|
|
|
|
flag.should.be.eql(false);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2014-07-15 15:50:34 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should allow to remove connection with instance with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let id;
|
2018-06-12 07:13:32 +00:00
|
|
|
Physician.create()
|
|
|
|
.then(function(physician) {
|
|
|
|
return physician.patients.create({name: 'a'})
|
|
|
|
.then(function(patient) {
|
|
|
|
id = patient.id;
|
|
|
|
return physician.patients.remove(id)
|
|
|
|
.then(function(ch) {
|
|
|
|
return verify(physician);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
function verify(physician) {
|
|
|
|
return physician.patients.exists(id)
|
|
|
|
.then(function(flag) {
|
|
|
|
flag.should.be.eql(false);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
beforeEach(function(done) {
|
|
|
|
Appointment.destroyAll(function(err) {
|
|
|
|
Physician.destroyAll(function(err) {
|
2014-07-15 15:50:34 +00:00
|
|
|
Patient.destroyAll(done);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2014-09-03 03:04:58 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany through - collect', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Physician, Patient, Appointment, Address;
|
|
|
|
let idPatient, idPhysician;
|
2014-09-03 03:04:58 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
beforeEach(function(done) {
|
2017-04-06 20:04:16 +00:00
|
|
|
idPatient = uid.fromConnector(db) || 1234;
|
|
|
|
idPhysician = uid.fromConnector(db) || 2345;
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician = db.define('Physician', {name: String});
|
|
|
|
Patient = db.define('Patient', {name: String});
|
|
|
|
Appointment = db.define('Appointment', {date: {type: Date,
|
2016-04-01 11:48:17 +00:00
|
|
|
default: function() {
|
2014-09-03 11:58:39 +00:00
|
|
|
return new Date();
|
2016-08-19 17:46:59 +00:00
|
|
|
}}});
|
|
|
|
Address = db.define('Address', {name: String});
|
2014-09-03 03:04:58 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Physician', 'Patient', 'Appointment', 'Address'], done);
|
2014-09-03 11:58:39 +00:00
|
|
|
});
|
2014-09-03 03:04:58 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('with default options', function() {
|
|
|
|
it('can determine the collect by modelTo\'s name as default', function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.hasMany(Patient, {through: Appointment});
|
|
|
|
Patient.hasMany(Physician, {through: Appointment, as: 'yyy'});
|
2014-09-03 11:58:39 +00:00
|
|
|
Patient.belongsTo(Address);
|
|
|
|
Appointment.belongsTo(Physician);
|
|
|
|
Appointment.belongsTo(Patient);
|
2018-12-07 16:13:48 +00:00
|
|
|
const physician = new Physician({id: idPhysician});
|
|
|
|
const scope1 = physician.patients._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope1.should.have.property('collect', 'patient');
|
|
|
|
scope1.should.have.property('include', 'patient');
|
2018-12-07 16:13:48 +00:00
|
|
|
const patient = new Patient({id: idPatient});
|
|
|
|
const scope2 = patient.yyy._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope2.should.have.property('collect', 'physician');
|
|
|
|
scope2.should.have.property('include', 'physician');
|
2014-09-03 03:04:58 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('when custom reverse belongsTo names for both sides', function() {
|
|
|
|
it('can determine the collect via keyThrough', function() {
|
2016-04-01 13:23:42 +00:00
|
|
|
Physician.hasMany(Patient, {
|
|
|
|
through: Appointment, foreignKey: 'fooId', keyThrough: 'barId',
|
|
|
|
});
|
|
|
|
Patient.hasMany(Physician, {
|
|
|
|
through: Appointment, foreignKey: 'barId', keyThrough: 'fooId', as: 'yyy',
|
|
|
|
});
|
2016-08-19 17:46:59 +00:00
|
|
|
Appointment.belongsTo(Physician, {as: 'foo'});
|
|
|
|
Appointment.belongsTo(Patient, {as: 'bar'});
|
2014-09-03 11:58:39 +00:00
|
|
|
Patient.belongsTo(Address); // jam.
|
2016-08-19 17:46:59 +00:00
|
|
|
Appointment.belongsTo(Patient, {as: 'car'}); // jam. Should we complain in this case???
|
2014-09-03 11:58:39 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const physician = new Physician({id: idPhysician});
|
|
|
|
const scope1 = physician.patients._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope1.should.have.property('collect', 'bar');
|
|
|
|
scope1.should.have.property('include', 'bar');
|
2018-12-07 16:13:48 +00:00
|
|
|
const patient = new Patient({id: idPatient});
|
|
|
|
const scope2 = patient.yyy._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope2.should.have.property('collect', 'foo');
|
|
|
|
scope2.should.have.property('include', 'foo');
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can determine the collect via modelTo name', function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.hasMany(Patient, {through: Appointment});
|
|
|
|
Patient.hasMany(Physician, {through: Appointment, as: 'yyy'});
|
|
|
|
Appointment.belongsTo(Physician, {as: 'foo', foreignKey: 'physicianId'});
|
|
|
|
Appointment.belongsTo(Patient, {as: 'bar', foreignKey: 'patientId'});
|
2014-09-03 11:58:39 +00:00
|
|
|
Patient.belongsTo(Address); // jam.
|
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const physician = new Physician({id: idPhysician});
|
|
|
|
const scope1 = physician.patients._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope1.should.have.property('collect', 'bar');
|
|
|
|
scope1.should.have.property('include', 'bar');
|
2018-12-07 16:13:48 +00:00
|
|
|
const patient = new Patient({id: idPatient});
|
|
|
|
const scope2 = patient.yyy._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope2.should.have.property('collect', 'foo');
|
|
|
|
scope2.should.have.property('include', 'foo');
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can determine the collect via modelTo name (with jams)', function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.hasMany(Patient, {through: Appointment});
|
|
|
|
Patient.hasMany(Physician, {through: Appointment, as: 'yyy'});
|
|
|
|
Appointment.belongsTo(Physician, {as: 'foo', foreignKey: 'physicianId'});
|
|
|
|
Appointment.belongsTo(Patient, {as: 'bar', foreignKey: 'patientId'});
|
2014-09-03 11:58:39 +00:00
|
|
|
Patient.belongsTo(Address); // jam.
|
2016-08-19 17:46:59 +00:00
|
|
|
Appointment.belongsTo(Physician, {as: 'goo', foreignKey: 'physicianId'}); // jam. Should we complain in this case???
|
|
|
|
Appointment.belongsTo(Patient, {as: 'car', foreignKey: 'patientId'}); // jam. Should we complain in this case???
|
2014-09-03 11:58:39 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const physician = new Physician({id: idPhysician});
|
|
|
|
const scope1 = physician.patients._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope1.should.have.property('collect', 'bar');
|
|
|
|
scope1.should.have.property('include', 'bar');
|
2018-12-07 16:13:48 +00:00
|
|
|
const patient = new Patient({id: idPatient});
|
|
|
|
const scope2 = patient.yyy._scope;
|
2014-09-03 13:51:21 +00:00
|
|
|
scope2.should.have.property('collect', 'foo'); // first matched relation
|
|
|
|
scope2.should.have.property('include', 'foo'); // first matched relation
|
2014-09-03 03:04:58 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('when custom reverse belongsTo name for one side only', function() {
|
|
|
|
beforeEach(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Physician.hasMany(Patient, {as: 'xxx', through: Appointment, foreignKey: 'fooId'});
|
|
|
|
Patient.hasMany(Physician, {as: 'yyy', through: Appointment, keyThrough: 'fooId'});
|
|
|
|
Appointment.belongsTo(Physician, {as: 'foo'});
|
2014-09-03 11:58:39 +00:00
|
|
|
Appointment.belongsTo(Patient);
|
|
|
|
Patient.belongsTo(Address); // jam.
|
2016-08-19 17:46:59 +00:00
|
|
|
Appointment.belongsTo(Physician, {as: 'bar'}); // jam. Should we complain in this case???
|
2014-09-03 03:04:58 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can determine the collect via model name', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const physician = new Physician({id: idPhysician});
|
|
|
|
const scope1 = physician.xxx._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope1.should.have.property('collect', 'patient');
|
|
|
|
scope1.should.have.property('include', 'patient');
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can determine the collect via keyThrough', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const patient = new Patient({id: idPatient});
|
|
|
|
const scope2 = patient.yyy._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope2.should.have.property('collect', 'foo');
|
|
|
|
scope2.should.have.property('include', 'foo');
|
2014-09-03 03:04:58 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-03-22 21:06:36 +00:00
|
|
|
describe('hasMany through - customized relation name and foreign key', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Physician, Patient, Appointment;
|
2017-03-22 21:06:36 +00:00
|
|
|
|
|
|
|
beforeEach(function(done) {
|
|
|
|
Physician = db.define('Physician', {name: String});
|
|
|
|
Patient = db.define('Patient', {name: String});
|
|
|
|
Appointment = db.define('Appointment', {date: {type: Date, defaultFn: 'now'}});
|
|
|
|
|
|
|
|
db.automigrate(['Physician', 'Patient', 'Appointment'], done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should use real target class', function() {
|
|
|
|
Physician.hasMany(Patient, {through: Appointment, as: 'xxx', foreignKey: 'aaaId', keyThrough: 'bbbId'});
|
|
|
|
Patient.hasMany(Physician, {through: Appointment, as: 'yyy', foreignKey: 'bbbId', keyThrough: 'aaaId'});
|
|
|
|
Appointment.belongsTo(Physician, {as: 'aaa', foreignKey: 'aaaId'});
|
|
|
|
Appointment.belongsTo(Patient, {as: 'bbb', foreignKey: 'bbbId'});
|
2018-12-07 16:13:48 +00:00
|
|
|
const physician = new Physician({id: 1});
|
2017-03-22 21:06:36 +00:00
|
|
|
physician.xxx.should.have.property('_targetClass', 'Patient');
|
2018-12-07 16:13:48 +00:00
|
|
|
const patient = new Patient({id: 1});
|
2017-03-22 21:06:36 +00:00
|
|
|
patient.yyy.should.have.property('_targetClass', 'Physician');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany through bi-directional relations on the same model', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let User, Follow, Address;
|
|
|
|
let idFollower, idFollowee;
|
2015-04-24 20:02:33 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2017-04-06 20:04:16 +00:00
|
|
|
idFollower = uid.fromConnector(db) || 3456;
|
|
|
|
idFollowee = uid.fromConnector(db) || 4567;
|
2016-08-19 17:46:59 +00:00
|
|
|
User = db.define('User', {name: String});
|
|
|
|
Follow = db.define('Follow', {date: {type: Date,
|
2016-04-01 11:48:17 +00:00
|
|
|
default: function() {
|
2015-04-24 20:02:33 +00:00
|
|
|
return new Date();
|
2016-08-19 17:46:59 +00:00
|
|
|
}}});
|
|
|
|
Address = db.define('Address', {name: String});
|
2015-04-24 20:02:33 +00:00
|
|
|
|
2016-04-01 13:23:42 +00:00
|
|
|
User.hasMany(User, {
|
|
|
|
as: 'followers', foreignKey: 'followeeId', keyThrough: 'followerId', through: Follow,
|
|
|
|
});
|
|
|
|
User.hasMany(User, {
|
|
|
|
as: 'following', foreignKey: 'followerId', keyThrough: 'followeeId', through: Follow,
|
|
|
|
});
|
2015-04-24 20:02:33 +00:00
|
|
|
User.belongsTo(Address);
|
2016-08-19 17:46:59 +00:00
|
|
|
Follow.belongsTo(User, {as: 'follower'});
|
|
|
|
Follow.belongsTo(User, {as: 'followee'});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['User', 'Follow'], done);
|
2015-04-24 20:02:33 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should set foreignKeys of through model correctly in first relation',
|
2016-04-01 11:48:17 +00:00
|
|
|
function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const follower = new User({id: idFollower});
|
|
|
|
const followee = new User({id: idFollowee});
|
2016-04-01 11:48:17 +00:00
|
|
|
followee.followers.add(follower, function(err, throughInst) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-04-24 20:02:33 +00:00
|
|
|
should.exist(throughInst);
|
2015-04-24 23:50:15 +00:00
|
|
|
throughInst.followerId.should.eql(follower.id);
|
|
|
|
throughInst.followeeId.should.eql(followee.id);
|
2015-04-24 20:02:33 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set foreignKeys of through model correctly in second relation',
|
2016-04-01 11:48:17 +00:00
|
|
|
function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const follower = new User({id: idFollower});
|
|
|
|
const followee = new User({id: idFollowee});
|
2016-04-01 11:48:17 +00:00
|
|
|
follower.following.add(followee, function(err, throughInst) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-04-24 20:02:33 +00:00
|
|
|
should.exist(throughInst);
|
2017-04-06 20:04:16 +00:00
|
|
|
throughInst.followeeId.toString().should.eql(followee.id.toString());
|
|
|
|
throughInst.followerId.toString().should.eql(follower.id.toString());
|
2015-04-24 20:02:33 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany through - between same models', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let User, Follow, Address;
|
|
|
|
let idFollower, idFollowee;
|
2014-09-03 03:29:32 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2017-04-06 20:04:16 +00:00
|
|
|
idFollower = uid.fromConnector(db) || 3456;
|
|
|
|
idFollowee = uid.fromConnector(db) || 4567;
|
2016-08-19 17:46:59 +00:00
|
|
|
User = db.define('User', {name: String});
|
|
|
|
Follow = db.define('Follow', {date: {type: Date,
|
2016-04-01 11:48:17 +00:00
|
|
|
default: function() {
|
2014-09-03 03:29:32 +00:00
|
|
|
return new Date();
|
2016-08-19 17:46:59 +00:00
|
|
|
}}});
|
|
|
|
Address = db.define('Address', {name: String});
|
2014-09-03 03:29:32 +00:00
|
|
|
|
2016-04-01 13:23:42 +00:00
|
|
|
User.hasMany(User, {
|
|
|
|
as: 'followers', foreignKey: 'followeeId', keyThrough: 'followerId', through: Follow,
|
|
|
|
});
|
|
|
|
User.hasMany(User, {
|
|
|
|
as: 'following', foreignKey: 'followerId', keyThrough: 'followeeId', through: Follow,
|
|
|
|
});
|
2014-09-03 03:29:32 +00:00
|
|
|
User.belongsTo(Address);
|
2016-08-19 17:46:59 +00:00
|
|
|
Follow.belongsTo(User, {as: 'follower'});
|
|
|
|
Follow.belongsTo(User, {as: 'followee'});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['User', 'Follow', 'Address'], done);
|
2014-09-03 03:29:32 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should set the keyThrough and the foreignKey', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const user = new User({id: idFollower});
|
|
|
|
const user2 = new User({id: idFollowee});
|
2016-04-01 11:48:17 +00:00
|
|
|
user.following.add(user2, function(err, f) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-16 23:36:51 +00:00
|
|
|
should.exist(f);
|
2015-04-24 23:50:15 +00:00
|
|
|
f.followeeId.should.eql(user2.id);
|
|
|
|
f.followerId.should.eql(user.id);
|
2015-02-16 23:36:51 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can determine the collect via keyThrough for each side', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const user = new User({id: idFollower});
|
|
|
|
const scope1 = user.followers._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope1.should.have.property('collect', 'follower');
|
|
|
|
scope1.should.have.property('include', 'follower');
|
2018-12-07 16:13:48 +00:00
|
|
|
const scope2 = user.following._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope2.should.have.property('collect', 'followee');
|
|
|
|
scope2.should.have.property('include', 'followee');
|
2014-09-03 03:29:32 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany with properties', function() {
|
2017-04-06 20:04:16 +00:00
|
|
|
before(function(done) {
|
|
|
|
Book = db.define('Book', {name: String, type: String});
|
|
|
|
Chapter = db.define('Chapter', {name: {type: String, index: true},
|
|
|
|
bookType: String});
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.hasMany(Chapter, {properties: {type: 'bookType'}});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Book', 'Chapter'], done);
|
2014-07-11 13:29:47 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.create({type: 'fiction'}, function(err, book) {
|
2016-04-01 11:48:17 +00:00
|
|
|
book.chapters.create(function(err, c) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-11 13:29:47 +00:00
|
|
|
should.exist(c);
|
2015-04-24 23:50:15 +00:00
|
|
|
c.bookId.should.eql(book.id);
|
2014-07-11 13:29:47 +00:00
|
|
|
c.bookType.should.equal('fiction');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.create({type: 'fiction'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(book) {
|
|
|
|
return book.chapters.create()
|
|
|
|
.then(function(c) {
|
|
|
|
should.exist(c);
|
|
|
|
c.bookId.should.eql(book.id);
|
|
|
|
c.bookType.should.equal('fiction');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2014-07-11 13:29:47 +00:00
|
|
|
});
|
2014-07-15 23:10:37 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany with scope and properties', function() {
|
|
|
|
it('can be declared with properties', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category = db.define('Category', {name: String, jobType: String});
|
|
|
|
Job = db.define('Job', {name: String, type: String});
|
2014-07-15 23:10:37 +00:00
|
|
|
|
2014-08-26 05:17:40 +00:00
|
|
|
Category.hasMany(Job, {
|
2015-01-26 18:09:29 +00:00
|
|
|
properties: function(inst, target) {
|
2014-08-26 05:17:40 +00:00
|
|
|
if (!inst.jobType) return; // skip
|
2016-08-19 17:46:59 +00:00
|
|
|
return {type: inst.jobType};
|
2014-07-11 13:29:47 +00:00
|
|
|
},
|
|
|
|
scope: function(inst, filter) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const m = this.properties(inst); // re-use properties
|
2016-08-19 17:46:59 +00:00
|
|
|
if (m) return {where: m};
|
2016-04-01 11:48:17 +00:00
|
|
|
},
|
2014-07-11 13:29:47 +00:00
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Category', 'Job'], done);
|
2014-07-11 13:29:47 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope', function(done) {
|
|
|
|
Category.create(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2016-08-19 17:46:59 +00:00
|
|
|
c.jobs.create({type: 'book'}, function(err, p) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2015-04-24 23:50:15 +00:00
|
|
|
p.categoryId.should.eql(c.id);
|
2014-07-11 13:29:47 +00:00
|
|
|
p.type.should.equal('book');
|
2016-08-19 17:46:59 +00:00
|
|
|
c.jobs.create({type: 'widget'}, function(err, p) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2015-04-24 23:50:15 +00:00
|
|
|
p.categoryId.should.eql(c.id);
|
2014-07-11 13:29:47 +00:00
|
|
|
p.type.should.equal('widget');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(c) {
|
|
|
|
return c.jobs.create({type: 'book'})
|
|
|
|
.then(function(p) {
|
|
|
|
p.categoryId.should.eql(c.id);
|
|
|
|
p.type.should.equal('book');
|
|
|
|
return c.jobs.create({type: 'widget'})
|
|
|
|
.then(function(p) {
|
|
|
|
p.categoryId.should.eql(c.id);
|
|
|
|
p.type.should.equal('widget');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find records on scope', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
c.jobs(function(err, jobs) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(2);
|
2014-07-11 13:29:47 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find records on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(c) {
|
|
|
|
return c.jobs.find();
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
|
|
|
jobs.should.have.length(2);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record on scope - filtered', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2016-08-19 17:46:59 +00:00
|
|
|
c.jobs({where: {type: 'book'}}, function(err, jobs) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(1);
|
|
|
|
jobs[0].type.should.equal('book');
|
2014-07-11 13:29:47 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record on scope with promises - filtered', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(c) {
|
|
|
|
return c.jobs.find({where: {type: 'book'}});
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
|
|
|
jobs.should.have.length(1);
|
|
|
|
jobs[0].type.should.equal('book');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2014-07-11 13:29:47 +00:00
|
|
|
// So why not just do the above? In LoopBack, the context
|
|
|
|
// that gets passed into a beforeRemote handler contains
|
|
|
|
// a reference to the parent scope/instance: ctx.instance
|
|
|
|
// in order to enforce a (dynamic scope) at runtime
|
|
|
|
// a temporary property can be set in the beforeRemoting
|
2014-07-11 22:02:16 +00:00
|
|
|
// handler. Optionally,properties dynamic properties can be declared.
|
2014-07-11 13:29:47 +00:00
|
|
|
//
|
|
|
|
// The code below simulates this.
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope - properties', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
c.jobType = 'tool'; // temporary
|
|
|
|
c.jobs.create(function(err, p) {
|
2015-04-24 23:50:15 +00:00
|
|
|
p.categoryId.should.eql(c.id);
|
2014-07-11 13:29:47 +00:00
|
|
|
p.type.should.equal('tool');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find records on scope', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
c.jobs(function(err, jobs) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(3);
|
2014-07-24 13:55:00 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record on scope - scoped', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
c.jobType = 'book'; // temporary, for scoping
|
|
|
|
c.jobs(function(err, jobs) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(1);
|
|
|
|
jobs[0].type.should.equal('book');
|
2014-07-11 13:29:47 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record on scope - scoped', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
c.jobType = 'tool'; // temporary, for scoping
|
|
|
|
c.jobs(function(err, jobs) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(1);
|
|
|
|
jobs[0].type.should.equal('tool');
|
2014-07-11 13:29:47 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-08-12 12:44:33 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find count of records on scope - scoped', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
c.jobType = 'tool'; // temporary, for scoping
|
|
|
|
c.jobs.count(function(err, count) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2014-08-12 12:44:33 +00:00
|
|
|
count.should.equal(1);
|
|
|
|
done();
|
2014-07-11 13:29:47 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should delete records on scope - scoped', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
|
|
|
should.not.exists(err);
|
|
|
|
c.jobType = 'tool'; // temporary, for scoping
|
|
|
|
c.jobs.destroyAll(function(err, result) {
|
|
|
|
done(err);
|
|
|
|
});
|
2014-07-24 13:55:00 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should find record on scope - verify', function(done) {
|
|
|
|
Category.findOne(function(err, c) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2018-06-12 07:13:32 +00:00
|
|
|
c.jobs(function(err, jobs) {
|
|
|
|
should.not.exists(err);
|
|
|
|
jobs.should.have.length(2);
|
|
|
|
done(err);
|
|
|
|
});
|
2014-07-24 13:55:00 +00:00
|
|
|
});
|
|
|
|
});
|
2014-07-11 13:29:47 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
describe('relations validation', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let validationError;
|
2017-04-01 09:13:22 +00:00
|
|
|
// define a mockup getRelationValidationMsg() method to log the validation error
|
2018-12-07 16:13:48 +00:00
|
|
|
const logRelationValidationError = function(code, rType, rName) {
|
2017-04-01 09:13:22 +00:00
|
|
|
validationError = {code, rType, rName};
|
|
|
|
};
|
|
|
|
|
|
|
|
it('rejects belongsTo relation if `model` is not provided', function() {
|
|
|
|
try {
|
2018-12-07 16:13:48 +00:00
|
|
|
const Picture = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
author: {
|
|
|
|
type: 'belongsTo',
|
|
|
|
foreignKey: 'authorId'},
|
|
|
|
}});
|
|
|
|
should.not.exist(Picture, 'relation validation should have thrown');
|
|
|
|
} catch (err) {
|
|
|
|
err.details.should.eql({
|
|
|
|
code: 'BELONGS_TO_MISSING_MODEL',
|
|
|
|
rType: 'belongsTo',
|
|
|
|
rName: 'author'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rejects polymorphic belongsTo relation if `model` is provided', function() {
|
|
|
|
try {
|
2018-12-07 16:13:48 +00:00
|
|
|
const Picture = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable: {
|
|
|
|
type: 'belongsTo',
|
|
|
|
model: 'Picture',
|
|
|
|
polymorphic: true},
|
|
|
|
}});
|
|
|
|
should.not.exist(Picture, 'relation validation should have thrown');
|
|
|
|
} catch (err) {
|
|
|
|
err.details.should.eql({
|
|
|
|
code: 'POLYMORPHIC_BELONGS_TO_MODEL',
|
|
|
|
rType: 'belongsTo',
|
|
|
|
rName: 'imageable'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rejects polymorphic non belongsTo relation if `model` is not provided', function() {
|
|
|
|
try {
|
2018-12-07 16:13:48 +00:00
|
|
|
const Article = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {
|
|
|
|
type: 'hasMany',
|
|
|
|
polymorphic: 'imageable'},
|
|
|
|
}});
|
|
|
|
should.not.exist(Picture, 'relation validation should have thrown');
|
|
|
|
} catch (err) {
|
|
|
|
err.details.should.eql({
|
|
|
|
code: 'POLYMORPHIC_NOT_BELONGS_TO_MISSING_MODEL',
|
|
|
|
rType: 'hasMany',
|
|
|
|
rName: 'pictures'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rejects polymorphic relation if `foreignKey` is provided but discriminator ' +
|
|
|
|
'is missing', function() {
|
|
|
|
try {
|
2018-12-07 16:13:48 +00:00
|
|
|
const Article = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {
|
|
|
|
type: 'hasMany',
|
|
|
|
model: 'Picture',
|
|
|
|
polymorphic: {foreignKey: 'imageableId'}},
|
|
|
|
}});
|
|
|
|
should.not.exist(Picture, 'relation validation should have thrown');
|
|
|
|
} catch (err) {
|
|
|
|
err.details.should.eql({
|
|
|
|
code: 'POLYMORPHIC_MISSING_DISCRIMINATOR',
|
|
|
|
rType: 'hasMany',
|
|
|
|
rName: 'pictures'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rejects polymorphic relation if `discriminator` is provided but foreignKey ' +
|
|
|
|
'is missing', function() {
|
|
|
|
try {
|
2018-12-07 16:13:48 +00:00
|
|
|
const Article = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {
|
|
|
|
type: 'hasMany',
|
|
|
|
model: 'Picture',
|
|
|
|
polymorphic: {discriminator: 'imageableType'}},
|
|
|
|
}});
|
|
|
|
should.not.exist(Picture, 'relation validation should have thrown');
|
|
|
|
} catch (err) {
|
|
|
|
err.details.should.eql({
|
|
|
|
code: 'POLYMORPHIC_MISSING_FOREIGN_KEY',
|
|
|
|
rType: 'hasMany',
|
|
|
|
rName: 'pictures'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rejects polymorphic relation if `polymorphic.as` is provided along ' +
|
|
|
|
'with custom foreignKey/discriminator', function() {
|
|
|
|
try {
|
2018-12-07 16:13:48 +00:00
|
|
|
const Article = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {
|
|
|
|
type: 'hasMany',
|
|
|
|
model: 'Picture',
|
|
|
|
polymorphic: {
|
|
|
|
as: 'image',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
}},
|
|
|
|
}});
|
|
|
|
should.not.exist(Picture, 'relation validation should have thrown');
|
|
|
|
} catch (err) {
|
|
|
|
err.details.should.eql({
|
|
|
|
code: 'POLYMORPHIC_EXTRANEOUS_AS',
|
|
|
|
rType: 'hasMany',
|
|
|
|
rName: 'pictures'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rejects polymorphic relation if `polymorphic.selector` is provided along ' +
|
|
|
|
'with custom foreignKey/discriminator', function() {
|
|
|
|
try {
|
2018-12-07 16:13:48 +00:00
|
|
|
const Article = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {
|
|
|
|
type: 'hasMany',
|
|
|
|
model: 'Picture',
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'image',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
}},
|
|
|
|
}});
|
|
|
|
should.not.exist(Picture, 'relation validation should have thrown');
|
|
|
|
} catch (err) {
|
|
|
|
err.details.should.eql({
|
|
|
|
code: 'POLYMORPHIC_EXTRANEOUS_SELECTOR',
|
|
|
|
rType: 'hasMany',
|
|
|
|
rName: 'pictures'});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('warns on use of deprecated `polymorphic.as` keyword in polymorphic relation', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let message = 'deprecation not reported';
|
2017-04-01 09:13:22 +00:00
|
|
|
process.once('deprecation', function(err) { message = err.message; });
|
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const Article = db.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {type: 'hasMany', model: 'Picture', polymorphic: {as: 'imageable'}},
|
|
|
|
}});
|
|
|
|
|
|
|
|
message.should.match(/keyword `polymorphic.as` which will be DEPRECATED in LoopBack.next/);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('polymorphic hasOne', function() {
|
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture = db.define('Picture', {name: String});
|
2017-04-01 09:13:22 +00:00
|
|
|
Article = db.define('Article', {name: String});
|
|
|
|
Employee = db.define('Employee', {name: String});
|
2014-07-26 13:20:46 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
db.automigrate(['Picture', 'Article', 'Employee'], done);
|
2014-07-26 13:20:46 +00:00
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('can be declared using default polymorphic selector', function(done) {
|
|
|
|
Article.hasOne(Picture, {as: 'packshot', polymorphic: 'imageable'});
|
|
|
|
Employee.hasOne(Picture, {as: 'mugshot', polymorphic: 'imageable'});
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture.belongsTo('imageable', {polymorphic: true});
|
2017-04-01 09:13:22 +00:00
|
|
|
|
|
|
|
Article.relations['packshot'].toJSON().should.eql({
|
|
|
|
name: 'packshot',
|
|
|
|
type: 'hasOne',
|
|
|
|
modelFrom: 'Article',
|
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Picture',
|
|
|
|
keyTo: 'imageableId',
|
|
|
|
multiple: false,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Picture.relations['imageable'].toJSON().should.eql({
|
|
|
|
name: 'imageable',
|
|
|
|
type: 'belongsTo',
|
|
|
|
modelFrom: 'Picture',
|
|
|
|
keyFrom: 'imageableId',
|
|
|
|
modelTo: '<polymorphic>',
|
|
|
|
keyTo: 'id',
|
|
|
|
multiple: false,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
db.automigrate(['Picture', 'Article', 'Employee'], done);
|
2014-07-26 13:20:46 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation - Article', function(done) {
|
|
|
|
Article.create({name: 'Article 1'}, function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article.packshot.create({name: 'Packshot'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(pic);
|
|
|
|
pic.imageableId.should.eql(article.id);
|
|
|
|
pic.imageableType.should.equal('Article');
|
2014-07-26 13:20:46 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation with promises - article', function(done) {
|
|
|
|
Article.create({name: 'Article 1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(article) {
|
|
|
|
return article.packshot.create({name: 'Packshot'})
|
|
|
|
.then(function(pic) {
|
|
|
|
should.exist(pic);
|
|
|
|
pic.imageableId.should.eql(article.id);
|
|
|
|
pic.imageableType.should.equal('Article');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create polymorphic relation - reader', function(done) {
|
2017-04-01 09:13:22 +00:00
|
|
|
Employee.create({name: 'Employee 1'}, function(err, employee) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee.mugshot.create({name: 'Mugshot'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(pic);
|
|
|
|
pic.imageableId.should.eql(employee.id);
|
|
|
|
pic.imageableType.should.equal('Employee');
|
2014-07-26 13:20:46 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic relation - article', function(done) {
|
|
|
|
Article.findOne(function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article.packshot(function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const packshot = article.packshot();
|
2017-04-01 09:13:22 +00:00
|
|
|
packshot.should.equal(pic);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
pic.name.should.equal('Packshot');
|
|
|
|
pic.imageableId.toString().should.eql(article.id.toString());
|
|
|
|
pic.imageableType.should.equal('Article');
|
2014-07-26 13:20:46 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic relation - employee', function(done) {
|
|
|
|
Employee.findOne(function(err, employee) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee.mugshot(function(err, mugshot) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
mugshot.name.should.equal('Mugshot');
|
|
|
|
mugshot.imageableId.toString().should.eql(employee.id.toString());
|
|
|
|
mugshot.imageableType.should.equal('Employee');
|
2014-07-26 13:20:46 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should include polymorphic relation - article', function(done) {
|
|
|
|
Article.findOne({include: 'packshot'}, function(err, article) {
|
2015-06-11 18:59:36 +00:00
|
|
|
should.not.exists(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const packshot = article.packshot();
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(packshot);
|
|
|
|
packshot.name.should.equal('Packshot');
|
2015-06-11 18:59:36 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic relation with promises - employee', function(done) {
|
|
|
|
Employee.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(employee) {
|
|
|
|
return employee.mugshot.get()
|
|
|
|
.then(function(pic) {
|
|
|
|
pic.name.should.equal('Mugshot');
|
|
|
|
pic.imageableId.toString().should.eql(employee.id.toString());
|
|
|
|
pic.imageableType.should.equal('Employee');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find inverse polymorphic relation - article', function(done) {
|
|
|
|
Picture.findOne({where: {name: 'Packshot'}}, function(err, pic) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pic.imageable(function(err, imageable) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Article);
|
|
|
|
imageable.name.should.equal('Article 1');
|
2014-07-26 13:20:46 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should include inverse polymorphic relation - article', function(done) {
|
|
|
|
Picture.findOne({where: {name: 'Packshot'}, include: 'imageable'},
|
|
|
|
function(err, pic) {
|
2015-06-11 18:59:36 +00:00
|
|
|
should.not.exists(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const imageable = pic.imageable();
|
2015-06-11 18:59:36 +00:00
|
|
|
should.exist(imageable);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Article);
|
|
|
|
imageable.name.should.equal('Article 1');
|
2015-06-11 18:59:36 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find inverse polymorphic relation - employee', function(done) {
|
|
|
|
Picture.findOne({where: {name: 'Mugshot'}}, function(err, pic) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pic.imageable(function(err, imageable) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Employee);
|
|
|
|
imageable.name.should.equal('Employee 1');
|
2014-07-26 13:20:46 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('polymorphic hasOne with non standard ids', function() {
|
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture = db.define('Picture', {name: String});
|
2017-04-01 09:13:22 +00:00
|
|
|
Article = db.define('Article', {
|
2016-08-19 17:46:59 +00:00
|
|
|
username: {type: String, id: true, generated: true},
|
2016-04-01 11:48:17 +00:00
|
|
|
name: String,
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2017-04-01 09:13:22 +00:00
|
|
|
Employee = db.define('Employee', {
|
2016-08-19 17:46:59 +00:00
|
|
|
username: {type: String, id: true, generated: true},
|
2016-04-01 11:48:17 +00:00
|
|
|
name: String,
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
db.automigrate(['Picture', 'Article', 'Employee'], done);
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('can be declared using custom foreignKey/discriminator', function(done) {
|
|
|
|
Article.hasOne(Picture, {
|
|
|
|
as: 'packshot',
|
2014-10-17 16:18:55 +00:00
|
|
|
polymorphic: {
|
|
|
|
foreignKey: 'oid',
|
2016-04-01 11:48:17 +00:00
|
|
|
discriminator: 'type',
|
|
|
|
},
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2017-04-01 09:13:22 +00:00
|
|
|
Employee.hasOne(Picture, {
|
2014-10-17 16:18:55 +00:00
|
|
|
as: 'mugshot',
|
|
|
|
polymorphic: {
|
|
|
|
foreignKey: 'oid',
|
2016-04-01 11:48:17 +00:00
|
|
|
discriminator: 'type',
|
|
|
|
},
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2017-04-01 09:13:22 +00:00
|
|
|
Picture.belongsTo('imageable', {
|
2014-10-17 16:18:55 +00:00
|
|
|
idName: 'username',
|
|
|
|
polymorphic: {
|
2017-04-01 09:13:22 +00:00
|
|
|
idType: Article.definition.properties.username.type,
|
|
|
|
foreignKey: 'oid',
|
|
|
|
discriminator: 'type',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Article.relations['packshot'].toJSON().should.eql({
|
|
|
|
name: 'packshot',
|
|
|
|
type: 'hasOne',
|
|
|
|
modelFrom: 'Article',
|
|
|
|
keyFrom: 'username',
|
|
|
|
modelTo: 'Picture',
|
|
|
|
keyTo: 'oid',
|
|
|
|
multiple: false,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'packshot',
|
2014-10-17 16:18:55 +00:00
|
|
|
foreignKey: 'oid',
|
2016-04-01 11:48:17 +00:00
|
|
|
discriminator: 'type',
|
|
|
|
},
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2017-04-01 09:13:22 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const imageableRel = Picture.relations['imageable'].toJSON();
|
2017-04-01 09:13:22 +00:00
|
|
|
|
|
|
|
// assert idType independantly
|
|
|
|
assert(typeof imageableRel.polymorphic.idType == 'function');
|
|
|
|
|
|
|
|
// backup idType and remove it temporarily from the relation
|
|
|
|
// object to ease the test
|
2018-12-07 16:13:48 +00:00
|
|
|
const idType = imageableRel.polymorphic.idType;
|
2017-04-01 09:13:22 +00:00
|
|
|
delete imageableRel.polymorphic.idType;
|
|
|
|
|
|
|
|
imageableRel.should.eql({
|
|
|
|
name: 'imageable',
|
|
|
|
type: 'belongsTo',
|
|
|
|
modelFrom: 'Picture',
|
|
|
|
keyFrom: 'oid',
|
|
|
|
modelTo: '<polymorphic>',
|
|
|
|
keyTo: 'username',
|
|
|
|
multiple: false,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'oid',
|
|
|
|
discriminator: 'type',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// restore idType for next tests
|
|
|
|
imageableRel.polymorphic.idType = idType;
|
|
|
|
|
|
|
|
db.automigrate(['Picture', 'Article', 'Employee'], done);
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation - article', function(done) {
|
|
|
|
Article.create({name: 'Article 1'}, function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article.packshot.create({name: 'Packshot'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(pic);
|
|
|
|
pic.oid.toString().should.equal(article.username.toString());
|
|
|
|
pic.type.should.equal('Article');
|
2014-10-17 16:18:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation with promises - article', function(done) {
|
|
|
|
Article.create({name: 'Article 1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(article) {
|
|
|
|
return article.packshot.create({name: 'Packshot'})
|
|
|
|
.then(function(pic) {
|
|
|
|
should.exist(pic);
|
|
|
|
pic.oid.toString().should.equal(article.username.toString());
|
|
|
|
pic.type.should.equal('Article');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation - employee', function(done) {
|
|
|
|
Employee.create({name: 'Employee 1'}, function(err, employee) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee.mugshot.create({name: 'Mugshot'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(pic);
|
|
|
|
pic.oid.toString().should.equal(employee.username.toString());
|
|
|
|
pic.type.should.equal('Employee');
|
2014-10-17 16:18:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic relation - article', function(done) {
|
|
|
|
Article.findOne(function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article.packshot(function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const packshot = article.packshot();
|
2017-04-01 09:13:22 +00:00
|
|
|
packshot.should.equal(pic);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
pic.name.should.equal('Packshot');
|
|
|
|
pic.oid.toString().should.equal(article.username.toString());
|
|
|
|
pic.type.should.equal('Article');
|
2014-10-17 16:18:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic relation - employee', function(done) {
|
|
|
|
Employee.findOne(function(err, employee) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee.mugshot(function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pic.name.should.equal('Mugshot');
|
|
|
|
pic.oid.toString().should.equal(employee.username.toString());
|
|
|
|
pic.type.should.equal('Employee');
|
2014-10-17 16:18:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find inverse polymorphic relation - article', function(done) {
|
|
|
|
Picture.findOne({where: {name: 'Packshot'}}, function(err, pic) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pic.imageable(function(err, imageable) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Article);
|
|
|
|
imageable.name.should.equal('Article 1');
|
2014-10-17 16:18:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find inverse polymorphic relation - employee', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture.findOne({where: {name: 'Mugshot'}}, function(err, p) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
p.imageable(function(err, imageable) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Employee);
|
|
|
|
imageable.name.should.equal('Employee 1');
|
2014-10-17 16:18:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should include polymorphic relation - employee', function(done) {
|
|
|
|
Employee.findOne({include: 'mugshot'},
|
|
|
|
function(err, employee) {
|
2015-06-11 18:59:36 +00:00
|
|
|
should.not.exists(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const mugshot = employee.mugshot();
|
2015-06-11 18:59:36 +00:00
|
|
|
should.exist(mugshot);
|
|
|
|
mugshot.name.should.equal('Mugshot');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should include inverse polymorphic relation - employee', function(done) {
|
|
|
|
Picture.findOne({where: {name: 'Mugshot'}, include: 'imageable'},
|
|
|
|
function(err, pic) {
|
2015-06-11 18:59:36 +00:00
|
|
|
should.not.exists(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const imageable = pic.imageable();
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(imageable);
|
|
|
|
imageable.should.be.instanceof(Employee);
|
|
|
|
imageable.name.should.equal('Employee 1');
|
2015-06-11 18:59:36 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('polymorphic hasMany', function() {
|
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture = db.define('Picture', {name: String});
|
2017-04-01 09:13:22 +00:00
|
|
|
Article = db.define('Article', {name: String});
|
|
|
|
Employee = db.define('Employee', {name: String});
|
2014-07-26 10:47:55 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
db.automigrate(['Picture', 'Article', 'Employee'], done);
|
2014-07-26 10:47:55 +00:00
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('can be declared with model JSON definition when related model is already attached', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const ds = new DataSource('memory');
|
2017-04-01 09:13:22 +00:00
|
|
|
|
|
|
|
// by defining Picture model before Article model we make sure Picture IS
|
|
|
|
// already attached when defining Article. This way, datasource.defineRelations
|
|
|
|
// WILL NOT use the async listener to call hasMany relation method
|
2018-12-07 16:13:48 +00:00
|
|
|
const Picture = ds.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable: {type: 'belongsTo', polymorphic: true},
|
|
|
|
}});
|
2018-12-07 16:13:48 +00:00
|
|
|
const Article = ds.define('Article', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {type: 'hasMany', model: 'Picture', polymorphic: 'imageable'},
|
|
|
|
}});
|
|
|
|
|
|
|
|
assert(Article.relations['pictures']);
|
|
|
|
assert.deepEqual(Article.relations['pictures'].toJSON(), {
|
|
|
|
name: 'pictures',
|
|
|
|
type: 'hasMany',
|
|
|
|
modelFrom: 'Article',
|
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Picture',
|
|
|
|
keyTo: 'imageableId',
|
|
|
|
multiple: true,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
assert(Picture.relations['imageable']);
|
|
|
|
assert.deepEqual(Picture.relations['imageable'].toJSON(), {
|
|
|
|
name: 'imageable',
|
|
|
|
type: 'belongsTo',
|
|
|
|
modelFrom: 'Picture',
|
|
|
|
keyFrom: 'imageableId',
|
|
|
|
modelTo: '<polymorphic>',
|
|
|
|
keyTo: 'id',
|
|
|
|
multiple: false,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can be declared with model JSON definition when related model is not yet attached', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const ds = new DataSource('memory');
|
2017-04-01 09:13:22 +00:00
|
|
|
|
|
|
|
// by defining Author model before Picture model we make sure Picture IS NOT
|
|
|
|
// already attached when defining Author. This way, datasource.defineRelations
|
|
|
|
// WILL use the async listener to call hasMany relation method
|
2018-12-07 16:13:48 +00:00
|
|
|
const Author = ds.define('Author', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures: {type: 'hasMany', model: 'Picture', polymorphic: 'imageable'},
|
|
|
|
}});
|
2018-12-07 16:13:48 +00:00
|
|
|
const Picture = ds.define('Picture', {name: String}, {relations: {
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable: {type: 'belongsTo', polymorphic: true},
|
|
|
|
}});
|
|
|
|
|
|
|
|
assert(Author.relations['pictures']);
|
|
|
|
assert.deepEqual(Author.relations['pictures'].toJSON(), {
|
|
|
|
name: 'pictures',
|
|
|
|
type: 'hasMany',
|
|
|
|
modelFrom: 'Author',
|
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Picture',
|
|
|
|
keyTo: 'imageableId',
|
|
|
|
multiple: true,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
assert(Picture.relations['imageable']);
|
|
|
|
assert.deepEqual(Picture.relations['imageable'].toJSON(), {
|
|
|
|
name: 'imageable',
|
|
|
|
type: 'belongsTo',
|
|
|
|
modelFrom: 'Picture',
|
|
|
|
keyFrom: 'imageableId',
|
|
|
|
modelTo: '<polymorphic>',
|
|
|
|
keyTo: 'id',
|
|
|
|
multiple: false,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'imageableId',
|
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can be declared using default polymorphic selector', function(done) {
|
|
|
|
Article.hasMany(Picture, {polymorphic: 'imageable'});
|
|
|
|
Employee.hasMany(Picture, {polymorphic: { // alt syntax
|
|
|
|
foreignKey: 'imageableId',
|
2016-04-01 11:48:17 +00:00
|
|
|
discriminator: 'imageableType',
|
|
|
|
}});
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture.belongsTo('imageable', {polymorphic: true});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
Article.relations['pictures'].toJSON().should.eql({
|
2014-08-16 08:23:32 +00:00
|
|
|
name: 'pictures',
|
|
|
|
type: 'hasMany',
|
2017-04-01 09:13:22 +00:00
|
|
|
modelFrom: 'Article',
|
2014-08-16 08:23:32 +00:00
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Picture',
|
|
|
|
keyTo: 'imageableId',
|
|
|
|
multiple: true,
|
2015-02-03 10:37:43 +00:00
|
|
|
polymorphic: {
|
2017-04-01 09:13:22 +00:00
|
|
|
selector: 'imageable',
|
2014-08-16 08:23:32 +00:00
|
|
|
foreignKey: 'imageableId',
|
2016-04-01 11:48:17 +00:00
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
2014-08-16 08:23:32 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-16 08:23:32 +00:00
|
|
|
Picture.relations['imageable'].toJSON().should.eql({
|
|
|
|
name: 'imageable',
|
|
|
|
type: 'belongsTo',
|
|
|
|
modelFrom: 'Picture',
|
|
|
|
keyFrom: 'imageableId',
|
|
|
|
modelTo: '<polymorphic>',
|
|
|
|
keyTo: 'id',
|
|
|
|
multiple: false,
|
2015-02-03 10:37:43 +00:00
|
|
|
polymorphic: {
|
2017-04-01 09:13:22 +00:00
|
|
|
selector: 'imageable',
|
2014-08-16 08:23:32 +00:00
|
|
|
foreignKey: 'imageableId',
|
2016-04-01 11:48:17 +00:00
|
|
|
discriminator: 'imageableType',
|
|
|
|
},
|
2014-08-16 08:23:32 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
db.automigrate(['Picture', 'Article', 'Employee'], done);
|
2014-07-26 10:47:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation - article', function(done) {
|
|
|
|
Article.create({name: 'Article 1'}, function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article.pictures.create({name: 'Article Pic'}, function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(pics);
|
|
|
|
pics.imageableId.should.eql(article.id);
|
|
|
|
pics.imageableType.should.equal('Article');
|
2014-07-26 10:47:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation - employee', function(done) {
|
|
|
|
Employee.create({name: 'Employee 1'}, function(err, employee) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee.pictures.create({name: 'Employee Pic'}, function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
should.exist(pics);
|
|
|
|
pics.imageableId.should.eql(employee.id);
|
|
|
|
pics.imageableType.should.equal('Employee');
|
2014-07-26 10:47:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic items - article', function(done) {
|
|
|
|
Article.findOne(function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
if (!article) return done();
|
|
|
|
article.pictures(function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const pictures = article.pictures();
|
2014-09-04 19:29:21 +00:00
|
|
|
pictures.should.eql(pics);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-26 10:47:55 +00:00
|
|
|
pics.should.have.length(1);
|
2017-04-01 09:13:22 +00:00
|
|
|
pics[0].name.should.equal('Article Pic');
|
2014-07-26 10:47:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic items - employee', function(done) {
|
|
|
|
Employee.findOne(function(err, employee) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee.pictures(function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-26 10:47:55 +00:00
|
|
|
pics.should.have.length(1);
|
2017-04-01 09:13:22 +00:00
|
|
|
pics[0].name.should.equal('Employee Pic');
|
2014-07-26 10:47:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find the inverse of polymorphic relation - article', function(done) {
|
|
|
|
Picture.findOne({where: {name: 'Article Pic'}}, function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pics.imageableType.should.equal('Article');
|
|
|
|
pics.imageable(function(err, imageable) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Article);
|
|
|
|
imageable.name.should.equal('Article 1');
|
2014-07-26 10:47:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find the inverse of polymorphic relation - employee', function(done) {
|
|
|
|
Picture.findOne({where: {name: 'Employee Pic'}}, function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pics.imageableType.should.equal('Employee');
|
|
|
|
pics.imageable(function(err, imageable) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Employee);
|
|
|
|
imageable.name.should.equal('Employee 1');
|
2014-07-26 10:47:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should include the inverse of polymorphic relation', function(done) {
|
|
|
|
Picture.find({include: 'imageable'}, function(err, pics) {
|
|
|
|
if (err) return done(err);
|
|
|
|
pics.should.have.length(2);
|
2017-04-06 20:04:16 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
const actual = pics.map(
|
|
|
|
function(pic) {
|
|
|
|
return {imageName: pic.name, name: pic.imageable().name};
|
2018-07-16 06:46:25 +00:00
|
|
|
}
|
|
|
|
);
|
2017-04-06 20:04:16 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
actual.should.containDeep([
|
|
|
|
{name: 'Article 1', imageName: 'Article Pic'},
|
|
|
|
{name: 'Employee 1', imageName: 'Employee Pic'},
|
|
|
|
]);
|
2017-04-06 20:04:16 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
done();
|
|
|
|
});
|
2017-04-06 20:04:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
bdd.itIf(connectorCapabilities.adhocSort === false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should include the inverse of polymorphic relation w/o adhocSort', function(done) {
|
|
|
|
Picture.find({include: 'imageable'}, function(err, pics) {
|
|
|
|
if (err) return done(err);
|
|
|
|
pics.should.have.length(2);
|
2018-12-07 16:13:48 +00:00
|
|
|
const names = ['Article Pic', 'Employee Pic'];
|
|
|
|
const imageables = ['Article 1', 'Employee 1'];
|
2018-06-12 07:13:32 +00:00
|
|
|
names.should.containEql(pics[0].name);
|
|
|
|
names.should.containEql(pics[1].name);
|
|
|
|
imageables.should.containEql(pics[0].imageable().name);
|
|
|
|
imageables.should.containEql(pics[1].imageable().name);
|
|
|
|
done();
|
|
|
|
});
|
2014-07-26 10:47:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-26 10:47:55 +00:00
|
|
|
it('should assign a polymorphic relation', function(done) {
|
2017-04-01 09:13:22 +00:00
|
|
|
Article.create({name: 'Article 2'}, function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Picture({name: 'Sample'});
|
2017-04-01 09:13:22 +00:00
|
|
|
p.imageable(article); // assign
|
|
|
|
p.imageableId.should.eql(article.id);
|
|
|
|
p.imageableType.should.equal('Article');
|
2014-07-26 10:47:55 +00:00
|
|
|
p.save(done);
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic items - article', function(done) {
|
|
|
|
Article.findOne({where: {name: 'Article 2'}}, function(err, article) {
|
2015-02-21 05:14:48 +00:00
|
|
|
should.not.exists(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article.pictures(function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-26 10:47:55 +00:00
|
|
|
pics.should.have.length(1);
|
|
|
|
pics[0].name.should.equal('Sample');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find the inverse of polymorphic relation - article', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture.findOne({where: {name: 'Sample'}}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
p.imageableType.should.equal('Article');
|
2014-07-26 10:47:55 +00:00
|
|
|
p.imageable(function(err, imageable) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Article);
|
|
|
|
imageable.name.should.equal('Article 2');
|
2014-07-26 10:47:55 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should include the inverse of polymorphic relation - article',
|
2016-04-01 11:48:17 +00:00
|
|
|
function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture.findOne({where: {name: 'Sample'}, include: 'imageable'},
|
2016-04-01 11:48:17 +00:00
|
|
|
function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const imageable = p.imageable();
|
2015-06-11 18:59:36 +00:00
|
|
|
should.exist(imageable);
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Article);
|
|
|
|
imageable.name.should.equal('Article 2');
|
2015-06-11 18:59:36 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2017-04-01 09:13:22 +00:00
|
|
|
|
|
|
|
it('can be declared using custom foreignKey/discriminator', function(done) {
|
|
|
|
Article.hasMany(Picture, {polymorphic: {
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
}});
|
|
|
|
Employee.hasMany(Picture, {polymorphic: { // alt syntax
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
}});
|
|
|
|
Picture.belongsTo('imageable', {polymorphic: {
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
}});
|
|
|
|
|
|
|
|
Article.relations['pictures'].toJSON().should.eql({
|
|
|
|
name: 'pictures',
|
|
|
|
type: 'hasMany',
|
|
|
|
modelFrom: 'Article',
|
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Picture',
|
|
|
|
keyTo: 'imageId',
|
|
|
|
multiple: true,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'pictures',
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Picture.relations['imageable'].toJSON().should.eql({
|
|
|
|
name: 'imageable',
|
|
|
|
type: 'belongsTo',
|
|
|
|
modelFrom: 'Picture',
|
|
|
|
keyFrom: 'imageId',
|
|
|
|
modelTo: '<polymorphic>',
|
|
|
|
keyTo: 'id',
|
|
|
|
multiple: false,
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'imageable',
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
db.automigrate(['Picture', 'Article', 'Employee'], done);
|
|
|
|
});
|
2014-07-26 10:47:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('polymorphic hasAndBelongsToMany through', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let idArticle, idEmployee;
|
2017-04-06 20:04:16 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2017-04-01 09:13:22 +00:00
|
|
|
idArticle = uid.fromConnector(db) || 3456;
|
|
|
|
idEmployee = uid.fromConnector(db) || 4567;
|
2016-08-19 17:46:59 +00:00
|
|
|
Picture = db.define('Picture', {name: String});
|
2017-04-01 09:13:22 +00:00
|
|
|
Article = db.define('Article', {name: String});
|
|
|
|
Employee = db.define('Employee', {name: String});
|
2014-07-26 12:54:54 +00:00
|
|
|
PictureLink = db.define('PictureLink', {});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
db.automigrate(['Picture', 'Article', 'Employee', 'PictureLink'], done);
|
2014-07-26 12:54:54 +00:00
|
|
|
});
|
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('can be declared using default polymorphic selector', function(done) {
|
|
|
|
Article.hasAndBelongsToMany(Picture, {through: PictureLink, polymorphic: 'imageable'});
|
|
|
|
Employee.hasAndBelongsToMany(Picture, {through: PictureLink, polymorphic: 'imageable'});
|
2014-07-26 19:32:24 +00:00
|
|
|
// Optionally, define inverse relations:
|
2017-04-01 09:13:22 +00:00
|
|
|
Picture.hasMany(Article, {through: PictureLink, polymorphic: 'imageable', invert: true});
|
|
|
|
Picture.hasMany(Employee, {through: PictureLink, polymorphic: 'imageable', invert: true});
|
|
|
|
db.automigrate(['Picture', 'Article', 'Employee', 'PictureLink'], done);
|
2014-07-26 12:54:54 +00:00
|
|
|
});
|
2014-07-28 21:22:45 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can determine the collect via modelTo name', function() {
|
2017-04-01 09:13:22 +00:00
|
|
|
Article.hasAndBelongsToMany(Picture, {through: PictureLink, polymorphic: 'imageable'});
|
|
|
|
Employee.hasAndBelongsToMany(Picture, {through: PictureLink, polymorphic: 'imageable'});
|
2014-09-03 11:58:39 +00:00
|
|
|
// Optionally, define inverse relations:
|
2017-04-01 09:13:22 +00:00
|
|
|
Picture.hasMany(Article, {through: PictureLink, polymorphic: 'imageable', invert: true});
|
|
|
|
Picture.hasMany(Employee, {through: PictureLink, polymorphic: 'imageable', invert: true});
|
2018-12-07 16:13:48 +00:00
|
|
|
const article = new Article({id: idArticle});
|
|
|
|
const scope1 = article.pictures._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope1.should.have.property('collect', 'picture');
|
|
|
|
scope1.should.have.property('include', 'picture');
|
2018-12-07 16:13:48 +00:00
|
|
|
const employee = new Employee({id: idEmployee});
|
|
|
|
const scope2 = employee.pictures._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope2.should.have.property('collect', 'picture');
|
|
|
|
scope2.should.have.property('include', 'picture');
|
2018-12-07 16:13:48 +00:00
|
|
|
const picture = new Picture({id: idArticle});
|
|
|
|
const scope3 = picture.articles._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope3.should.have.property('collect', 'imageable');
|
|
|
|
scope3.should.have.property('include', 'imageable');
|
2018-12-07 16:13:48 +00:00
|
|
|
const scope4 = picture.employees._scope;
|
2014-09-03 11:58:39 +00:00
|
|
|
scope4.should.have.property('collect', 'imageable');
|
|
|
|
scope4.should.have.property('include', 'imageable');
|
|
|
|
});
|
|
|
|
|
2018-12-07 15:22:36 +00:00
|
|
|
let article, employee;
|
|
|
|
const pictures = [];
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation - article', function(done) {
|
|
|
|
Article.create({name: 'Article 1'}, function(err, a) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article = a;
|
|
|
|
article.pictures.create({name: 'Article Pic 1'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures.push(pic);
|
|
|
|
article.pictures.create({name: 'Article Pic 2'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures.push(pic);
|
2014-07-26 12:54:54 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic relation - employee', function(done) {
|
|
|
|
Employee.create({name: 'Employee 1'}, function(err, r) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee = r;
|
|
|
|
employee.pictures.create({name: 'Employee Pic 1'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures.push(pic);
|
2014-07-26 12:54:54 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create polymorphic through model', function(done) {
|
2014-07-26 12:54:54 +00:00
|
|
|
PictureLink.findOne(function(err, link) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
link.pictureId.should.eql(pictures[0].id);
|
2017-04-01 09:13:22 +00:00
|
|
|
link.imageableId.should.eql(article.id);
|
|
|
|
link.imageableType.should.equal('Article');
|
2017-04-06 20:04:16 +00:00
|
|
|
link.imageable(function(err, imageable) {
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.should.be.instanceof(Article);
|
|
|
|
imageable.id.should.eql(article.id);
|
2017-04-06 20:04:16 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const picIds = pictures.map(pic => pic.id.toString());
|
|
|
|
picIds.should.containEql(link.pictureId.toString());
|
2017-04-01 09:13:22 +00:00
|
|
|
link.imageableType.should.be.oneOf('Article', 'Employee');
|
2017-04-06 20:04:16 +00:00
|
|
|
link.imageable(function(err, imageable) {
|
2017-04-01 09:13:22 +00:00
|
|
|
imageable.id.should.be.oneOf(article.id, employee.id);
|
2017-04-06 20:04:16 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}
|
2014-07-26 12:54:54 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should get polymorphic relation through model - article', function(done) {
|
|
|
|
if (!article) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article.name.should.equal('Article 1');
|
|
|
|
article.pictures(function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-26 12:54:54 +00:00
|
|
|
pics.should.have.length(2);
|
2017-04-06 20:04:16 +00:00
|
|
|
const names = pics.map(p => p.name);
|
2017-04-01 09:13:22 +00:00
|
|
|
const expected = ['Article Pic 1', 'Article Pic 2'];
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
names.should.eql(expected);
|
|
|
|
} else {
|
|
|
|
names.should.containDeep(expected);
|
|
|
|
}
|
2014-07-26 12:54:54 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should get polymorphic relation through model - employee', function(done) {
|
|
|
|
Employee.findById(employee.id, function(err, employee) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
employee.name.should.equal('Employee 1');
|
|
|
|
employee.pictures(function(err, pics) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-26 12:54:54 +00:00
|
|
|
pics.should.have.length(1);
|
2017-04-01 09:13:22 +00:00
|
|
|
pics[0].name.should.equal('Employee Pic 1');
|
2014-07-26 12:54:54 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should include polymorphic items', function(done) {
|
2017-04-01 09:13:22 +00:00
|
|
|
Article.find({include: 'pictures'}, function(err, articles) {
|
|
|
|
articles.should.have.length(1);
|
|
|
|
if (!articles) return done();
|
|
|
|
articles[0].pictures(function(err, pics) {
|
2014-07-26 19:11:25 +00:00
|
|
|
pics.should.have.length(2);
|
2017-04-06 20:04:16 +00:00
|
|
|
const names = pics.map(p => p.name);
|
2017-04-01 09:13:22 +00:00
|
|
|
const expected = ['Article Pic 1', 'Article Pic 2'];
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
names.should.eql(expected);
|
|
|
|
} else {
|
|
|
|
names.should.containDeep(expected);
|
|
|
|
}
|
2014-07-26 15:20:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-07-28 21:22:45 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let anotherPicture;
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should add to a polymorphic relation - article', function(done) {
|
|
|
|
if (!article) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
|
|
|
Picture.create({name: 'Example'}, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
pictures.push(pic);
|
|
|
|
anotherPicture = pic;
|
|
|
|
article.pictures.add(pic, function(err, link) {
|
2014-07-26 15:20:25 +00:00
|
|
|
link.should.be.instanceof(PictureLink);
|
2017-04-01 09:13:22 +00:00
|
|
|
link.pictureId.should.eql(pic.id);
|
|
|
|
link.imageableId.should.eql(article.id);
|
|
|
|
link.imageableType.should.equal('Article');
|
2014-07-26 15:20:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create polymorphic through model', function(done) {
|
2016-09-27 00:27:33 +00:00
|
|
|
if (!anotherPicture) return done();
|
2017-04-01 09:13:22 +00:00
|
|
|
PictureLink.findOne({where: {pictureId: anotherPicture.id, imageableType: 'Article'}},
|
2018-06-12 07:13:32 +00:00
|
|
|
function(err, link) {
|
|
|
|
if (err) return done(err);
|
|
|
|
link.pictureId.toString().should.eql(anotherPicture.id.toString());
|
|
|
|
link.imageableId.toString().should.eql(article.id.toString());
|
|
|
|
link.imageableType.should.equal('Article');
|
|
|
|
done();
|
|
|
|
});
|
2014-07-26 15:20:25 +00:00
|
|
|
});
|
2014-07-28 21:22:45 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let anotherArticle, anotherEmployee;
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should add to a polymorphic relation - article', function(done) {
|
|
|
|
Article.create({name: 'Article 2'}, function(err, article) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
anotherArticle = article;
|
2016-09-27 00:27:33 +00:00
|
|
|
if (!anotherPicture) return done();
|
2017-04-01 09:13:22 +00:00
|
|
|
article.pictures.add(anotherPicture.id, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-26 19:11:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should add to a polymorphic relation - article', function(done) {
|
|
|
|
Employee.create({name: 'Employee 2'}, function(err, reader) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
anotherEmployee = reader;
|
2016-09-27 00:27:33 +00:00
|
|
|
if (!anotherPicture) return done();
|
2017-04-01 09:13:22 +00:00
|
|
|
reader.pictures.add(anotherPicture.id, function(err, pic) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-26 19:11:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should get the inverse polymorphic relation - article', function(done) {
|
2016-09-27 00:27:33 +00:00
|
|
|
if (!anotherPicture) return done();
|
2017-04-01 09:13:22 +00:00
|
|
|
Picture.findById(anotherPicture.id, function(err, pic) {
|
|
|
|
pic.articles(function(err, articles) {
|
|
|
|
articles.should.have.length(2);
|
|
|
|
const names = articles.map(pic => pic.name);
|
|
|
|
const expected = ['Article 1', 'Article 2'];
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
names.should.eql(expected);
|
|
|
|
} else {
|
|
|
|
names.should.containDeep(expected);
|
|
|
|
}
|
2014-07-26 19:11:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should get the inverse polymorphic relation - reader', function(done) {
|
2016-09-27 00:27:33 +00:00
|
|
|
if (!anotherPicture) return done();
|
2017-04-01 09:13:22 +00:00
|
|
|
Picture.findById(anotherPicture.id, function(err, pic) {
|
|
|
|
pic.employees(function(err, employees) {
|
|
|
|
employees.should.have.length(1);
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
2017-04-01 09:13:22 +00:00
|
|
|
employees[0].name.should.equal('Employee 2');
|
2017-04-06 20:04:16 +00:00
|
|
|
} else {
|
2018-12-07 16:13:48 +00:00
|
|
|
const employeeNames = ['Employee 1', 'Employee 2'];
|
2017-04-01 09:13:22 +00:00
|
|
|
employees[0].name.should.be.oneOf(employeeNames);
|
2017-04-06 20:04:16 +00:00
|
|
|
}
|
2014-07-26 19:11:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic items - article', function(done) {
|
|
|
|
if (!article) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
|
|
|
article.pictures(function(err, pics) {
|
2014-07-26 19:11:25 +00:00
|
|
|
pics.should.have.length(3);
|
2017-04-01 09:13:22 +00:00
|
|
|
const names = pics.map(pic => pic.name);
|
|
|
|
const expected = ['Article Pic 1', 'Article Pic 2', 'Example'];
|
2017-04-06 20:04:16 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
names.should.eql(expected);
|
|
|
|
} else {
|
|
|
|
names.should.containDeep(expected);
|
|
|
|
}
|
2014-07-26 19:11:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should check if polymorphic relation exists - article', function(done) {
|
|
|
|
if (!article) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
|
|
|
article.pictures.exists(anotherPicture.id, function(err, exists) {
|
2014-07-26 15:20:25 +00:00
|
|
|
exists.should.be.true;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should remove from a polymorphic relation - article', function(done) {
|
|
|
|
if (!article || !anotherPicture) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
|
|
|
article.pictures.remove(anotherPicture.id, function(err) {
|
|
|
|
if (err) return done(err);
|
|
|
|
done();
|
|
|
|
});
|
2014-07-26 15:20:25 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-07-11 18:56:39 +00:00
|
|
|
bdd.itIf(connectorCapabilities.cloudantCompatible !== false,
|
|
|
|
'should find polymorphic items - article', function(done) {
|
|
|
|
if (!article) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
|
|
|
article.pictures(function(err, pics) {
|
|
|
|
// If deleteWithOtherThanId is not implemented, the above test is skipped and
|
|
|
|
// the remove did not take place. Thus +1.
|
2018-12-07 16:13:48 +00:00
|
|
|
const expectedLength = connectorCapabilities.deleteWithOtherThanId !== false ?
|
2018-06-12 07:13:32 +00:00
|
|
|
2 : 3;
|
2017-07-11 18:56:39 +00:00
|
|
|
pics.should.have.length(expectedLength);
|
2017-04-06 20:04:16 +00:00
|
|
|
|
2017-07-11 18:56:39 +00:00
|
|
|
const names = pics.map(p => p.name);
|
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
names.should.eql(['Article Pic 1', 'Article Pic 2']);
|
|
|
|
} else {
|
|
|
|
names.should.containDeep(['Article Pic 1', 'Article Pic 2', 'Example']);
|
|
|
|
}
|
|
|
|
done();
|
|
|
|
});
|
2014-07-26 19:11:25 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should check if polymorphic relation exists - article', function(done) {
|
|
|
|
if (!article) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
|
|
|
article.pictures.exists(7, function(err, exists) {
|
2014-07-26 15:20:25 +00:00
|
|
|
exists.should.be.false;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create polymorphic item through relation scope', function(done) {
|
2016-09-27 00:27:33 +00:00
|
|
|
if (!anotherPicture) return done();
|
2017-04-01 09:13:22 +00:00
|
|
|
Picture.findById(anotherPicture.id, function(err, pic) {
|
|
|
|
pic.articles.create({name: 'Article 3'}, function(err, prd) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-01 09:13:22 +00:00
|
|
|
article = prd;
|
|
|
|
should.equal(article.name, 'Article 3');
|
2014-08-15 10:55:10 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should create polymorphic through model - new article', function(done) {
|
|
|
|
if (!article || !anotherPicture) return done();
|
2016-08-19 17:46:59 +00:00
|
|
|
PictureLink.findOne({where: {
|
2017-04-01 09:13:22 +00:00
|
|
|
pictureId: anotherPicture.id, imageableId: article.id, imageableType: 'Article',
|
2016-04-01 11:48:17 +00:00
|
|
|
}}, function(err, link) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
|
|
|
link.pictureId.toString().should.eql(anotherPicture.id.toString());
|
2017-04-01 09:13:22 +00:00
|
|
|
link.imageableId.toString().should.eql(article.id.toString());
|
|
|
|
link.imageableType.should.equal('Article');
|
2014-08-15 10:55:10 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-01 09:13:22 +00:00
|
|
|
it('should find polymorphic items - new article', function(done) {
|
|
|
|
if (!article) return done();
|
|
|
|
Article.findById(article.id, function(err, article) {
|
|
|
|
article.pictures(function(err, pics) {
|
2014-08-15 10:55:10 +00:00
|
|
|
pics.should.have.length(1);
|
|
|
|
pics[0].id.should.eql(anotherPicture.id);
|
|
|
|
pics[0].name.should.equal('Example');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-04-05 16:42:21 +00:00
|
|
|
|
|
|
|
it('should use author_pictures as modelThrough', function(done) {
|
2017-04-01 09:13:22 +00:00
|
|
|
Article.hasAndBelongsToMany(Picture, {throughTable: 'article_pictures'});
|
|
|
|
Article.relations['pictures'].toJSON().should.eql({
|
2017-04-05 16:42:21 +00:00
|
|
|
name: 'pictures',
|
|
|
|
type: 'hasMany',
|
2017-04-01 09:13:22 +00:00
|
|
|
modelFrom: 'Article',
|
2017-04-05 16:42:21 +00:00
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Picture',
|
2017-04-01 09:13:22 +00:00
|
|
|
keyTo: 'articleId',
|
2017-04-05 16:42:21 +00:00
|
|
|
multiple: true,
|
2017-04-01 09:13:22 +00:00
|
|
|
modelThrough: 'article_pictures',
|
2017-04-05 16:42:21 +00:00
|
|
|
keyThrough: 'pictureId',
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
});
|
2017-04-01 09:13:22 +00:00
|
|
|
|
|
|
|
it('can be declared using custom foreignKey/discriminator', function(done) {
|
|
|
|
Article.hasAndBelongsToMany(Picture, {through: PictureLink, polymorphic: {
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
}});
|
|
|
|
Employee.hasAndBelongsToMany(Picture, {through: PictureLink, polymorphic: {
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
}});
|
|
|
|
// Optionally, define inverse relations:
|
|
|
|
Picture.hasMany(Article, {through: PictureLink, polymorphic: {
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
}, invert: true});
|
|
|
|
Picture.hasMany(Employee, {through: PictureLink, polymorphic: {
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
}, invert: true});
|
|
|
|
|
|
|
|
Article.relations['pictures'].toJSON().should.eql({
|
|
|
|
name: 'pictures',
|
|
|
|
type: 'hasMany',
|
|
|
|
modelFrom: 'Article',
|
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Picture',
|
|
|
|
keyTo: 'imageId',
|
|
|
|
multiple: true,
|
|
|
|
modelThrough: 'PictureLink',
|
|
|
|
keyThrough: 'pictureId',
|
|
|
|
polymorphic: {
|
|
|
|
selector: 'pictures',
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Picture.relations['articles'].toJSON().should.eql({
|
|
|
|
name: 'articles',
|
|
|
|
type: 'hasMany',
|
|
|
|
modelFrom: 'Picture',
|
|
|
|
keyFrom: 'id',
|
|
|
|
modelTo: 'Article',
|
|
|
|
keyTo: 'pictureId',
|
|
|
|
multiple: true,
|
|
|
|
modelThrough: 'PictureLink',
|
|
|
|
keyThrough: 'imageId',
|
|
|
|
polymorphic: {
|
|
|
|
foreignKey: 'imageId',
|
|
|
|
discriminator: 'imageType',
|
|
|
|
selector: 'articles',
|
|
|
|
invert: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
db.automigrate(['Picture', 'Article', 'Employee', 'PictureLink'], done);
|
|
|
|
});
|
2014-07-26 12:54:54 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('belongsTo', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let List, Item, Fear, Mind;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let listId, itemId;
|
2014-01-24 17:09:53 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared in different ways', function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
List = db.define('List', {name: String});
|
|
|
|
Item = db.define('Item', {name: String});
|
2014-01-24 17:09:53 +00:00
|
|
|
Fear = db.define('Fear');
|
|
|
|
Mind = db.define('Mind');
|
|
|
|
|
|
|
|
// syntax 1 (old)
|
|
|
|
Item.belongsTo(List);
|
2015-02-03 10:37:43 +00:00
|
|
|
Object.keys((new Item).toObject()).should.containEql('listId');
|
2014-01-24 17:09:53 +00:00
|
|
|
(new Item).list.should.be.an.instanceOf(Function);
|
|
|
|
|
|
|
|
// syntax 2 (new)
|
2015-03-19 15:50:26 +00:00
|
|
|
Fear.belongsTo('mind', {
|
2016-08-19 17:46:59 +00:00
|
|
|
methods: {check: function() { return true; }},
|
2015-03-19 15:50:26 +00:00
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2015-02-03 10:37:43 +00:00
|
|
|
Object.keys((new Fear).toObject()).should.containEql('mindId');
|
2014-01-24 17:09:53 +00:00
|
|
|
(new Fear).mind.should.be.an.instanceOf(Function);
|
|
|
|
// (new Fear).mind.build().should.be.an.instanceOf(Mind);
|
|
|
|
});
|
2013-03-26 20:48:14 +00:00
|
|
|
|
2015-03-19 15:50:26 +00:00
|
|
|
it('should setup a custom method on accessor', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const rel = Fear.relations['mind'];
|
2015-03-19 15:50:26 +00:00
|
|
|
rel.defineMethod('other', function() {
|
|
|
|
return true;
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2015-03-19 15:50:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have setup a custom method on accessor', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const f = new Fear();
|
2015-03-19 15:50:26 +00:00
|
|
|
f.mind.check.should.be.a.function;
|
|
|
|
f.mind.check().should.be.true;
|
|
|
|
f.mind.other.should.be.a.function;
|
|
|
|
f.mind.other().should.be.true;
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
List.hasMany('todos', {model: Item});
|
2016-04-01 11:48:17 +00:00
|
|
|
db.automigrate(['List', 'Item', 'Fear', 'Mind'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
List.create({name: 'List 1'}, function(e, list) {
|
2014-08-20 14:46:54 +00:00
|
|
|
listId = list.id;
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(list);
|
2016-08-19 17:46:59 +00:00
|
|
|
list.todos.create({name: 'Item 1'}, function(err, todo) {
|
2014-08-20 14:46:54 +00:00
|
|
|
itemId = todo.id;
|
2016-04-01 11:48:17 +00:00
|
|
|
todo.list(function(e, l) {
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(l);
|
|
|
|
l.should.be.an.instanceOf(List);
|
2017-04-06 20:04:16 +00:00
|
|
|
todo.list().id.should.eql(l.id);
|
2014-08-20 14:46:54 +00:00
|
|
|
todo.list().name.should.equal('List 1');
|
2014-01-24 17:09:53 +00:00
|
|
|
done();
|
2013-03-27 17:53:07 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-27 17:53:07 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
});
|
2013-04-15 05:13:31 +00:00
|
|
|
|
2017-07-19 13:31:21 +00:00
|
|
|
it('can be used to query data with get() with callback', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
List.hasMany('todos', {model: Item});
|
2016-04-01 11:48:17 +00:00
|
|
|
db.automigrate(['List', 'Item', 'Fear', 'Find'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
List.create({name: 'List 1'}, function(e, list) {
|
2015-02-18 05:04:31 +00:00
|
|
|
listId = list.id;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(list);
|
2016-08-19 17:46:59 +00:00
|
|
|
list.todos.create({name: 'Item 1'}, function(err, todo) {
|
2015-02-18 05:04:31 +00:00
|
|
|
itemId = todo.id;
|
2017-07-19 13:31:21 +00:00
|
|
|
todo.list.get(function(e, l) {
|
2015-02-18 05:04:31 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(l);
|
|
|
|
l.should.be.an.instanceOf(List);
|
2017-04-06 20:04:16 +00:00
|
|
|
todo.list().id.should.eql(l.id);
|
2015-02-18 05:04:31 +00:00
|
|
|
todo.list().name.should.equal('List 1');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
List.hasMany('todos', {model: Item});
|
2016-04-01 11:48:17 +00:00
|
|
|
db.automigrate(['List', 'Item', 'Fear', 'Find'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
List.create({name: 'List 1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(list) {
|
|
|
|
listId = list.id;
|
|
|
|
should.exist(list);
|
|
|
|
return list.todos.create({name: 'Item 1'});
|
|
|
|
})
|
|
|
|
.then(function(todo) {
|
|
|
|
itemId = todo.id;
|
|
|
|
return todo.list.get()
|
|
|
|
.then(function(l) {
|
|
|
|
should.exist(l);
|
|
|
|
l.should.be.an.instanceOf(List);
|
|
|
|
todo.list().id.should.eql(l.id);
|
|
|
|
todo.list().name.should.equal('List 1');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('could accept objects when creating on scope', function(done) {
|
|
|
|
List.create(function(e, list) {
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(list);
|
2016-08-19 17:46:59 +00:00
|
|
|
Item.create({list: list}, function(err, item) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-01-24 17:09:53 +00:00
|
|
|
should.exist(item);
|
|
|
|
should.exist(item.listId);
|
2017-04-06 20:04:16 +00:00
|
|
|
item.listId.should.eql(list.id);
|
2014-01-24 17:09:53 +00:00
|
|
|
item.__cachedRelations.list.should.equal(list);
|
|
|
|
done();
|
2013-04-18 09:05:11 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-26 00:39:47 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 14:46:54 +00:00
|
|
|
it('should update related item on scope', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Item.findById(itemId, function(e, todo) {
|
2016-08-19 17:46:59 +00:00
|
|
|
todo.list.update({name: 'List A'}, function(err, list) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-20 14:46:54 +00:00
|
|
|
should.exist(list);
|
|
|
|
list.name.should.equal('List A');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-01-17 18:34:37 +00:00
|
|
|
it('should not update related item FK on scope', function(done) {
|
|
|
|
Item.findById(itemId, function(e, todo) {
|
|
|
|
if (e) return done(e);
|
|
|
|
todo.list.update({id: 10}, function(err, list) {
|
|
|
|
should.exist(err);
|
|
|
|
err.message.should.startWith('Cannot override foreign key');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-08-20 14:46:54 +00:00
|
|
|
it('should get related item on scope', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Item.findById(itemId, function(e, todo) {
|
2014-08-20 14:46:54 +00:00
|
|
|
todo.list(function(err, list) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-20 14:46:54 +00:00
|
|
|
should.exist(list);
|
|
|
|
list.name.should.equal('List A');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 14:46:54 +00:00
|
|
|
it('should destroy related item on scope', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Item.findById(itemId, function(e, todo) {
|
2014-08-20 14:46:54 +00:00
|
|
|
todo.list.destroy(function(err) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-20 14:46:54 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 14:46:54 +00:00
|
|
|
it('should get related item on scope - verify', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Item.findById(itemId, function(e, todo) {
|
2014-08-20 14:46:54 +00:00
|
|
|
todo.list(function(err, list) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-20 14:46:54 +00:00
|
|
|
should.not.exist(list);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 14:46:54 +00:00
|
|
|
it('should not have deleted related item', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
List.findById(listId, function(e, list) {
|
2014-08-20 14:46:54 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(list);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2013-03-26 00:39:47 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to create belongsTo model in beforeCreate hook', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let mind;
|
2016-04-01 11:48:17 +00:00
|
|
|
Fear.beforeCreate = function(next) {
|
|
|
|
this.mind.create(function(err, m) {
|
2014-11-24 11:20:38 +00:00
|
|
|
mind = m;
|
|
|
|
if (err) next(err); else next();
|
|
|
|
});
|
|
|
|
};
|
2016-04-01 11:48:17 +00:00
|
|
|
Fear.create(function(err, fear) {
|
2014-11-24 11:20:38 +00:00
|
|
|
should.not.exists(err);
|
|
|
|
should.exists(fear);
|
2017-04-06 20:04:16 +00:00
|
|
|
fear.mindId.should.eql(mind.id);
|
2014-11-24 11:20:38 +00:00
|
|
|
should.exists(fear.mind());
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to create belongsTo model in beforeCreate hook with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let mind;
|
2016-04-01 11:48:17 +00:00
|
|
|
Fear.beforeCreate = function(next) {
|
2015-02-18 05:04:31 +00:00
|
|
|
this.mind.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(m) {
|
|
|
|
mind = m;
|
|
|
|
next();
|
|
|
|
}).catch(next);
|
2015-02-18 05:04:31 +00:00
|
|
|
};
|
|
|
|
Fear.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(fear) {
|
|
|
|
should.exists(fear);
|
|
|
|
fear.mindId.should.eql(mind.id);
|
|
|
|
should.exists(fear.mind());
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('belongsTo with scope', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Person, Passport;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared with scope and properties', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String, age: Number, passportNotes: String});
|
|
|
|
Passport = db.define('Passport', {name: String, notes: String});
|
2014-07-23 09:10:44 +00:00
|
|
|
Passport.belongsTo(Person, {
|
2016-08-19 17:46:59 +00:00
|
|
|
properties: {notes: 'passportNotes'},
|
|
|
|
scope: {fields: {id: true, name: true}},
|
2014-07-23 09:10:44 +00:00
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person', 'Passport'], done);
|
2014-07-23 09:10:44 +00:00
|
|
|
});
|
2014-07-28 21:22:45 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let personCreated;
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Passport({name: 'Passport', notes: 'Some notes...'});
|
2016-08-19 17:46:59 +00:00
|
|
|
p.person.create({name: 'Fred', age: 36}, function(err, person) {
|
2014-07-28 21:22:45 +00:00
|
|
|
personCreated = person;
|
2017-04-10 23:53:23 +00:00
|
|
|
p.personId.toString().should.eql(person.id.toString());
|
2014-08-15 09:28:25 +00:00
|
|
|
person.name.should.equal('Fred');
|
|
|
|
person.passportNotes.should.equal('Some notes...');
|
2016-04-01 11:48:17 +00:00
|
|
|
p.save(function(err, passport) {
|
2014-11-24 11:20:38 +00:00
|
|
|
should.not.exists(err);
|
|
|
|
done();
|
|
|
|
});
|
2014-07-23 09:10:44 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record on scope', function(done) {
|
|
|
|
Passport.findOne(function(err, p) {
|
2017-04-10 23:53:23 +00:00
|
|
|
p.personId.toString().should.eql(personCreated.id.toString());
|
2014-07-23 09:10:44 +00:00
|
|
|
p.person(function(err, person) {
|
|
|
|
person.name.should.equal('Fred');
|
2015-02-03 10:37:43 +00:00
|
|
|
person.should.have.property('age', undefined);
|
|
|
|
person.should.have.property('passportNotes', undefined);
|
2014-07-23 09:10:44 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Passport({name: 'Passport', notes: 'Some notes...'});
|
2016-08-19 17:46:59 +00:00
|
|
|
p.person.create({name: 'Fred', age: 36})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(person) {
|
|
|
|
p.personId.should.eql(person.id);
|
|
|
|
person.name.should.equal('Fred');
|
|
|
|
person.passportNotes.should.equal('Some notes...');
|
|
|
|
return p.save();
|
|
|
|
})
|
|
|
|
.then(function(passport) {
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Passport.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
// We skip the check if adhocSort is not supported because
|
|
|
|
// the first row returned may or may not be the same
|
|
|
|
p.personId.should.eql(personCreated.id);
|
|
|
|
}
|
|
|
|
return p.person.get();
|
|
|
|
})
|
|
|
|
.then(function(person) {
|
|
|
|
person.name.should.equal('Fred');
|
|
|
|
person.should.have.property('age', undefined);
|
|
|
|
person.should.have.property('passportNotes', undefined);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2014-07-23 09:10:44 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
|
2015-02-21 00:10:25 +00:00
|
|
|
// Disable the tests until the issue in
|
|
|
|
// https://github.com/strongloop/loopback-datasource-juggler/pull/399
|
|
|
|
// is fixed
|
2016-04-01 11:48:17 +00:00
|
|
|
describe.skip('belongsTo with embed', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Person, Passport;
|
2015-01-19 14:49:20 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared with embed and properties', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String, age: Number});
|
|
|
|
Passport = db.define('Passport', {name: String, notes: String});
|
2015-01-19 14:49:20 +00:00
|
|
|
Passport.belongsTo(Person, {
|
|
|
|
properties: ['name'],
|
2016-08-19 17:46:59 +00:00
|
|
|
options: {embedsProperties: true, invertProperties: true},
|
2015-01-19 14:49:20 +00:00
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person', 'Passport'], done);
|
2015-01-19 14:49:20 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record with embedded data', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred', age: 36}, function(err, person) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Passport({name: 'Passport', notes: 'Some notes...'});
|
2015-01-19 14:49:20 +00:00
|
|
|
p.person(person);
|
2017-04-06 20:04:16 +00:00
|
|
|
p.personId.should.eql(person.id);
|
2018-12-07 16:13:48 +00:00
|
|
|
const data = p.toObject(true);
|
2017-04-06 20:04:16 +00:00
|
|
|
data.person.id.should.eql(person.id);
|
2015-01-19 14:49:20 +00:00
|
|
|
data.person.name.should.equal('Fred');
|
2016-04-01 11:48:17 +00:00
|
|
|
p.save(function(err) {
|
2015-01-19 14:49:20 +00:00
|
|
|
should.not.exists(err);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record with embedded data', function(done) {
|
|
|
|
Passport.findOne(function(err, p) {
|
2015-01-19 14:49:20 +00:00
|
|
|
should.not.exists(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const data = p.toObject(true);
|
2017-04-06 20:04:16 +00:00
|
|
|
data.person.id.should.eql(p.personId);
|
2015-01-19 14:49:20 +00:00
|
|
|
data.person.name.should.equal('Fred');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find record with embedded data with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Passport.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const data = p.toObject(true);
|
2018-06-12 07:13:32 +00:00
|
|
|
data.person.id.should.eql(p.personId);
|
|
|
|
data.person.name.should.equal('Fred');
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2015-01-19 14:49:20 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasOne', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Supplier, Account;
|
|
|
|
let supplierId, accountId;
|
2014-06-16 08:17:37 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier = db.define('Supplier', {name: String});
|
|
|
|
Account = db.define('Account', {accountNo: String, supplierName: String});
|
2014-06-16 08:17:37 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared using hasOne method', function() {
|
2015-02-18 05:04:31 +00:00
|
|
|
Supplier.hasOne(Account, {
|
2016-08-19 17:46:59 +00:00
|
|
|
properties: {name: 'supplierName'},
|
|
|
|
methods: {check: function() { return true; }},
|
2015-03-19 15:50:26 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
Object.keys((new Account()).toObject()).should.containEql('supplierId');
|
2014-06-16 08:17:37 +00:00
|
|
|
(new Supplier()).account.should.be.an.instanceOf(Function);
|
|
|
|
});
|
|
|
|
|
2015-03-19 15:50:26 +00:00
|
|
|
it('should setup a custom method on accessor', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const rel = Supplier.relations['account'];
|
2015-03-19 15:50:26 +00:00
|
|
|
rel.defineMethod('other', function() {
|
|
|
|
return true;
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2015-03-19 15:50:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have setup a custom method on accessor', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const s = new Supplier();
|
2015-03-19 15:50:26 +00:00
|
|
|
s.account.check.should.be.a.function;
|
|
|
|
s.account.check().should.be.true;
|
|
|
|
s.account.other.should.be.a.function;
|
|
|
|
s.account.other().should.be.true;
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data', function(done) {
|
|
|
|
db.automigrate(['Supplier', 'Account'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.create({name: 'Supplier 1'}, function(e, supplier) {
|
2014-08-20 13:54:47 +00:00
|
|
|
supplierId = supplier.id;
|
2014-06-16 08:17:37 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
2016-08-19 17:46:59 +00:00
|
|
|
supplier.account.create({accountNo: 'a01'}, function(err, account) {
|
2016-04-01 11:48:17 +00:00
|
|
|
supplier.account(function(e, act) {
|
2014-08-20 14:46:54 +00:00
|
|
|
accountId = act.id;
|
2014-06-16 08:17:37 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(act);
|
|
|
|
act.should.be.an.instanceOf(Account);
|
2017-04-06 20:04:16 +00:00
|
|
|
supplier.account().id.should.eql(act.id);
|
2014-07-11 13:29:47 +00:00
|
|
|
act.supplierName.should.equal(supplier.name);
|
2014-06-16 08:17:37 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-07-19 13:31:21 +00:00
|
|
|
it('can be used to query data with get() with callback', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
db.automigrate(['Supplier', 'Account'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.create({name: 'Supplier 1'}, function(e, supplier) {
|
2015-02-18 05:04:31 +00:00
|
|
|
supplierId = supplier.id;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
2016-08-19 17:46:59 +00:00
|
|
|
supplier.account.create({accountNo: 'a01'}, function(err, account) {
|
2017-07-19 13:31:21 +00:00
|
|
|
supplier.account.get(function(e, act) {
|
2015-02-18 05:04:31 +00:00
|
|
|
accountId = act.id;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(act);
|
|
|
|
act.should.be.an.instanceOf(Account);
|
2017-04-06 20:04:16 +00:00
|
|
|
supplier.account().id.should.eql(act.id);
|
2015-02-18 05:04:31 +00:00
|
|
|
act.supplierName.should.equal(supplier.name);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data with promises', function(done) {
|
|
|
|
db.automigrate(['Supplier', 'Account'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.create({name: 'Supplier 1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(supplier) {
|
|
|
|
supplierId = supplier.id;
|
|
|
|
should.exist(supplier);
|
|
|
|
return supplier.account.create({accountNo: 'a01'})
|
|
|
|
.then(function(account) {
|
|
|
|
return supplier.account.get();
|
|
|
|
})
|
|
|
|
.then(function(act) {
|
|
|
|
accountId = act.id;
|
|
|
|
should.exist(act);
|
|
|
|
act.should.be.an.instanceOf(Account);
|
|
|
|
supplier.account().id.should.eql(act.id);
|
|
|
|
act.supplierName.should.equal(supplier.name);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
})
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-07-24 17:52:55 +00:00
|
|
|
it('should set targetClass on scope property', function() {
|
|
|
|
should.equal(Supplier.prototype.account._targetClass, 'Account');
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 13:54:47 +00:00
|
|
|
it('should update the related item on scope', function(done) {
|
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
2016-08-19 17:46:59 +00:00
|
|
|
supplier.account.update({supplierName: 'Supplier A'}, function(err, act) {
|
2014-08-20 13:54:47 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
act.supplierName.should.equal('Supplier A');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-01-30 07:26:11 +00:00
|
|
|
|
2018-01-17 18:34:37 +00:00
|
|
|
it('should not update the related item FK on scope', function(done) {
|
|
|
|
Supplier.findById(supplierId, function(err, supplier) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(supplier);
|
|
|
|
supplier.account.update({supplierName: 'Supplier A', supplierId: 10}, function(err, acct) {
|
|
|
|
should.exist(err);
|
|
|
|
err.message.should.containEql('Cannot override foreign key');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should update the related item on scope with promises', function(done) {
|
|
|
|
Supplier.findById(supplierId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(supplier) {
|
|
|
|
should.exist(supplier);
|
|
|
|
return supplier.account.update({supplierName: 'Supplier B'});
|
|
|
|
})
|
|
|
|
.then(function(act) {
|
|
|
|
act.supplierName.should.equal('Supplier B');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2018-01-17 18:34:37 +00:00
|
|
|
it('should error trying to change the foreign key in the update', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.create({name: 'Supplier 2'}, function(e, supplier) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const sid = supplier.id;
|
2015-01-30 07:26:11 +00:00
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
2016-08-19 17:46:59 +00:00
|
|
|
supplier.account.update({supplierName: 'Supplier A',
|
2016-12-05 14:14:09 +00:00
|
|
|
supplierId: sid},
|
2018-06-12 07:13:32 +00:00
|
|
|
function(err, act) {
|
|
|
|
should.exist(err);
|
|
|
|
err.message.should.startWith('Cannot override foreign key');
|
|
|
|
done();
|
|
|
|
});
|
2018-01-17 18:34:37 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should update the related item on scope with same foreign key', function(done) {
|
|
|
|
Supplier.create({name: 'Supplier 2'}, function(err, supplier) {
|
|
|
|
Supplier.findById(supplierId, function(err, supplier) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(supplier);
|
|
|
|
supplier.account.update({supplierName: 'Supplier A',
|
|
|
|
supplierId: supplierId},
|
2018-06-12 07:13:32 +00:00
|
|
|
function(err, act) {
|
|
|
|
if (err) return done(err);
|
|
|
|
act.supplierName.should.equal('Supplier A');
|
|
|
|
act.supplierId.toString().should.eql(supplierId.toString());
|
|
|
|
done();
|
|
|
|
});
|
2015-01-30 07:26:11 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 13:54:47 +00:00
|
|
|
it('should get the related item on scope', function(done) {
|
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
|
|
|
supplier.account(function(err, act) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(act);
|
|
|
|
act.supplierName.should.equal('Supplier A');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should get the related item on scope with promises', function(done) {
|
|
|
|
Supplier.findById(supplierId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(supplier) {
|
|
|
|
should.exist(supplier);
|
|
|
|
return supplier.account.get();
|
|
|
|
})
|
|
|
|
.then(function(act) {
|
|
|
|
should.exist(act);
|
|
|
|
act.supplierName.should.equal('Supplier A');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2014-08-20 13:58:45 +00:00
|
|
|
it('should destroy the related item on scope', function(done) {
|
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
|
|
|
supplier.account.destroy(function(err) {
|
|
|
|
should.not.exist(e);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should destroy the related item on scope with promises', function(done) {
|
|
|
|
Supplier.findById(supplierId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(supplier) {
|
|
|
|
should.exist(supplier);
|
|
|
|
return supplier.account.create({accountNo: 'a01'})
|
|
|
|
.then(function(account) {
|
|
|
|
return supplier.account.destroy();
|
|
|
|
})
|
|
|
|
.then(function(err) {
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
})
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2014-08-20 13:58:45 +00:00
|
|
|
it('should get the related item on scope - verify', function(done) {
|
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
|
|
|
supplier.account(function(err, act) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.not.exist(act);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should get the related item on scope with promises - verify', function(done) {
|
|
|
|
Supplier.findById(supplierId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(supplier) {
|
|
|
|
should.exist(supplier);
|
|
|
|
return supplier.account.get();
|
|
|
|
})
|
|
|
|
.then(function(act) {
|
|
|
|
should.not.exist(act);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2014-08-20 14:46:54 +00:00
|
|
|
it('should have deleted related item', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
2014-08-20 14:46:54 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-11-20 11:27:04 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasOne with scope', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Supplier, Account;
|
|
|
|
let supplierId, accountId;
|
2014-11-20 11:27:04 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier = db.define('Supplier', {name: String});
|
|
|
|
Account = db.define('Account', {accountNo: String, supplierName: String, block: Boolean});
|
|
|
|
Supplier.hasOne(Account, {scope: {where: {block: false}}, properties: {name: 'supplierName'}});
|
2014-11-20 11:27:04 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data', function(done) {
|
|
|
|
db.automigrate(['Supplier', 'Account'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.create({name: 'Supplier 1'}, function(e, supplier) {
|
2014-11-20 11:27:04 +00:00
|
|
|
supplierId = supplier.id;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
2016-08-19 17:46:59 +00:00
|
|
|
supplier.account.create({accountNo: 'a01', block: false}, function(err, account) {
|
2016-04-01 11:48:17 +00:00
|
|
|
supplier.account(function(e, act) {
|
2014-11-20 11:27:04 +00:00
|
|
|
accountId = act.id;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(act);
|
|
|
|
act.should.be.an.instanceOf(Account);
|
2015-02-18 05:04:31 +00:00
|
|
|
should.exist(act.block);
|
|
|
|
act.block.should.be.false;
|
2017-04-06 20:04:16 +00:00
|
|
|
supplier.account().id.should.eql(act.id);
|
2014-11-20 11:27:04 +00:00
|
|
|
act.supplierName.should.equal(supplier.name);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-05-16 18:49:02 +00:00
|
|
|
it('should include record that matches scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.findById(supplierId, {include: 'account'}, function(err, supplier) {
|
2015-05-16 18:49:02 +00:00
|
|
|
should.exists(supplier.toJSON().account);
|
|
|
|
supplier.account(function(err, account) {
|
|
|
|
should.exists(account);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.supportUpdateWithoutId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should not find record that does not match scope', function(done) {
|
|
|
|
Account.updateAll({block: true}, function(err) {
|
|
|
|
if (err) return done(err);
|
|
|
|
Supplier.findById(supplierId, function(err, supplier) {
|
|
|
|
supplier.account(function(err, account) {
|
|
|
|
should.not.exists(account);
|
|
|
|
done();
|
|
|
|
});
|
2014-11-20 11:27:04 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.supportUpdateWithoutId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should not include record that does not match scope', function(done) {
|
|
|
|
Account.updateAll({block: true}, function(err) {
|
|
|
|
if (err) return done(err);
|
|
|
|
Supplier.findById(supplierId, {include: 'account'}, function(err, supplier) {
|
|
|
|
should.not.exists(supplier.toJSON().account);
|
|
|
|
supplier.account(function(err, account) {
|
|
|
|
should.not.exists(account);
|
|
|
|
done();
|
|
|
|
});
|
2015-05-16 18:49:02 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data with promises', function(done) {
|
|
|
|
db.automigrate(['Supplier', 'Account'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.create({name: 'Supplier 1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(supplier) {
|
|
|
|
supplierId = supplier.id;
|
|
|
|
should.exist(supplier);
|
|
|
|
return supplier.account.create({accountNo: 'a01', block: false})
|
|
|
|
.then(function(account) {
|
|
|
|
return supplier.account.get();
|
|
|
|
})
|
|
|
|
.then(function(act) {
|
|
|
|
accountId = act.id;
|
|
|
|
should.exist(act);
|
|
|
|
act.should.be.an.instanceOf(Account);
|
|
|
|
should.exist(act.block);
|
|
|
|
act.block.should.be.false;
|
|
|
|
supplier.account().id.should.eql(act.id);
|
|
|
|
act.supplierName.should.equal(supplier.name);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
})
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.supportUpdateWithoutId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should find record that match scope with promises', function(done) {
|
|
|
|
Account.updateAll({block: true})
|
|
|
|
.then(function() {
|
|
|
|
return Supplier.findById(supplierId);
|
|
|
|
})
|
|
|
|
.then(function(supplier) {
|
|
|
|
return supplier.account.get();
|
|
|
|
})
|
|
|
|
.then(function(account) {
|
|
|
|
should.not.exist(account);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
done();
|
|
|
|
});
|
2017-04-06 20:04:16 +00:00
|
|
|
});
|
2014-06-16 08:17:37 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasOne with non standard id', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Supplier, Account;
|
|
|
|
let supplierId, accountId;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2014-10-17 16:18:55 +00:00
|
|
|
Supplier = db.define('Supplier', {
|
|
|
|
sid: {
|
|
|
|
type: String,
|
2015-02-21 00:10:25 +00:00
|
|
|
id: true,
|
2016-04-01 11:48:17 +00:00
|
|
|
generated: true,
|
2014-10-17 16:18:55 +00:00
|
|
|
},
|
2016-04-01 11:48:17 +00:00
|
|
|
name: String,
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
|
|
|
Account = db.define('Account', {
|
|
|
|
accid: {
|
|
|
|
type: String,
|
|
|
|
id: true,
|
2016-04-01 11:48:17 +00:00
|
|
|
generated: false,
|
2014-10-17 16:18:55 +00:00
|
|
|
},
|
2016-04-01 11:48:17 +00:00
|
|
|
supplierName: String,
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared with non standard foreignKey', function() {
|
2014-10-17 16:18:55 +00:00
|
|
|
Supplier.hasOne(Account, {
|
2016-08-19 17:46:59 +00:00
|
|
|
properties: {name: 'supplierName'},
|
2016-04-01 11:48:17 +00:00
|
|
|
foreignKey: 'sid',
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
Object.keys((new Account()).toObject()).should.containEql('sid');
|
2014-10-17 16:18:55 +00:00
|
|
|
(new Supplier()).account.should.be.an.instanceOf(Function);
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data', function(done) {
|
|
|
|
db.automigrate(['Supplier', 'Account'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Supplier.create({name: 'Supplier 1'}, function(e, supplier) {
|
2014-10-17 16:18:55 +00:00
|
|
|
supplierId = supplier.sid;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
2016-08-19 17:46:59 +00:00
|
|
|
supplier.account.create({accid: 'a01'}, function(err, account) {
|
2016-04-01 11:48:17 +00:00
|
|
|
supplier.account(function(e, act) {
|
2014-10-17 16:18:55 +00:00
|
|
|
accountId = act.accid;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(act);
|
|
|
|
act.should.be.an.instanceOf(Account);
|
2017-04-06 20:04:16 +00:00
|
|
|
supplier.account().accid.should.eql(act.accid);
|
2014-10-17 16:18:55 +00:00
|
|
|
act.supplierName.should.equal(supplier.name);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-17 16:18:55 +00:00
|
|
|
it('should destroy the related item on scope', function(done) {
|
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
|
|
|
supplier.account.destroy(function(err) {
|
|
|
|
should.not.exist(e);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-07-11 18:56:39 +00:00
|
|
|
bdd.itIf(connectorCapabilities.cloudantCompatible !== false,
|
|
|
|
'should get the related item on scope - verify', function(done) {
|
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
2014-10-17 16:18:55 +00:00
|
|
|
should.not.exist(e);
|
2017-07-11 18:56:39 +00:00
|
|
|
should.exist(supplier);
|
|
|
|
supplier.account(function(err, act) {
|
|
|
|
should.not.exist(e);
|
|
|
|
should.not.exist(act);
|
|
|
|
done();
|
|
|
|
});
|
2014-10-17 16:18:55 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-17 16:18:55 +00:00
|
|
|
it('should have deleted related item', function(done) {
|
2016-04-01 11:48:17 +00:00
|
|
|
Supplier.findById(supplierId, function(e, supplier) {
|
2014-10-17 16:18:55 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(supplier);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasOne with primaryKey different from model PK', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let CompanyBoard, Boss;
|
|
|
|
let companyBoardId, bossId;
|
2015-08-11 20:30:15 +00:00
|
|
|
|
2015-09-11 18:15:00 +00:00
|
|
|
before(function() {
|
|
|
|
CompanyBoard = db.define('CompanyBoard', {
|
|
|
|
membersNumber: Number,
|
2016-04-01 11:48:17 +00:00
|
|
|
companyId: String,
|
2015-09-11 18:15:00 +00:00
|
|
|
});
|
|
|
|
Boss = db.define('Boss', {
|
2016-08-19 17:46:59 +00:00
|
|
|
id: {type: String, id: true, generated: false},
|
2015-09-11 18:15:00 +00:00
|
|
|
boardMembersNumber: Number,
|
2016-04-01 11:48:17 +00:00
|
|
|
companyId: String,
|
2015-09-11 18:15:00 +00:00
|
|
|
});
|
2015-08-11 20:30:15 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('relation can be declared with primaryKey', function() {
|
2015-08-11 20:30:15 +00:00
|
|
|
CompanyBoard.hasOne(Boss, {
|
2016-08-19 17:46:59 +00:00
|
|
|
properties: {membersNumber: 'boardMembersNumber'},
|
2015-08-11 20:30:15 +00:00
|
|
|
primaryKey: 'companyId',
|
2016-04-01 11:48:17 +00:00
|
|
|
foreignKey: 'companyId',
|
2015-08-11 20:30:15 +00:00
|
|
|
});
|
|
|
|
Object.keys((new Boss()).toObject()).should.containEql('companyId');
|
|
|
|
(new CompanyBoard()).boss.should.be.an.instanceOf(Function);
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data', function(done) {
|
|
|
|
db.automigrate(['CompanyBoard', 'Boss'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
CompanyBoard.create({membersNumber: 7, companyId: 'Company1'}, function(e, companyBoard) {
|
2015-08-11 20:30:15 +00:00
|
|
|
companyBoardId = companyBoard.id;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(companyBoard);
|
2017-07-11 18:56:39 +00:00
|
|
|
companyBoard.boss.create({id: 'bossa01'}, function(err, account) {
|
2016-04-01 11:48:17 +00:00
|
|
|
companyBoard.boss(function(e, boss) {
|
2015-08-11 20:30:15 +00:00
|
|
|
bossId = boss.id;
|
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(boss);
|
|
|
|
boss.should.be.an.instanceOf(Boss);
|
2015-09-08 16:53:02 +00:00
|
|
|
companyBoard.boss().id.should.eql(boss.id);
|
|
|
|
boss.boardMembersNumber.should.eql(companyBoard.membersNumber);
|
|
|
|
boss.companyId.should.eql(companyBoard.companyId);
|
2015-08-11 20:30:15 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should destroy the related item on scope', function(done) {
|
|
|
|
CompanyBoard.findById(companyBoardId, function(e, companyBoard) {
|
2015-08-11 20:30:15 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(companyBoard);
|
2016-04-01 11:48:17 +00:00
|
|
|
companyBoard.boss.destroy(function(err) {
|
2015-08-11 20:30:15 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should get the related item on scope - verify', function(done) {
|
|
|
|
CompanyBoard.findById(companyBoardId, function(e, companyBoard) {
|
2015-08-11 20:30:15 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(companyBoard);
|
2016-04-01 11:48:17 +00:00
|
|
|
companyBoard.boss(function(err, act) {
|
2015-08-11 20:30:15 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.not.exist(act);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasMany with primaryKey different from model PK', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Employee, Boss;
|
|
|
|
const COMPANY_ID = 'Company1';
|
2015-08-31 20:24:47 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Employee = db.define('Employee', {name: String, companyId: String});
|
|
|
|
Boss = db.define('Boss', {address: String, companyId: String});
|
2015-08-31 20:24:47 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('relation can be declared with primaryKey', function() {
|
2015-08-31 20:24:47 +00:00
|
|
|
Boss.hasMany(Employee, {
|
|
|
|
primaryKey: 'companyId',
|
2016-04-01 11:48:17 +00:00
|
|
|
foreignKey: 'companyId',
|
2015-08-31 20:24:47 +00:00
|
|
|
});
|
|
|
|
(new Boss()).employees.should.be.an.instanceOf(Function);
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query employees for boss', function() {
|
|
|
|
return db.automigrate(['Employee', 'Boss']).then(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
return Boss.create({address: 'testAddress', companyId: COMPANY_ID})
|
2016-04-01 11:48:17 +00:00
|
|
|
.then(function(boss) {
|
2015-08-31 20:24:47 +00:00
|
|
|
should.exist(boss);
|
|
|
|
should.exist(boss.employees);
|
2016-08-19 17:46:59 +00:00
|
|
|
return boss.employees.create([{name: 'a01'}, {name: 'a02'}])
|
2016-04-01 11:48:17 +00:00
|
|
|
.then(function(employees) {
|
2015-08-31 20:24:47 +00:00
|
|
|
should.exists(employees);
|
|
|
|
return boss.employees();
|
2016-04-01 11:48:17 +00:00
|
|
|
}).then(function(employees) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const employee = employees[0];
|
2015-08-31 20:24:47 +00:00
|
|
|
should.exist(employee);
|
|
|
|
employees.length.should.equal(2);
|
|
|
|
employee.should.be.an.instanceOf(Employee);
|
2017-04-06 20:04:16 +00:00
|
|
|
employee.companyId.should.eql(boss.companyId);
|
2015-08-31 20:24:47 +00:00
|
|
|
return employees;
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2015-08-31 20:24:47 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query employees for boss2', function() {
|
|
|
|
return db.automigrate(['Employee', 'Boss']).then(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
return Boss.create({address: 'testAddress', companyId: COMPANY_ID})
|
2016-04-01 11:48:17 +00:00
|
|
|
.then(function(boss) {
|
2016-08-19 17:46:59 +00:00
|
|
|
return Employee.create({name: 'a01', companyId: COMPANY_ID})
|
2016-04-01 11:48:17 +00:00
|
|
|
.then(function(employee) {
|
2015-08-31 20:24:47 +00:00
|
|
|
should.exist(employee);
|
2017-07-19 13:31:21 +00:00
|
|
|
return boss.employees.find();
|
2016-04-01 11:48:17 +00:00
|
|
|
}).then(function(employees) {
|
2015-08-31 20:24:47 +00:00
|
|
|
should.exists(employees);
|
|
|
|
employees.length.should.equal(1);
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2015-08-31 20:24:47 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('belongsTo with primaryKey different from model PK', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Employee, Boss;
|
|
|
|
const COMPANY_ID = 'Company1';
|
|
|
|
let bossId;
|
2015-08-31 20:24:47 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Employee = db.define('Employee', {name: String, companyId: String});
|
|
|
|
Boss = db.define('Boss', {address: String, companyId: String});
|
2015-08-31 20:24:47 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('relation can be declared with primaryKey', function() {
|
2015-08-31 20:24:47 +00:00
|
|
|
Employee.belongsTo(Boss, {
|
|
|
|
primaryKey: 'companyId',
|
2016-04-01 11:48:17 +00:00
|
|
|
foreignKey: 'companyId',
|
2015-08-31 20:24:47 +00:00
|
|
|
});
|
|
|
|
(new Employee()).boss.should.be.an.instanceOf(Function);
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be used to query data', function() {
|
|
|
|
return db.automigrate(['Employee', 'Boss']).then(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
return Boss.create({address: 'testAddress', companyId: COMPANY_ID})
|
2016-04-01 11:48:17 +00:00
|
|
|
.then(function(boss) {
|
2015-08-31 20:24:47 +00:00
|
|
|
bossId = boss.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
return Employee.create({name: 'a', companyId: COMPANY_ID});
|
2015-08-31 20:24:47 +00:00
|
|
|
})
|
2016-04-01 11:48:17 +00:00
|
|
|
.then(function(employee) {
|
2015-08-31 20:24:47 +00:00
|
|
|
should.exists(employee);
|
2017-07-19 13:31:21 +00:00
|
|
|
return employee.boss.get();
|
2015-08-31 20:24:47 +00:00
|
|
|
})
|
2016-04-01 11:48:17 +00:00
|
|
|
.then(function(boss) {
|
2015-08-31 20:24:47 +00:00
|
|
|
should.exists(boss);
|
2015-09-08 16:53:02 +00:00
|
|
|
boss.id.should.eql(bossId);
|
2015-08-31 20:24:47 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('hasAndBelongsToMany', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Article, TagName, ArticleTag;
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Article = db.define('Article', {title: String});
|
|
|
|
TagName = db.define('TagName', {name: String, flag: String});
|
2014-09-17 15:28:40 +00:00
|
|
|
Article.hasAndBelongsToMany('tagNames');
|
|
|
|
ArticleTag = db.models.ArticleTagName;
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Article', 'TagName', 'ArticleTagName'], done);
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to create instances on scope', function(done) {
|
|
|
|
Article.create(function(e, article) {
|
2016-08-19 17:46:59 +00:00
|
|
|
article.tagNames.create({name: 'popular'}, function(e, t) {
|
2014-09-17 15:28:40 +00:00
|
|
|
t.should.be.an.instanceOf(TagName);
|
2016-04-01 11:48:17 +00:00
|
|
|
ArticleTag.findOne(function(e, at) {
|
2014-01-24 17:09:53 +00:00
|
|
|
should.exist(at);
|
2017-04-06 20:04:16 +00:00
|
|
|
at.tagNameId.toString().should.eql(t.id.toString());
|
|
|
|
at.articleId.toString().should.eql(article.id.toString());
|
2014-01-24 17:09:53 +00:00
|
|
|
done();
|
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to fetch scoped instances', function(done) {
|
|
|
|
Article.findOne(function(e, article) {
|
|
|
|
article.tagNames(function(e, tags) {
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(tags);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-09 16:18:04 +00:00
|
|
|
article.tagNames().should.eql(tags);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
done();
|
2013-04-12 21:35:06 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
|
2017-08-24 00:58:28 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should destroy all related instances', function(done) {
|
|
|
|
Article.create(function(err, article) {
|
2017-08-24 00:58:28 +00:00
|
|
|
if (err) return done(err);
|
2018-06-12 07:13:32 +00:00
|
|
|
article.tagNames.create({name: 'popular'}, function(err, t) {
|
2017-08-24 00:58:28 +00:00
|
|
|
if (err) return done(err);
|
2018-06-12 07:13:32 +00:00
|
|
|
article.tagNames.destroyAll(function(err) {
|
2017-08-24 00:58:28 +00:00
|
|
|
if (err) return done(err);
|
2018-06-12 07:13:32 +00:00
|
|
|
article.tagNames(true, function(err, list) {
|
|
|
|
if (err) return done(err);
|
|
|
|
list.should.have.length(0);
|
|
|
|
done();
|
|
|
|
});
|
2017-08-24 00:58:28 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to add connection with instance', function(done) {
|
|
|
|
Article.findOne(function(e, article) {
|
2016-08-19 17:46:59 +00:00
|
|
|
TagName.create({name: 'awesome'}, function(e, tag) {
|
2016-04-01 11:48:17 +00:00
|
|
|
article.tagNames.add(tag, function(e, at) {
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
should.exist(at);
|
|
|
|
at.should.be.an.instanceOf(ArticleTag);
|
2015-09-08 16:53:02 +00:00
|
|
|
at.tagNameId.should.eql(tag.id);
|
|
|
|
at.articleId.should.eql(article.id);
|
2014-01-24 17:09:53 +00:00
|
|
|
done();
|
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should allow to remove connection with instance', function(done) {
|
|
|
|
Article.findOne(function(e, article) {
|
|
|
|
article.tagNames(function(e, tags) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const len = tags.length;
|
2018-06-12 07:13:32 +00:00
|
|
|
tags.should.not.be.empty;
|
|
|
|
article.tagNames.remove(tags[0], function(e) {
|
|
|
|
should.not.exist(e);
|
|
|
|
article.tagNames(true, function(e, tags) {
|
|
|
|
tags.should.have.lengthOf(len - 1);
|
|
|
|
done();
|
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-04-12 21:35:06 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-04-11 23:23:34 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to create instances on scope with promises', function(done) {
|
|
|
|
db.automigrate(['Article', 'TagName', 'ArticleTagName'], function() {
|
2015-02-18 05:04:31 +00:00
|
|
|
Article.create()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(article) {
|
|
|
|
return article.tagNames.create({name: 'popular'})
|
|
|
|
.then(function(t) {
|
|
|
|
t.should.be.an.instanceOf(TagName);
|
|
|
|
return ArticleTag.findOne()
|
|
|
|
.then(function(at) {
|
|
|
|
should.exist(at);
|
|
|
|
at.tagNameId.toString().should.eql(t.id.toString());
|
|
|
|
at.articleId.toString().should.eql(article.id.toString());
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to fetch scoped instances with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Article.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(article) {
|
|
|
|
return article.tagNames.find()
|
|
|
|
.then(function(tags) {
|
|
|
|
should.exist(tags);
|
|
|
|
article.tagNames().should.eql(tags);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should allow to add connection with instance with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Article.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(article) {
|
|
|
|
return TagName.create({name: 'awesome'})
|
|
|
|
.then(function(tag) {
|
|
|
|
return article.tagNames.add(tag)
|
|
|
|
.then(function(at) {
|
|
|
|
should.exist(at);
|
|
|
|
at.should.be.an.instanceOf(ArticleTag);
|
|
|
|
at.tagNameId.should.eql(tag.id);
|
|
|
|
at.articleId.should.eql(article.id);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.deleteWithOtherThanId !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should allow to remove connection with instance with promises', function(done) {
|
|
|
|
Article.findOne()
|
|
|
|
.then(function(article) {
|
|
|
|
return article.tagNames.find()
|
|
|
|
.then(function(tags) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const len = tags.length;
|
2018-06-12 07:13:32 +00:00
|
|
|
tags.should.not.be.empty;
|
|
|
|
return article.tagNames.remove(tags[0])
|
|
|
|
.then(function() {
|
|
|
|
return article.tagNames.find();
|
|
|
|
})
|
|
|
|
.then(function(tags) {
|
|
|
|
tags.should.have.lengthOf(len - 1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
})
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(done);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2014-04-02 17:32:37 +00:00
|
|
|
it('should set targetClass on scope property', function() {
|
2014-09-17 15:28:40 +00:00
|
|
|
should.equal(Article.prototype.tagNames._targetClass, 'TagName');
|
2014-04-02 17:32:37 +00:00
|
|
|
});
|
2015-02-28 18:53:18 +00:00
|
|
|
|
|
|
|
it('should apply inclusion fields to the target model', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Article.create({title: 'a1'}, function(e, article) {
|
2015-02-28 18:53:18 +00:00
|
|
|
should.not.exist(e);
|
2016-08-19 17:46:59 +00:00
|
|
|
article.tagNames.create({name: 't1', flag: '1'}, function(e, t) {
|
2015-02-28 18:53:18 +00:00
|
|
|
should.not.exist(e);
|
|
|
|
Article.find({
|
2016-08-19 17:46:59 +00:00
|
|
|
where: {id: article.id},
|
|
|
|
include: {relation: 'tagNames', scope: {fields: ['name']}}},
|
2018-06-12 07:13:32 +00:00
|
|
|
function(e, articles) {
|
|
|
|
should.not.exist(e);
|
|
|
|
articles.should.have.property('length', 1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const a = articles[0].toJSON();
|
2018-06-12 07:13:32 +00:00
|
|
|
a.should.have.property('title', 'a1');
|
|
|
|
a.should.have.property('tagNames');
|
|
|
|
a.tagNames.should.have.property('length', 1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const n = a.tagNames[0];
|
2018-06-12 07:13:32 +00:00
|
|
|
n.should.have.property('name', 't1');
|
|
|
|
n.should.have.property('flag', undefined);
|
|
|
|
n.id.should.eql(t.id);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-28 18:53:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should apply inclusion where to the target model', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Article.create({title: 'a2'}, function(e, article) {
|
2015-02-28 18:53:18 +00:00
|
|
|
should.not.exist(e);
|
2016-08-19 17:46:59 +00:00
|
|
|
article.tagNames.create({name: 't2', flag: '2'}, function(e, t2) {
|
2015-02-28 18:53:18 +00:00
|
|
|
should.not.exist(e);
|
2016-08-19 17:46:59 +00:00
|
|
|
article.tagNames.create({name: 't3', flag: '3'}, function(e, t3) {
|
2015-02-28 18:53:18 +00:00
|
|
|
Article.find({
|
2016-08-19 17:46:59 +00:00
|
|
|
where: {id: article.id},
|
|
|
|
include: {relation: 'tagNames', scope: {where: {flag: '2'}}}},
|
2018-06-12 07:13:32 +00:00
|
|
|
function(e, articles) {
|
|
|
|
should.not.exist(e);
|
|
|
|
articles.should.have.property('length', 1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const a = articles[0].toJSON();
|
2018-06-12 07:13:32 +00:00
|
|
|
a.should.have.property('title', 'a2');
|
|
|
|
a.should.have.property('tagNames');
|
|
|
|
a.tagNames.should.have.property('length', 1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const n = a.tagNames[0];
|
2018-06-12 07:13:32 +00:00
|
|
|
n.should.have.property('name', 't2');
|
|
|
|
n.should.have.property('flag', '2');
|
|
|
|
n.id.should.eql(t2.id);
|
|
|
|
done();
|
|
|
|
});
|
2015-02-28 18:53:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsOne', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let person;
|
|
|
|
let Passport;
|
|
|
|
let Other;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2014-09-04 15:56:26 +00:00
|
|
|
tmp = getTransientDataSource();
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String});
|
2014-08-30 09:43:36 +00:00
|
|
|
Passport = tmp.define('Passport',
|
2016-08-19 17:46:59 +00:00
|
|
|
{name: {type: 'string', required: true}},
|
2018-07-16 06:46:25 +00:00
|
|
|
{idInjection: false});
|
2016-08-19 17:46:59 +00:00
|
|
|
Address = tmp.define('Address', {street: String}, {idInjection: false});
|
|
|
|
Other = db.define('Other', {name: String});
|
2014-08-19 20:10:35 +00:00
|
|
|
Person.embedsOne(Passport, {
|
2016-08-19 17:46:59 +00:00
|
|
|
default: {name: 'Anonymous'}, // a bit contrived
|
|
|
|
methods: {check: function() { return true; }},
|
2017-10-31 14:55:54 +00:00
|
|
|
options: {
|
|
|
|
property: {
|
|
|
|
postgresql: {
|
|
|
|
columnName: 'passport_item',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2014-08-19 20:10:35 +00:00
|
|
|
});
|
2017-10-31 14:55:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('can be declared using embedsOne method', function(done) {
|
2014-11-28 05:45:47 +00:00
|
|
|
Person.embedsOne(Address); // all by default
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-08-19 20:10:35 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should have setup a property and accessor', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person();
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passport.should.be.an.object; // because of default
|
|
|
|
p.passportItem.should.be.a.function;
|
|
|
|
p.passportItem.create.should.be.a.function;
|
|
|
|
p.passportItem.build.should.be.a.function;
|
|
|
|
p.passportItem.destroy.should.be.a.function;
|
|
|
|
});
|
2014-11-28 05:45:47 +00:00
|
|
|
|
2017-10-31 14:55:54 +00:00
|
|
|
it('respects property options on the embedded property', function() {
|
|
|
|
Person.definition.properties.passport.should.have.property('postgresql');
|
|
|
|
Person.definition.properties.passport.postgresql.should.eql({columnName: 'passport_item'});
|
|
|
|
});
|
|
|
|
|
2015-03-19 15:50:26 +00:00
|
|
|
it('should setup a custom method on accessor', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const rel = Person.relations['passportItem'];
|
2015-03-19 15:50:26 +00:00
|
|
|
rel.defineMethod('other', function() {
|
|
|
|
return true;
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2015-03-19 15:50:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have setup a custom method on accessor', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person();
|
2015-03-19 15:50:26 +00:00
|
|
|
p.passportItem.check.should.be.a.function;
|
|
|
|
p.passportItem.check().should.be.true;
|
|
|
|
p.passportItem.other.should.be.a.function;
|
|
|
|
p.passportItem.other().should.be.true;
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should behave properly without default or being set', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person();
|
2014-11-28 05:45:47 +00:00
|
|
|
should.not.exist(p.address);
|
2018-12-07 16:13:48 +00:00
|
|
|
const a = p.addressItem();
|
2014-11-28 05:45:47 +00:00
|
|
|
should.not.exist(a);
|
2016-04-01 11:48:17 +00:00
|
|
|
Person.create({}, function(err, p) {
|
2014-11-28 05:45:47 +00:00
|
|
|
should.not.exist(p.address);
|
2018-12-07 16:13:48 +00:00
|
|
|
const a = p.addressItem();
|
2014-11-28 05:45:47 +00:00
|
|
|
should.not.exist(a);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should return an instance with default values', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person();
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passport.toObject().should.eql({name: 'Anonymous'});
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passportItem().should.equal(p.passport);
|
|
|
|
p.passportItem(function(err, passport) {
|
2018-05-24 21:16:15 +00:00
|
|
|
should.not.exist(err);
|
2014-08-19 20:10:35 +00:00
|
|
|
passport.should.equal(p.passport);
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should embed a model instance', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person();
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passportItem(new Passport({name: 'Fred'}));
|
|
|
|
p.passport.toObject().should.eql({name: 'Fred'});
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passport.should.be.an.instanceOf(Passport);
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should not embed an invalid model type', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person();
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passportItem(new Other());
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passport.toObject().should.eql({name: 'Anonymous'});
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passport.should.be.an.instanceOf(Passport);
|
|
|
|
});
|
2014-08-19 22:23:37 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let personId;
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should create an embedded item on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-19 22:23:37 +00:00
|
|
|
personId = p.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passportItem.create({name: 'Fredric'}, function(err, passport) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passport.toObject().should.eql({name: 'Fredric'});
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passport.should.be.an.instanceOf(Passport);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should get an embedded item on scope', function(done) {
|
2014-08-19 22:23:37 +00:00
|
|
|
Person.findById(personId, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const passport = p.passportItem();
|
2016-08-19 17:46:59 +00:00
|
|
|
passport.toObject().should.eql({name: 'Fredric'});
|
2014-08-19 20:10:35 +00:00
|
|
|
passport.should.be.an.instanceOf(Passport);
|
|
|
|
passport.should.equal(p.passport);
|
2014-09-04 19:51:59 +00:00
|
|
|
passport.should.equal(p.passportItem.value());
|
2014-08-19 20:10:35 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should validate an embedded item on scope - on creation', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person({name: 'Fred'});
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passportItem.create({}, function(err, passport) {
|
|
|
|
should.exist(err);
|
|
|
|
err.name.should.equal('ValidationError');
|
2015-01-12 13:52:54 +00:00
|
|
|
err.details.messages.name.should.eql(['can\'t be blank']);
|
2014-08-19 20:10:35 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should validate an embedded item on scope - on update', function(done) {
|
2014-08-19 22:23:37 +00:00
|
|
|
Person.findById(personId, function(err, p) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const passport = p.passportItem();
|
2014-08-19 20:10:35 +00:00
|
|
|
passport.name = null;
|
|
|
|
p.save(function(err) {
|
|
|
|
should.exist(err);
|
|
|
|
err.name.should.equal('ValidationError');
|
2015-01-12 13:52:54 +00:00
|
|
|
err.details.messages.passportItem
|
|
|
|
.should.eql(['is invalid: `name` can\'t be blank']);
|
2014-08-19 20:10:35 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 13:37:40 +00:00
|
|
|
it('should update an embedded item on scope', function(done) {
|
|
|
|
Person.findById(personId, function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passportItem.update({name: 'Freddy'}, function(err, passport) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-01-31 15:14:53 +00:00
|
|
|
passport = p.passportItem();
|
2016-08-19 17:46:59 +00:00
|
|
|
passport.toObject().should.eql({name: 'Freddy'});
|
2014-08-20 13:37:40 +00:00
|
|
|
passport.should.be.an.instanceOf(Passport);
|
|
|
|
passport.should.equal(p.passport);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-20 13:37:40 +00:00
|
|
|
it('should get an embedded item on scope - verify', function(done) {
|
|
|
|
Person.findById(personId, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const passport = p.passportItem();
|
2016-08-19 17:46:59 +00:00
|
|
|
passport.toObject().should.eql({name: 'Freddy'});
|
2014-08-20 13:37:40 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should destroy an embedded item on scope', function(done) {
|
2014-08-19 22:23:37 +00:00
|
|
|
Person.findById(personId, function(err, p) {
|
2014-08-19 20:10:35 +00:00
|
|
|
p.passportItem.destroy(function(err) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-19 20:10:35 +00:00
|
|
|
should.equal(p.passport, null);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2014-08-19 20:10:35 +00:00
|
|
|
it('should get an embedded item on scope - verify', function(done) {
|
2014-08-19 22:23:37 +00:00
|
|
|
Person.findById(personId, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-19 20:10:35 +00:00
|
|
|
should.equal(p.passport, null);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-04-01 14:59:21 +00:00
|
|
|
it('should save an unsaved model', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person({name: 'Fred'});
|
2015-04-01 14:59:21 +00:00
|
|
|
p.isNewRecord().should.be.true;
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passportItem.create({name: 'Fredric'}, function(err, passport) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-04-01 14:59:21 +00:00
|
|
|
p.passport.should.equal(passport);
|
|
|
|
p.isNewRecord().should.be.false;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should create an embedded item on scope with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
|
|
|
personId = p.id;
|
|
|
|
p.passportItem.create({name: 'Fredric'})
|
|
|
|
.then(function(passport) {
|
|
|
|
p.passport.toObject().should.eql({name: 'Fredric'});
|
|
|
|
p.passport.should.be.an.instanceOf(Passport);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should get an embedded item on scope with promises', function(done) {
|
|
|
|
Person.findById(personId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const passport = p.passportItem();
|
2018-06-12 07:13:32 +00:00
|
|
|
passport.toObject().should.eql({name: 'Fredric'});
|
|
|
|
passport.should.be.an.instanceOf(Passport);
|
|
|
|
passport.should.equal(p.passport);
|
|
|
|
passport.should.equal(p.passportItem.value());
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should validate an embedded item on scope with promises - on creation', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person({name: 'Fred'});
|
2015-02-18 05:04:31 +00:00
|
|
|
p.passportItem.create({})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(passport) {
|
|
|
|
should.not.exist(passport);
|
2015-02-18 05:04:31 +00:00
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
should.exist(err);
|
|
|
|
err.name.should.equal('ValidationError');
|
2018-06-12 07:13:32 +00:00
|
|
|
err.details.messages.name.should.eql(['can\'t be blank']);
|
2015-02-18 05:04:31 +00:00
|
|
|
done();
|
2018-06-12 07:13:32 +00:00
|
|
|
}).catch(done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should validate an embedded item on scope with promises - on update', function(done) {
|
|
|
|
Person.findById(personId)
|
|
|
|
.then(function(p) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const passport = p.passportItem();
|
2018-06-12 07:13:32 +00:00
|
|
|
passport.name = null;
|
|
|
|
return p.save()
|
|
|
|
.then(function(p) {
|
|
|
|
should.not.exist(p);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
should.exist(err);
|
|
|
|
err.name.should.equal('ValidationError');
|
|
|
|
err.details.messages.passportItem
|
|
|
|
.should.eql(['is invalid: `name` can\'t be blank']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should update an embedded item on scope with promises', function(done) {
|
|
|
|
Person.findById(personId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
|
|
|
return p.passportItem.update({name: 'Jason'})
|
|
|
|
.then(function(passport) {
|
|
|
|
passport = p.passportItem();
|
|
|
|
passport.toObject().should.eql({name: 'Jason'});
|
|
|
|
passport.should.be.an.instanceOf(Passport);
|
|
|
|
passport.should.equal(p.passport);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should get an embedded item on scope with promises - verify', function(done) {
|
|
|
|
Person.findById(personId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const passport = p.passportItem();
|
2018-06-12 07:13:32 +00:00
|
|
|
passport.toObject().should.eql({name: 'Jason'});
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should destroy an embedded item on scope with promises', function(done) {
|
|
|
|
Person.findById(personId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
|
|
|
return p.passportItem.destroy()
|
|
|
|
.then(function() {
|
|
|
|
should.equal(p.passport, null);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should get an embedded item on scope with promises - verify', function(done) {
|
|
|
|
Person.findById(personId)
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
|
|
|
should.equal(p.passport, null);
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2016-05-31 07:44:17 +00:00
|
|
|
|
|
|
|
it('should also save changes when directly saving the embedded model', function(done) {
|
|
|
|
// Passport should normally have an id for the direct save to work. For now override the check
|
2018-12-07 16:13:48 +00:00
|
|
|
const originalHasPK = Passport.definition.hasPK;
|
2016-05-31 07:44:17 +00:00
|
|
|
Passport.definition.hasPK = function() { return true; };
|
|
|
|
Person.findById(personId)
|
|
|
|
.then(function(p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
return p.passportItem.create({name: 'Mitsos'});
|
2016-05-31 07:44:17 +00:00
|
|
|
})
|
|
|
|
.then(function(passport) {
|
|
|
|
passport.name = 'Jim';
|
|
|
|
return passport.save();
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return Person.findById(personId);
|
|
|
|
})
|
|
|
|
.then(function(person) {
|
2016-08-19 17:46:59 +00:00
|
|
|
person.passportItem().toObject().should.eql({name: 'Jim'});
|
2016-05-31 07:44:17 +00:00
|
|
|
// restore original hasPk
|
|
|
|
Passport.definition.hasPK = originalHasPK;
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
Passport.definition.hasPK = originalHasPK;
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should delete the embedded document and also update parent', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const originalHasPK = Passport.definition.hasPK;
|
2016-05-31 07:44:17 +00:00
|
|
|
Passport.definition.hasPK = function() { return true; };
|
|
|
|
Person.findById(personId)
|
|
|
|
.then(function(p) {
|
|
|
|
return p.passportItem().destroy();
|
|
|
|
})
|
|
|
|
.then(function() {
|
|
|
|
return Person.findById(personId);
|
|
|
|
})
|
|
|
|
.then(function(person) {
|
|
|
|
person.should.have.property('passport', null);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(function(err) {
|
|
|
|
Passport.definition.hasPK = originalHasPK;
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
});
|
2014-08-19 20:10:35 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsOne - persisted model', function() {
|
2014-09-07 11:10:23 +00:00
|
|
|
// This test spefically uses the Memory connector
|
|
|
|
// in order to test the use of the auto-generated
|
|
|
|
// id, in the sequence of the related model.
|
2018-12-07 16:13:48 +00:00
|
|
|
let Passport, Person;
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2014-09-07 11:10:23 +00:00
|
|
|
db = getMemoryDataSource();
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String});
|
2014-09-07 11:10:23 +00:00
|
|
|
Passport = db.define('Passport',
|
2018-07-16 06:46:25 +00:00
|
|
|
{name: {type: 'string', required: true}});
|
2014-09-07 11:10:23 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared using embedsOne method', function(done) {
|
2014-09-07 11:10:23 +00:00
|
|
|
Person.embedsOne(Passport, {
|
2016-08-19 17:46:59 +00:00
|
|
|
options: {persistent: true},
|
2014-09-07 11:10:23 +00:00
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person', 'Passport'], done);
|
2014-09-07 11:10:23 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 11:10:23 +00:00
|
|
|
it('should create an item - to offset id', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Passport.create({name: 'Wilma'}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 11:10:23 +00:00
|
|
|
p.id.should.equal(1);
|
|
|
|
p.name.should.equal('Wilma');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 11:10:23 +00:00
|
|
|
it('should create an embedded item on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passportItem.create({name: 'Fredric'}, function(err, passport) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 11:10:23 +00:00
|
|
|
p.passport.id.should.eql(2);
|
|
|
|
p.passport.name.should.equal('Fredric');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should create an embedded item on scope with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Barney'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
|
|
|
return p.passportItem.create({name: 'Barnabus'})
|
|
|
|
.then(function(passport) {
|
|
|
|
p.passport.id.should.eql(3);
|
|
|
|
p.passport.name.should.equal('Barnabus');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2014-09-07 11:10:23 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsOne - generated id', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let Passport;
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2014-09-07 11:24:05 +00:00
|
|
|
tmp = getTransientDataSource();
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String});
|
2014-09-07 11:24:05 +00:00
|
|
|
Passport = tmp.define('Passport',
|
2016-05-27 22:21:53 +00:00
|
|
|
{
|
2016-08-19 17:46:59 +00:00
|
|
|
id: {type: 'string', id: true, generated: true},
|
|
|
|
name: {type: 'string', required: true},
|
2018-07-16 06:46:25 +00:00
|
|
|
});
|
2014-09-07 11:24:05 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared using embedsOne method', function(done) {
|
2014-09-07 11:24:05 +00:00
|
|
|
Person.embedsOne(Passport);
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-09-07 11:24:05 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 11:24:05 +00:00
|
|
|
it('should create an embedded item on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.passportItem.create({name: 'Fredric'}, function(err, passport) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 11:24:05 +00:00
|
|
|
passport.id.should.match(/^[0-9a-fA-F]{24}$/);
|
|
|
|
p.passport.name.should.equal('Fredric');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsMany', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let address1, address2;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
tmp = getTransientDataSource({defaultIdType: Number});
|
|
|
|
Person = db.define('Person', {name: String});
|
|
|
|
Address = tmp.define('Address', {street: String});
|
2014-07-27 14:30:45 +00:00
|
|
|
Address.validatesPresenceOf('street');
|
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-07-27 14:30:45 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2017-10-31 14:55:54 +00:00
|
|
|
Person.embedsMany(Address, {
|
|
|
|
options: {
|
|
|
|
property: {
|
|
|
|
postgresql: {
|
|
|
|
dataType: 'json',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-07-27 14:30:45 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should have setup embedded accessor/scope', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person({name: 'Fred'});
|
2014-07-27 14:30:45 +00:00
|
|
|
p.addresses.should.be.an.array;
|
|
|
|
p.addresses.should.have.length(0);
|
|
|
|
p.addressList.should.be.a.function;
|
|
|
|
p.addressList.findById.should.be.a.function;
|
|
|
|
p.addressList.updateById.should.be.a.function;
|
|
|
|
p.addressList.destroy.should.be.a.function;
|
|
|
|
p.addressList.exists.should.be.a.function;
|
|
|
|
p.addressList.create.should.be.a.function;
|
|
|
|
p.addressList.build.should.be.a.function;
|
|
|
|
});
|
2014-07-28 23:15:37 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should create embedded items on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
|
|
|
p.addressList.create({street: 'Street 1'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-30 13:01:55 +00:00
|
|
|
address1 = address;
|
2014-07-28 23:15:37 +00:00
|
|
|
should.exist(address1.id);
|
2014-07-30 13:01:55 +00:00
|
|
|
address1.street.should.equal('Street 1');
|
2014-07-27 14:30:45 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-10-31 14:55:54 +00:00
|
|
|
it('respects property options on the embedded property', function() {
|
|
|
|
Person.definition.properties.addresses.should.have.property('postgresql');
|
|
|
|
Person.definition.properties.addresses.postgresql.should.eql({dataType: 'json'});
|
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should create embedded items on scope', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({street: 'Street 2'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-30 13:01:55 +00:00
|
|
|
address2 = address;
|
2014-07-28 23:15:37 +00:00
|
|
|
should.exist(address2.id);
|
|
|
|
address2.street.should.equal('Street 2');
|
2014-07-27 14:30:45 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should return embedded items from scope', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addressList(function(err, addresses) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const list = p.addressList();
|
2014-09-04 19:51:59 +00:00
|
|
|
list.should.equal(addresses);
|
|
|
|
list.should.equal(p.addresses);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-04 19:57:18 +00:00
|
|
|
p.addressList.value().should.equal(list);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
addresses.should.have.length(2);
|
2014-07-28 23:15:37 +00:00
|
|
|
addresses[0].id.should.eql(address1.id);
|
2014-07-27 14:30:45 +00:00
|
|
|
addresses[0].street.should.equal('Street 1');
|
2014-07-28 23:15:37 +00:00
|
|
|
addresses[1].id.should.eql(address2.id);
|
2014-07-27 14:30:45 +00:00
|
|
|
addresses[1].street.should.equal('Street 2');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should filter embedded items on scope', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList({where: {street: 'Street 2'}}, function(err, addresses) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-27 14:30:45 +00:00
|
|
|
addresses.should.have.length(1);
|
2014-07-28 23:15:37 +00:00
|
|
|
addresses[0].id.should.eql(address2.id);
|
2014-07-27 14:30:45 +00:00
|
|
|
addresses[0].street.should.equal('Street 2');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should validate embedded items', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2014-07-30 13:01:55 +00:00
|
|
|
p.addressList.create({}, function(err, address) {
|
2014-07-27 14:30:45 +00:00
|
|
|
should.exist(err);
|
2014-07-30 13:01:55 +00:00
|
|
|
should.not.exist(address);
|
2014-07-27 14:30:45 +00:00
|
|
|
err.name.should.equal('ValidationError');
|
|
|
|
err.details.codes.street.should.eql(['presence']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should find embedded items by id', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2014-07-28 23:15:37 +00:00
|
|
|
p.addressList.findById(address2.id, function(err, address) {
|
2014-07-27 14:30:45 +00:00
|
|
|
address.should.be.instanceof(Address);
|
2014-07-28 23:15:37 +00:00
|
|
|
address.id.should.eql(address2.id);
|
2014-07-27 14:30:45 +00:00
|
|
|
address.street.should.equal('Street 2');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should check if item exists', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2014-07-28 23:15:37 +00:00
|
|
|
p.addressList.exists(address2.id, function(err, exists) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-27 14:30:45 +00:00
|
|
|
exists.should.be.true;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should update embedded items by id', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.updateById(address2.id, {street: 'New Street'}, function(err, address) {
|
2014-07-27 14:30:45 +00:00
|
|
|
address.should.be.instanceof(Address);
|
2014-07-28 23:15:37 +00:00
|
|
|
address.id.should.eql(address2.id);
|
2014-07-27 14:30:45 +00:00
|
|
|
address.street.should.equal('New Street');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should validate the update of embedded items', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.updateById(address2.id, {street: null}, function(err, address) {
|
2014-07-27 14:30:45 +00:00
|
|
|
err.name.should.equal('ValidationError');
|
|
|
|
err.details.codes.street.should.eql(['presence']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should find embedded items by id - verify', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2014-07-28 23:15:37 +00:00
|
|
|
p.addressList.findById(address2.id, function(err, address) {
|
2014-07-27 14:30:45 +00:00
|
|
|
address.should.be.instanceof(Address);
|
2014-07-28 23:15:37 +00:00
|
|
|
address.id.should.eql(address2.id);
|
2014-07-27 14:30:45 +00:00
|
|
|
address.street.should.equal('New Street');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:51:33 +00:00
|
|
|
it('should have accessors: at, get, set', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
p.addressList.at(0).id.should.eql(address1.id);
|
|
|
|
p.addressList.get(address1.id).id.should.eql(address1.id);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.set(address1.id, {street: 'Changed 1'});
|
2014-07-29 08:51:33 +00:00
|
|
|
p.addresses[0].street.should.equal('Changed 1');
|
2017-04-06 20:04:16 +00:00
|
|
|
p.addressList.at(1).id.should.eql(address2.id);
|
|
|
|
p.addressList.get(address2.id).id.should.eql(address2.id);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.set(address2.id, {street: 'Changed 2'});
|
2014-07-29 08:51:33 +00:00
|
|
|
p.addresses[1].street.should.equal('Changed 2');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should remove embedded items by id', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(2);
|
2014-07-28 23:15:37 +00:00
|
|
|
p.addressList.destroy(address1.id, function(err) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-27 14:30:45 +00:00
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-03-24 14:35:56 +00:00
|
|
|
it('should have removed embedded items - verify', function(done) {
|
2014-07-27 14:30:45 +00:00
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2019-05-31 19:06:58 +00:00
|
|
|
it('should pass options when removed by id', function(done) {
|
|
|
|
const verifyOptions = function(ctx, next) {
|
|
|
|
if (!ctx.options || !ctx.options.verify) {
|
|
|
|
return next(new Error('options or options.verify is missing'));
|
|
|
|
}
|
|
|
|
return next();
|
|
|
|
};
|
|
|
|
Person.observe('before save', verifyOptions);
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addressList.create({street: 'options 1'}, {verify: true}, function(err, address) {
|
|
|
|
if (err) {
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
p.addressList.destroy(address.id, {verify: true}, function(err) {
|
|
|
|
if (err) {
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
Person.findById(p.id, function(err, verify) {
|
|
|
|
if (err) {
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
verify.addresses.should.have.length(1);
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should pass options when removed by where', function(done) {
|
|
|
|
const verifyOptions = function(ctx, next) {
|
|
|
|
if (!ctx.options || !ctx.options.verify) {
|
|
|
|
return next(new Error('options or options.verify is missing'));
|
|
|
|
}
|
|
|
|
return next();
|
|
|
|
};
|
|
|
|
Person.observe('before save', verifyOptions);
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addressList.create({street: 'options 2'}, {verify: true}, function(err, address) {
|
|
|
|
if (err) {
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
p.addressList.destroyAll({street: 'options 2'}, {verify: true}, function(err) {
|
|
|
|
if (err) {
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
Person.findById(p.id, function(err, verify) {
|
|
|
|
if (err) {
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
verify.addresses.should.have.length(1);
|
|
|
|
Person.clearObservers('before save');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2015-03-24 14:35:56 +00:00
|
|
|
it('should create embedded items on scope', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({street: 'Street 3'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-03-24 14:35:56 +00:00
|
|
|
address.street.should.equal('Street 3');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should remove embedded items - filtered', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(2);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.destroyAll({street: 'Street 3'}, function(err) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-03-24 14:35:56 +00:00
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should remove all embedded items', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
p.addressList.destroyAll(function(err) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-03-24 14:35:56 +00:00
|
|
|
p.addresses.should.have.length(0);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have removed all embedded items - verify', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(0);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2015-04-01 14:59:21 +00:00
|
|
|
it('should save an unsaved model', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person({name: 'Fred'});
|
2015-04-01 14:59:21 +00:00
|
|
|
p.isNewRecord().should.be.true;
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({street: 'Street 4'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-04-01 14:59:21 +00:00
|
|
|
address.street.should.equal('Street 4');
|
|
|
|
p.isNewRecord().should.be.false;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-07-27 14:30:45 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-04-13 17:17:40 +00:00
|
|
|
describe('embedsMany - omit default value for embedded item', function() {
|
|
|
|
before(function(done) {
|
|
|
|
tmp = getTransientDataSource({defaultIdType: Number});
|
|
|
|
Person = db.define('Person', {name: String});
|
|
|
|
Address = tmp.define('Address', {street: String});
|
|
|
|
Address.validatesPresenceOf('street');
|
|
|
|
|
|
|
|
db.automigrate(['Person'], done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can be declared', function(done) {
|
|
|
|
Person.embedsMany(Address, {
|
|
|
|
options: {
|
|
|
|
omitDefaultEmbeddedItem: true,
|
|
|
|
property: {
|
|
|
|
postgresql: {
|
|
|
|
dataType: 'json',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
db.automigrate(['Person'], done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not set default value for embedded item', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = new Person({name: 'Fred'});
|
2018-04-13 17:17:40 +00:00
|
|
|
p.should.have.property('addresses', undefined);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create embedded items on scope', function(done) {
|
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
|
|
|
p.addressList.create({street: 'Street 1'}, function(err, address) {
|
|
|
|
if (err) return done(err);
|
|
|
|
should.exist(address.id);
|
|
|
|
address.street.should.equal('Street 1');
|
|
|
|
p.addresses.should.be.array;
|
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should build embedded items', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
p.addressList.build({id: 'home', street: 'Home'});
|
|
|
|
p.addressList.build({id: 'work', street: 'Work'});
|
|
|
|
p.addresses.should.have.length(3);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not create embedded from attributes - relation name', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const addresses = [
|
2018-04-13 17:17:40 +00:00
|
|
|
{id: 'home', street: 'Home Street'},
|
|
|
|
{id: 'work', street: 'Work Street'},
|
|
|
|
];
|
|
|
|
Person.create({name: 'Wilma', addressList: addresses}, function(err, p) {
|
|
|
|
if (err) return done(err);
|
|
|
|
p.should.have.property('addresses', undefined);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsMany - numeric ids + forceId', function() {
|
|
|
|
before(function(done) {
|
2014-09-07 18:54:11 +00:00
|
|
|
tmp = getTransientDataSource();
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String});
|
2014-09-07 18:54:11 +00:00
|
|
|
Address = tmp.define('Address', {
|
2016-08-19 17:46:59 +00:00
|
|
|
id: {type: Number, id: true},
|
2016-04-01 11:48:17 +00:00
|
|
|
street: String,
|
2014-09-07 18:54:11 +00:00
|
|
|
});
|
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-09-07 18:54:11 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.embedsMany(Address, {options: {forceId: true}});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-09-07 18:54:11 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 18:54:11 +00:00
|
|
|
it('should create embedded items on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
|
|
|
p.addressList.create({street: 'Street 1'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 18:54:11 +00:00
|
|
|
address.id.should.equal(1);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({street: 'Street 2'}, function(err, address) {
|
2014-09-07 18:54:11 +00:00
|
|
|
address.id.should.equal(2);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({id: 12345, street: 'Street 3'}, function(err, address) {
|
2014-09-07 18:54:11 +00:00
|
|
|
address.id.should.equal(3);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsMany - explicit ids', function() {
|
|
|
|
before(function(done) {
|
2014-09-04 15:56:26 +00:00
|
|
|
tmp = getTransientDataSource();
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String});
|
|
|
|
Address = tmp.define('Address', {street: String}, {forceId: false});
|
2014-07-27 14:30:45 +00:00
|
|
|
Address.validatesPresenceOf('street');
|
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-07-27 14:30:45 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2014-08-30 09:43:36 +00:00
|
|
|
Person.embedsMany(Address);
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person'], done);
|
2014-07-27 14:30:45 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should create embedded items on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
|
|
|
p.addressList.create({id: 'home', street: 'Street 1'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({id: 'work', street: 'Work Street 2'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-30 13:01:55 +00:00
|
|
|
address.id.should.equal('work');
|
|
|
|
address.street.should.equal('Work Street 2');
|
2014-07-27 14:30:45 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should find embedded items by id', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addressList.findById('work', function(err, address) {
|
|
|
|
address.should.be.instanceof(Address);
|
|
|
|
address.id.should.equal('work');
|
|
|
|
address.street.should.equal('Work Street 2');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should check for duplicate ids', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({id: 'home', street: 'Invalid'}, function(err, addresses) {
|
2014-07-27 14:30:45 +00:00
|
|
|
should.exist(err);
|
|
|
|
err.name.should.equal('ValidationError');
|
|
|
|
err.details.codes.addresses.should.eql(['uniqueness']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should update embedded items by id', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.updateById('home', {street: 'New Street'}, function(err, address) {
|
2014-07-27 14:30:45 +00:00
|
|
|
address.should.be.instanceof(Address);
|
|
|
|
address.id.should.equal('home');
|
|
|
|
address.street.should.equal('New Street');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should remove embedded items by id', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(2);
|
|
|
|
p.addressList.destroy('home', function(err) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-27 14:30:45 +00:00
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:30:45 +00:00
|
|
|
it('should have embedded items - verify', function(done) {
|
|
|
|
Person.findOne(function(err, p) {
|
|
|
|
p.addresses.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 14:54:01 +00:00
|
|
|
it('should validate all embedded items', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const addresses = [];
|
2016-08-19 17:46:59 +00:00
|
|
|
addresses.push({id: 'home', street: 'Home Street'});
|
|
|
|
addresses.push({id: 'work', street: ''});
|
|
|
|
Person.create({name: 'Wilma', addresses: addresses}, function(err, p) {
|
2014-07-27 14:54:01 +00:00
|
|
|
err.name.should.equal('ValidationError');
|
2015-01-12 13:52:54 +00:00
|
|
|
err.details.messages.addresses.should.eql([
|
2016-04-01 11:48:17 +00:00
|
|
|
'contains invalid item: `work` (`street` can\'t be blank)',
|
2015-01-12 13:52:54 +00:00
|
|
|
]);
|
2014-07-27 14:54:01 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-27 15:16:25 +00:00
|
|
|
it('should build embedded items', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Wilma'}, function(err, p) {
|
|
|
|
p.addressList.build({id: 'home', street: 'Home'});
|
|
|
|
p.addressList.build({id: 'work', street: 'Work'});
|
2014-07-27 15:16:25 +00:00
|
|
|
p.addresses.should.have.length(2);
|
|
|
|
p.save(function(err, p) {
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2014-07-27 15:16:25 +00:00
|
|
|
it('should have embedded items - verify', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.findOne({where: {name: 'Wilma'}}, function(err, p) {
|
2014-07-27 15:16:25 +00:00
|
|
|
p.name.should.equal('Wilma');
|
|
|
|
p.addresses.should.have.length(2);
|
|
|
|
p.addresses[0].id.should.equal('home');
|
|
|
|
p.addresses[0].street.should.equal('Home');
|
|
|
|
p.addresses[1].id.should.equal('work');
|
|
|
|
p.addresses[1].street.should.equal('Work');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:51:33 +00:00
|
|
|
it('should have accessors: at, get, set', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.findOne({where: {name: 'Wilma'}}, function(err, p) {
|
2014-07-29 08:51:33 +00:00
|
|
|
p.name.should.equal('Wilma');
|
|
|
|
p.addresses.should.have.length(2);
|
|
|
|
p.addressList.at(0).id.should.equal('home');
|
|
|
|
p.addressList.get('home').id.should.equal('home');
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.set('home', {id: 'den'}).id.should.equal('den');
|
2014-07-29 08:51:33 +00:00
|
|
|
p.addressList.at(1).id.should.equal('work');
|
|
|
|
p.addressList.get('work').id.should.equal('work');
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.set('work', {id: 'factory'}).id.should.equal('factory');
|
2014-07-29 08:51:33 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-21 08:44:55 +00:00
|
|
|
it('should create embedded from attributes - property name', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const addresses = [
|
2016-08-19 17:46:59 +00:00
|
|
|
{id: 'home', street: 'Home Street'},
|
|
|
|
{id: 'work', street: 'Work Street'},
|
2014-08-21 08:44:55 +00:00
|
|
|
];
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Wilma', addresses: addresses}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-21 08:44:55 +00:00
|
|
|
p.addressList.at(0).id.should.equal('home');
|
|
|
|
p.addressList.at(1).id.should.equal('work');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-21 08:44:55 +00:00
|
|
|
it('should not create embedded from attributes - relation name', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const addresses = [
|
2016-08-19 17:46:59 +00:00
|
|
|
{id: 'home', street: 'Home Street'},
|
|
|
|
{id: 'work', street: 'Work Street'},
|
2014-08-21 08:44:55 +00:00
|
|
|
];
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Wilma', addressList: addresses}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-21 08:44:55 +00:00
|
|
|
p.addresses.should.have.length(0);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-30 09:43:36 +00:00
|
|
|
it('should create embedded items with auto-generated id', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Wilma'}, function(err, p) {
|
|
|
|
p.addressList.create({street: 'Home Street 1'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-30 09:43:36 +00:00
|
|
|
address.id.should.match(/^[0-9a-fA-F]{24}$/);
|
|
|
|
address.street.should.equal('Home Street 1');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2014-07-27 14:30:45 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsMany - persisted model', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let address0, address1, address2;
|
|
|
|
let person;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:59:47 +00:00
|
|
|
// This test spefically uses the Memory connector
|
|
|
|
// in order to test the use of the auto-generated
|
|
|
|
// id, in the sequence of the related model.
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2014-09-07 10:59:47 +00:00
|
|
|
db = getMemoryDataSource();
|
2016-08-19 17:46:59 +00:00
|
|
|
Person = db.define('Person', {name: String});
|
|
|
|
Address = db.define('Address', {street: String});
|
2014-09-07 10:17:42 +00:00
|
|
|
Address.validatesPresenceOf('street');
|
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person', 'Address'], done);
|
2014-09-07 10:17:42 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2014-09-07 10:59:47 +00:00
|
|
|
// to save related model itself, set
|
|
|
|
// persistent: true
|
|
|
|
Person.embedsMany(Address, {
|
2016-08-19 17:46:59 +00:00
|
|
|
scope: {order: 'street'},
|
|
|
|
options: {persistent: true},
|
2014-09-07 10:59:47 +00:00
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Person', 'Address'], done);
|
2014-09-07 10:17:42 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:17:42 +00:00
|
|
|
it('should create individual items (0)', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Address.create({street: 'Street 0'}, function(err, inst) {
|
2014-09-07 10:59:47 +00:00
|
|
|
inst.id.should.equal(1); // offset sequence
|
2014-09-07 10:17:42 +00:00
|
|
|
address0 = inst;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:17:42 +00:00
|
|
|
it('should create individual items (1)', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Address.create({street: 'Street 1'}, function(err, inst) {
|
2014-09-07 10:59:47 +00:00
|
|
|
inst.id.should.equal(2);
|
2014-09-07 10:17:42 +00:00
|
|
|
address1 = inst;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:17:42 +00:00
|
|
|
it('should create individual items (2)', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Address.create({street: 'Street 2'}, function(err, inst) {
|
2014-09-07 10:59:47 +00:00
|
|
|
inst.id.should.equal(3);
|
2014-09-07 10:17:42 +00:00
|
|
|
address2 = inst;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:59:47 +00:00
|
|
|
it('should create individual items (3)', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Address.create({street: 'Street 3'}, function(err, inst) {
|
2014-09-07 10:59:47 +00:00
|
|
|
inst.id.should.equal(4); // offset sequence
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:44:45 +00:00
|
|
|
it('should add embedded items on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Fred'}, function(err, p) {
|
2014-09-07 10:44:45 +00:00
|
|
|
person = p;
|
2014-09-07 10:17:42 +00:00
|
|
|
p.addressList.create(address1.toObject(), function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 10:59:47 +00:00
|
|
|
address.id.should.eql(2);
|
2014-09-07 10:44:45 +00:00
|
|
|
address.street.should.equal('Street 1');
|
2014-09-07 10:17:42 +00:00
|
|
|
p.addressList.create(address2.toObject(), function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 10:59:47 +00:00
|
|
|
address.id.should.eql(3);
|
2014-09-07 10:44:45 +00:00
|
|
|
address.street.should.equal('Street 2');
|
2014-09-07 10:17:42 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:44:45 +00:00
|
|
|
it('should create embedded items on scope', function(done) {
|
|
|
|
Person.findById(person.id, function(err, p) {
|
2016-08-19 17:46:59 +00:00
|
|
|
p.addressList.create({street: 'Street 4'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 10:59:47 +00:00
|
|
|
address.id.should.equal(5); // in Address sequence, correct offset
|
|
|
|
address.street.should.equal('Street 4');
|
2014-09-07 10:44:45 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:44:45 +00:00
|
|
|
it('should have embedded items on scope', function(done) {
|
|
|
|
Person.findById(person.id, function(err, p) {
|
|
|
|
p.addressList(function(err, addresses) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 10:44:45 +00:00
|
|
|
addresses.should.have.length(3);
|
|
|
|
addresses[0].street.should.equal('Street 1');
|
|
|
|
addresses[1].street.should.equal('Street 2');
|
2014-09-07 10:59:47 +00:00
|
|
|
addresses[2].street.should.equal('Street 4');
|
2014-09-07 10:44:45 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:17:42 +00:00
|
|
|
it('should validate embedded items on scope - id', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Wilma'}, function(err, p) {
|
|
|
|
p.addressList.create({id: null, street: 'Street 1'}, function(err, address) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-09-07 10:59:47 +00:00
|
|
|
address.street.should.equal('Street 1');
|
2014-09-07 10:17:42 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-07 10:17:42 +00:00
|
|
|
it('should validate embedded items on scope - street', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const newId = uid.fromConnector(db) || 1234;
|
2016-08-19 17:46:59 +00:00
|
|
|
Person.create({name: 'Wilma'}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
p.addressList.create({id: newId}, function(err, address) {
|
2014-09-07 10:17:42 +00:00
|
|
|
should.exist(err);
|
|
|
|
err.name.should.equal('ValidationError');
|
|
|
|
err.details.codes.street.should.eql(['presence']);
|
2018-12-07 16:13:48 +00:00
|
|
|
let expected = 'The `Address` instance is not valid. ';
|
2015-01-12 13:52:54 +00:00
|
|
|
expected += 'Details: `street` can\'t be blank (value: undefined).';
|
2014-09-07 10:17:42 +00:00
|
|
|
err.message.should.equal(expected);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsMany - relations, scope and properties', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let category, job1, job2, job3;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category = db.define('Category', {name: String});
|
|
|
|
Job = db.define('Job', {name: String});
|
|
|
|
Link = db.define('Link', {name: String, notes: String}, {forceId: false});
|
2014-07-29 08:54:28 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2015-02-03 10:37:43 +00:00
|
|
|
Category.embedsMany(Link, {
|
2014-07-29 08:54:28 +00:00
|
|
|
as: 'items', // rename
|
2016-08-19 17:46:59 +00:00
|
|
|
scope: {include: 'job'}, // always include
|
|
|
|
options: {belongsTo: 'job'}, // optional, for add()/remove()
|
2014-07-29 08:54:28 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
Link.belongsTo(Job, {
|
2014-08-26 05:17:40 +00:00
|
|
|
foreignKey: 'id', // re-use the actual job id
|
2016-08-19 17:46:59 +00:00
|
|
|
properties: {id: 'id', name: 'name'}, // denormalize, transfer id
|
|
|
|
options: {invertProperties: true},
|
2014-07-29 08:54:28 +00:00
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Category', 'Job', 'Link'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
Job.create({name: 'Job 0'}, done); // offset ids for tests
|
2014-07-29 15:43:30 +00:00
|
|
|
});
|
2014-07-29 08:54:28 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
it('should setup related items', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Job.create({name: 'Job 1'}, function(err, p) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
job1 = p;
|
2016-08-19 17:46:59 +00:00
|
|
|
Job.create({name: 'Job 2'}, function(err, p) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
job2 = p;
|
2016-08-19 17:46:59 +00:00
|
|
|
Job.create({name: 'Job 3'}, function(err, p) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
job3 = p;
|
2014-07-29 15:43:30 +00:00
|
|
|
done();
|
|
|
|
});
|
2014-07-29 08:54:28 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-15 09:28:25 +00:00
|
|
|
it('should associate items on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category.create({name: 'Category A'}, function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
let link = cat.items.build();
|
2014-08-26 05:17:40 +00:00
|
|
|
link.job(job1);
|
2017-01-31 15:14:53 +00:00
|
|
|
link = cat.items.build();
|
2014-08-26 05:17:40 +00:00
|
|
|
link.job(job2);
|
2014-07-29 08:54:28 +00:00
|
|
|
cat.save(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
let job = cat.items.at(0);
|
2014-08-26 05:17:40 +00:00
|
|
|
job.should.be.instanceof(Link);
|
|
|
|
job.should.not.have.property('jobId');
|
|
|
|
job.id.should.eql(job1.id);
|
|
|
|
job.name.should.equal(job1.name);
|
2017-01-31 15:14:53 +00:00
|
|
|
job = cat.items.at(1);
|
2014-08-26 05:17:40 +00:00
|
|
|
job.id.should.eql(job2.id);
|
|
|
|
job.name.should.equal(job2.name);
|
2014-07-29 08:54:28 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
it('should include related items on scope', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 08:54:28 +00:00
|
|
|
cat.links.should.have.length(2);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
// denormalized properties:
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.items.at(0).should.be.instanceof(Link);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.at(0).id.should.eql(job1.id);
|
|
|
|
cat.items.at(0).name.should.equal(job1.name);
|
|
|
|
cat.items.at(1).id.should.eql(job2.id);
|
|
|
|
cat.items.at(1).name.should.equal(job2.name);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
// lazy-loaded relations
|
2014-08-26 05:17:40 +00:00
|
|
|
should.not.exist(cat.items.at(0).job());
|
|
|
|
should.not.exist(cat.items.at(1).job());
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
cat.items(function(err, items) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.at(0).job().should.be.instanceof(Job);
|
|
|
|
cat.items.at(1).job().should.be.instanceof(Job);
|
|
|
|
cat.items.at(1).job().name.should.equal('Job 2');
|
2014-07-29 08:54:28 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
it('should remove embedded items by id', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 08:54:28 +00:00
|
|
|
cat.links.should.have.length(2);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.destroy(job1.id, function(err) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 08:54:28 +00:00
|
|
|
cat.links.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
it('should find items on scope', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 08:54:28 +00:00
|
|
|
cat.links.should.have.length(1);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.at(0).id.should.eql(job2.id);
|
|
|
|
cat.items.at(0).name.should.equal(job2.name);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
// lazy-loaded relations
|
2014-08-26 05:17:40 +00:00
|
|
|
should.not.exist(cat.items.at(0).job());
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 08:54:28 +00:00
|
|
|
cat.items(function(err, items) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.at(0).job().should.be.instanceof(Job);
|
|
|
|
cat.items.at(0).job().name.should.equal('Job 2');
|
2014-07-29 08:54:28 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 15:43:30 +00:00
|
|
|
it('should add related items to scope', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.links.should.have.length(1);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.add(job3, function(err, link) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 15:43:30 +00:00
|
|
|
link.should.be.instanceof(Link);
|
2014-08-26 05:17:40 +00:00
|
|
|
link.id.should.eql(job3.id);
|
|
|
|
link.name.should.equal('Job 3');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.links.should.have.length(2);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2014-07-29 15:43:30 +00:00
|
|
|
it('should find items on scope', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.links.should.have.length(2);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.items.at(0).should.be.instanceof(Link);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.at(0).id.should.eql(job2.id);
|
|
|
|
cat.items.at(0).name.should.equal(job2.name);
|
|
|
|
cat.items.at(1).id.should.eql(job3.id);
|
|
|
|
cat.items.at(1).name.should.equal(job3.name);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 15:43:30 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 15:43:30 +00:00
|
|
|
it('should remove embedded items by reference id', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.links.should.have.length(2);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.items.remove(job2.id, function(err) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.links.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-15 09:28:25 +00:00
|
|
|
it('should have removed embedded items by reference id', function(done) {
|
2014-07-29 15:43:30 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 15:43:30 +00:00
|
|
|
cat.links.should.have.length(1);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-08-15 20:48:38 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let jobId;
|
2014-08-15 20:48:38 +00:00
|
|
|
|
2014-08-15 09:28:25 +00:00
|
|
|
it('should create items on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category.create({name: 'Category B'}, function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-15 09:28:25 +00:00
|
|
|
category = cat;
|
2018-12-07 16:13:48 +00:00
|
|
|
const link = cat.items.build({notes: 'Some notes...'});
|
2016-08-19 17:46:59 +00:00
|
|
|
link.job.create({name: 'Job 1'}, function(err, p) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobId = p.id;
|
2014-08-15 13:12:02 +00:00
|
|
|
cat.links[0].id.should.eql(p.id);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.links[0].name.should.equal('Job 1'); // denormalized
|
2014-08-15 13:12:02 +00:00
|
|
|
cat.links[0].notes.should.equal('Some notes...');
|
|
|
|
cat.items.at(0).should.equal(cat.links[0]);
|
|
|
|
done();
|
|
|
|
});
|
2014-08-15 09:28:25 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2014-08-15 09:28:25 +00:00
|
|
|
it('should find items on scope', function(done) {
|
|
|
|
Category.findById(category.id, function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-15 09:28:25 +00:00
|
|
|
cat.name.should.equal('Category B');
|
|
|
|
cat.links.toObject().should.eql([
|
2016-08-19 17:46:59 +00:00
|
|
|
{id: jobId, name: 'Job 1', notes: 'Some notes...'},
|
2014-08-15 09:28:25 +00:00
|
|
|
]);
|
|
|
|
cat.items.at(0).should.equal(cat.links[0]);
|
|
|
|
cat.items(function(err, items) { // alternative access
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-15 09:28:25 +00:00
|
|
|
items.should.be.an.array;
|
|
|
|
items.should.have.length(1);
|
2014-08-26 05:17:40 +00:00
|
|
|
items[0].job(function(err, p) {
|
|
|
|
p.name.should.equal('Job 1'); // actual value
|
2014-08-15 09:28:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-15 13:12:02 +00:00
|
|
|
it('should update items on scope - and save parent', function(done) {
|
|
|
|
Category.findById(category.id, function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const link = cat.items.at(0);
|
2017-04-13 01:35:01 +00:00
|
|
|
// use 'updateById' instead as a replacement as it is one of the embedsMany methods,
|
|
|
|
// that works with all connectors. `updateAttributes` does not recognize the query done on
|
|
|
|
// the Category Model, resulting with an error in three connectors: mssql, oracle, postgresql
|
|
|
|
cat.items.updateById(link.id, {notes: 'Updated notes...'}, function(err, link) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-15 13:12:02 +00:00
|
|
|
link.notes.should.equal('Updated notes...');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-15 13:12:02 +00:00
|
|
|
it('should find items on scope - verify update', function(done) {
|
|
|
|
Category.findById(category.id, function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-15 13:12:02 +00:00
|
|
|
cat.name.should.equal('Category B');
|
|
|
|
cat.links.toObject().should.eql([
|
2016-08-19 17:46:59 +00:00
|
|
|
{id: jobId, name: 'Job 1', notes: 'Updated notes...'},
|
2014-08-15 13:12:02 +00:00
|
|
|
]);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-15 13:24:00 +00:00
|
|
|
it('should remove items from scope - and save parent', function(done) {
|
|
|
|
Category.findById(category.id, function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-15 13:24:00 +00:00
|
|
|
cat.items.at(0).destroy(function(err, link) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2017-04-07 21:11:33 +00:00
|
|
|
cat.links.should.have.lengthOf(0);
|
2014-08-15 13:24:00 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-15 13:24:00 +00:00
|
|
|
it('should find items on scope - verify destroy', function(done) {
|
|
|
|
Category.findById(category.id, function(err, cat) {
|
2016-07-26 10:23:08 +00:00
|
|
|
if (err) return done(err);
|
2014-08-15 13:24:00 +00:00
|
|
|
cat.name.should.equal('Category B');
|
2017-04-07 21:11:33 +00:00
|
|
|
cat.links.should.have.lengthOf(0);
|
2014-08-15 13:24:00 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-07-29 08:54:28 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('embedsMany - polymorphic relations', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let person1, person2;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2014-09-04 15:56:26 +00:00
|
|
|
tmp = getTransientDataSource();
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-08-19 17:46:59 +00:00
|
|
|
Book = db.define('Book', {name: String});
|
|
|
|
Author = db.define('Author', {name: String});
|
|
|
|
Reader = db.define('Reader', {name: String});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-09-04 15:31:53 +00:00
|
|
|
Link = tmp.define('Link', {
|
2016-08-19 17:46:59 +00:00
|
|
|
id: {type: Number, id: true},
|
2016-04-01 11:48:17 +00:00
|
|
|
name: String, notes: String,
|
2014-09-04 15:31:53 +00:00
|
|
|
}); // generic model
|
2014-07-29 11:57:49 +00:00
|
|
|
Link.validatesPresenceOf('linkedId');
|
|
|
|
Link.validatesPresenceOf('linkedType');
|
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Book', 'Author', 'Reader'], done);
|
2014-07-29 11:57:49 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const idType = db.connector.getDefaultIdType();
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.embedsMany(Link, {as: 'people',
|
2014-07-29 11:57:49 +00:00
|
|
|
polymorphic: 'linked',
|
2016-08-19 17:46:59 +00:00
|
|
|
scope: {include: 'linked'},
|
2015-02-03 10:37:43 +00:00
|
|
|
});
|
2014-07-29 11:57:49 +00:00
|
|
|
Link.belongsTo('linked', {
|
2018-06-12 07:13:32 +00:00
|
|
|
polymorphic: {idType: idType}, // native type
|
|
|
|
properties: {name: 'name'}, // denormalized
|
2016-08-19 17:46:59 +00:00
|
|
|
options: {invertProperties: true},
|
2014-07-29 11:57:49 +00:00
|
|
|
});
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Book', 'Author', 'Reader'], done);
|
2014-07-29 11:57:49 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 11:57:49 +00:00
|
|
|
it('should setup related items', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Author.create({name: 'Author 1'}, function(err, p) {
|
2014-07-29 11:57:49 +00:00
|
|
|
person1 = p;
|
2016-08-19 17:46:59 +00:00
|
|
|
Reader.create({name: 'Reader 1'}, function(err, p) {
|
2014-07-29 11:57:49 +00:00
|
|
|
person2 = p;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 11:57:49 +00:00
|
|
|
it('should create items on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Book.create({name: 'Book'}, function(err, book) {
|
2018-12-07 16:13:48 +00:00
|
|
|
let link = book.people.build({notes: 'Something ...'});
|
2014-07-29 11:57:49 +00:00
|
|
|
link.linked(person1);
|
2017-01-31 15:14:53 +00:00
|
|
|
link = book.people.build();
|
2014-07-29 11:57:49 +00:00
|
|
|
link.linked(person2);
|
|
|
|
book.save(function(err, book) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let link = book.people.at(0);
|
2014-07-29 11:57:49 +00:00
|
|
|
link.should.be.instanceof(Link);
|
|
|
|
link.id.should.equal(1);
|
|
|
|
link.linkedId.should.eql(person1.id);
|
|
|
|
link.linkedType.should.equal('Author');
|
|
|
|
link.name.should.equal('Author 1');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-01-31 15:14:53 +00:00
|
|
|
link = book.people.at(1);
|
2014-07-29 11:57:49 +00:00
|
|
|
link.should.be.instanceof(Link);
|
|
|
|
link.id.should.equal(2);
|
|
|
|
link.linkedId.should.eql(person2.id);
|
|
|
|
link.linkedType.should.equal('Reader');
|
|
|
|
link.name.should.equal('Reader 1');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 11:57:49 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 11:57:49 +00:00
|
|
|
it('should include related items on scope', function(done) {
|
|
|
|
Book.findOne(function(err, book) {
|
|
|
|
book.links.should.have.length(2);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
let link = book.people.at(0);
|
2014-07-29 11:57:49 +00:00
|
|
|
link.should.be.instanceof(Link);
|
2017-04-06 20:04:16 +00:00
|
|
|
link.id.should.eql(1);
|
2014-07-29 11:57:49 +00:00
|
|
|
link.linkedId.should.eql(person1.id);
|
|
|
|
link.linkedType.should.equal('Author');
|
|
|
|
link.notes.should.equal('Something ...');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-01-31 15:14:53 +00:00
|
|
|
link = book.people.at(1);
|
2014-07-29 11:57:49 +00:00
|
|
|
link.should.be.instanceof(Link);
|
2017-04-06 20:04:16 +00:00
|
|
|
link.id.should.eql(2);
|
2014-07-29 11:57:49 +00:00
|
|
|
link.linkedId.should.eql(person2.id);
|
|
|
|
link.linkedType.should.equal('Reader');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 11:57:49 +00:00
|
|
|
// lazy-loaded relations
|
|
|
|
should.not.exist(book.people.at(0).linked());
|
|
|
|
should.not.exist(book.people.at(1).linked());
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-29 11:57:49 +00:00
|
|
|
book.people(function(err, people) {
|
|
|
|
people[0].linked().should.be.instanceof(Author);
|
|
|
|
people[0].linked().name.should.equal('Author 1');
|
|
|
|
people[1].linked().should.be.instanceof(Reader);
|
|
|
|
people[1].linked().name.should.equal('Reader 1');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-10 23:53:23 +00:00
|
|
|
bdd.itIf(connectorCapabilities.supportInclude === true,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should include nested related items on scope', function(done) {
|
2014-07-29 12:05:18 +00:00
|
|
|
// There's some date duplication going on, so it might
|
|
|
|
// make sense to override toObject on a case-by-case basis
|
|
|
|
// to sort this out (delete links, keep people).
|
|
|
|
// In loopback, an afterRemote filter could do this as well.
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
Book.find({include: 'people'}, function(err, books) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const obj = books[0].toObject();
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
obj.should.have.property('links');
|
|
|
|
obj.should.have.property('people');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
obj.links.should.have.length(2);
|
|
|
|
obj.links[0].name.should.be.oneOf('Author 1', 'Reader 1');
|
|
|
|
obj.links[1].name.should.be.oneOf('Author 1', 'Reader 1');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
obj.people.should.have.length(2);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
obj.people[0].name.should.equal('Author 1');
|
|
|
|
obj.people[0].notes.should.equal('Something ...');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
obj.people[0].linked.name.should.equal('Author 1');
|
|
|
|
obj.people[1].linked.name.should.equal('Reader 1');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
done();
|
|
|
|
});
|
2014-07-29 11:57:49 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('referencesMany', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let job1, job2, job3;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category = db.define('Category', {name: String});
|
|
|
|
Job = db.define('Job', {name: String});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Job', 'Category'], done);
|
2014-07-29 13:01:47 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const reverse = function(cb) {
|
2015-02-18 05:04:31 +00:00
|
|
|
cb = cb || createPromiseCallback();
|
2018-12-07 16:13:48 +00:00
|
|
|
const modelInstance = this.modelInstance;
|
|
|
|
const fk = this.definition.keyFrom;
|
|
|
|
const ids = modelInstance[fk] || [];
|
2014-07-30 14:46:05 +00:00
|
|
|
modelInstance.updateAttribute(fk, ids.reverse(), function(err, inst) {
|
|
|
|
cb(err, inst[fk] || []);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
return cb.promise;
|
2014-07-30 14:46:05 +00:00
|
|
|
};
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-07-30 14:46:05 +00:00
|
|
|
reverse.shared = true; // remoting
|
2016-08-19 17:46:59 +00:00
|
|
|
reverse.http = {verb: 'put', path: '/jobs/reverse'};
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-08-19 17:46:59 +00:00
|
|
|
Category.referencesMany(Job, {scopeMethods: {
|
2016-04-01 11:48:17 +00:00
|
|
|
reverse: reverse,
|
|
|
|
}});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-26 05:17:40 +00:00
|
|
|
Category.prototype['__reverse__jobs'].should.be.a.function;
|
|
|
|
should.exist(Category.prototype['__reverse__jobs'].shared);
|
|
|
|
Category.prototype['__reverse__jobs'].http.should.eql(reverse.http);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Job', 'Category'], done);
|
2014-07-29 13:01:47 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should setup test records', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Job.create({name: 'Job 1'}, function(err, p) {
|
2014-08-26 05:17:40 +00:00
|
|
|
job1 = p;
|
2016-08-19 17:46:59 +00:00
|
|
|
Job.create({name: 'Job 3'}, function(err, p) {
|
2014-08-26 05:17:40 +00:00
|
|
|
job3 = p;
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category.create({name: 'Category A'}, function(err, cat) {
|
2015-10-16 16:25:23 +00:00
|
|
|
cat.jobIds.should.be.an.array;
|
|
|
|
cat.jobIds.should.have.length(0);
|
2016-08-19 17:46:59 +00:00
|
|
|
cat.jobs.create({name: 'Job 2'}, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-07 21:11:33 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(1);
|
|
|
|
cat.jobIds[0].should.eql(p.id);
|
2014-08-26 05:17:40 +00:00
|
|
|
p.name.should.equal('Job 2');
|
|
|
|
job2 = p;
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should not allow duplicate record on scope', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobIds = [job2.id, job2.id];
|
2014-07-29 19:46:12 +00:00
|
|
|
cat.save(function(err, p) {
|
|
|
|
should.exist(err);
|
|
|
|
err.name.should.equal('ValidationError');
|
2014-08-26 05:17:40 +00:00
|
|
|
err.details.codes.jobs.should.eql(['uniqueness']);
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2017-04-07 21:11:33 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(1);
|
|
|
|
cat.jobIds[0].should.eql(job2.id);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs(function(err, jobs) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = jobs[0];
|
2014-08-26 05:17:40 +00:00
|
|
|
p.id.should.eql(job2.id);
|
|
|
|
p.name.should.equal('Job 2');
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope - findById', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2017-04-07 21:11:33 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(1);
|
|
|
|
cat.jobIds[0].should.eql(job2.id);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.findById(job2.id, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
p.should.be.instanceof(Job);
|
|
|
|
p.id.should.eql(job2.id);
|
|
|
|
p.name.should.equal('Job 2');
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check if a record exists on scope', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.exists(job2.id, function(err, exists) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 19:46:12 +00:00
|
|
|
should.exist(exists);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should update a record on scope', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const attrs = {name: 'Job 2 - edit'};
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.updateById(job2.id, attrs, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 19:46:12 +00:00
|
|
|
p.name.should.equal(attrs.name);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should get a record by index - at', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.at(0, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
p.should.be.instanceof(Job);
|
|
|
|
p.id.should.eql(job2.id);
|
|
|
|
p.name.should.equal('Job 2 - edit');
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should add a record to scope - object', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.add(job1, function(err, prod) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
|
|
|
cat.jobIds[0].should.eql(job2.id);
|
|
|
|
cat.jobIds[1].should.eql(job1.id);
|
2014-08-26 05:17:40 +00:00
|
|
|
prod.id.should.eql(job1.id);
|
2014-07-30 13:01:55 +00:00
|
|
|
prod.should.have.property('name');
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should add a record to scope - object', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.add(job3.id, function(err, prod) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job2.id, job1.id, job3.id];
|
2017-04-06 20:04:16 +00:00
|
|
|
cat.jobIds[0].should.eql(expected[0]);
|
|
|
|
cat.jobIds[1].should.eql(expected[1]);
|
|
|
|
cat.jobIds[2].should.eql(expected[2]);
|
2014-08-26 05:17:40 +00:00
|
|
|
prod.id.should.eql(job3.id);
|
2014-07-30 13:01:55 +00:00
|
|
|
prod.should.have.property('name');
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope - findById', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.findById(job3.id, function(err, p) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
p.id.should.eql(job3.id);
|
|
|
|
p.name.should.equal('Job 3');
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope - filter', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const filter = {where: {name: 'Job 1'}};
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs(filter, function(err, jobs) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = jobs[0];
|
2014-08-26 05:17:40 +00:00
|
|
|
p.id.should.eql(job1.id);
|
|
|
|
p.name.should.equal('Job 1');
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should remove items from scope', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.remove(job1.id, function(err, ids) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job2.id, job3.id];
|
2017-04-06 20:04:16 +00:00
|
|
|
cat.jobIds[0].should.eql(expected[0]);
|
|
|
|
cat.jobIds[1].should.eql(expected[1]);
|
|
|
|
cat.jobIds[0].should.eql(ids[0]);
|
|
|
|
cat.jobIds[1].should.eql(ids[1]);
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope - verify', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job2.id, job3.id];
|
2017-04-06 20:04:16 +00:00
|
|
|
cat.jobIds[0].should.eql(expected[0]);
|
|
|
|
cat.jobIds[1].should.eql(expected[1]);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs(function(err, jobs) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(2);
|
|
|
|
jobs[0].id.should.eql(job2.id);
|
|
|
|
jobs[1].id.should.eql(job3.id);
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should find items on scope and ordered them by name DESC', function(done) {
|
|
|
|
Category.find(function(err, categories) {
|
|
|
|
categories.should.have.length(1);
|
|
|
|
categories[0].jobs({order: 'name DESC'}, function(err, jobs) {
|
|
|
|
if (err) return done(err);
|
|
|
|
jobs.should.have.length(2);
|
|
|
|
jobs[0].id.should.eql(job3.id);
|
|
|
|
jobs[1].id.should.eql(job2.id);
|
|
|
|
done();
|
|
|
|
});
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2015-10-16 16:21:04 +00:00
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should allow custom scope methods - reverse', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
|
|
|
cat.jobs.reverse(function(err, ids) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job3.id, job2.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
ids.toArray().should.eql(expected);
|
|
|
|
cat.jobIds.toArray().should.eql(expected);
|
|
|
|
done();
|
|
|
|
});
|
2014-07-29 20:59:44 +00:00
|
|
|
});
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort === false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should allow custom scope methods - reverse', function(done) {
|
|
|
|
Category.findOne(function(err, cat) {
|
|
|
|
cat.jobs.reverse(function(err, ids) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job3.id, job2.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
ids[0].should.be.oneOf(expected);
|
|
|
|
ids[1].should.be.oneOf(expected);
|
|
|
|
cat.jobIds[0].should.be.oneOf(expected);
|
|
|
|
cat.jobIds[1].should.be.oneOf(expected);
|
|
|
|
done();
|
|
|
|
});
|
2017-04-06 20:04:16 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-04-10 23:53:23 +00:00
|
|
|
bdd.itIf(connectorCapabilities.supportInclude === true,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should include related items from scope', function(done) {
|
|
|
|
Category.find({include: 'jobs'}, function(err, categories) {
|
|
|
|
categories.should.have.length(1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const cat = categories[0].toObject();
|
2018-06-12 07:13:32 +00:00
|
|
|
cat.name.should.equal('Category A');
|
|
|
|
cat.jobs.should.have.length(2);
|
|
|
|
cat.jobs[0].id.should.eql(job3.id);
|
|
|
|
cat.jobs[1].id.should.eql(job2.id);
|
|
|
|
done();
|
|
|
|
});
|
2014-07-29 19:46:12 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should destroy items from scope - destroyById', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.destroy(job2.id, function(err) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2017-04-07 21:11:33 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(1);
|
|
|
|
cat.jobIds[0].should.eql(job3.id);
|
2014-08-26 05:17:40 +00:00
|
|
|
Job.exists(job2.id, function(err, exists) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-07-29 19:46:12 +00:00
|
|
|
should.exist(exists);
|
2015-02-18 05:04:31 +00:00
|
|
|
exists.should.be.false;
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope - verify', function(done) {
|
2014-07-29 19:46:12 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2017-04-07 21:11:33 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(1);
|
|
|
|
cat.jobIds[0].should.eql(job3.id);
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs(function(err, jobs) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2014-08-26 05:17:40 +00:00
|
|
|
jobs.should.have.length(1);
|
|
|
|
jobs[0].id.should.eql(job3.id);
|
2014-07-29 19:46:12 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should setup test records with promises', function(done) {
|
|
|
|
db.automigrate(['Job', 'Category'], function() {
|
2016-08-19 17:46:59 +00:00
|
|
|
return Job.create({name: 'Job 1'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(p) {
|
|
|
|
job1 = p;
|
|
|
|
return Job.create({name: 'Job 3'});
|
|
|
|
})
|
|
|
|
.then(function(p) {
|
|
|
|
job3 = p;
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should create record on scope with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category.create({name: 'Category A'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
cat.jobIds.should.be.an.array;
|
|
|
|
cat.jobIds.should.have.length(0);
|
|
|
|
return cat.jobs.create({name: 'Job 2'})
|
|
|
|
.then(function(p) {
|
|
|
|
cat.jobIds.should.have.length(1);
|
|
|
|
cat.jobIds[0].should.eql(p.id);
|
|
|
|
p.name.should.equal('Job 2');
|
|
|
|
job2 = p;
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should not allow duplicate record on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2016-05-19 19:47:31 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
cat.jobIds = [job2.id, job2.id];
|
|
|
|
return cat.save();
|
|
|
|
})
|
|
|
|
.then(
|
2018-06-12 07:13:32 +00:00
|
|
|
function(p) { done(new Error('save() should have failed')); },
|
|
|
|
function(err) {
|
|
|
|
err.name.should.equal('ValidationError');
|
|
|
|
err.details.codes.jobs.should.eql(['uniqueness']);
|
|
|
|
done();
|
2018-07-16 06:46:25 +00:00
|
|
|
}
|
|
|
|
);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should find items on scope with promises', function(done) {
|
|
|
|
Category.findOne()
|
|
|
|
.then(function(cat) {
|
|
|
|
cat.jobIds.toArray().should.eql([job2.id]);
|
|
|
|
return cat.jobs.find();
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = jobs[0];
|
2018-06-12 07:13:32 +00:00
|
|
|
p.id.should.eql(job2.id);
|
|
|
|
p.name.should.equal('Job 2');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort === false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should find items on scope with promises', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const theExpectedIds = [job1.id, job2.id, job3.id];
|
|
|
|
const theExpectedNames = ['Job 1', 'Job 2', 'Job 3'];
|
2018-06-12 07:13:32 +00:00
|
|
|
Category.findOne()
|
|
|
|
.then(function(cat) {
|
|
|
|
cat.jobIds[0].should.be.oneOf(theExpectedIds);
|
|
|
|
return cat.jobs.find();
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = jobs[0];
|
2018-06-12 07:13:32 +00:00
|
|
|
p.id.should.be.oneOf(theExpectedIds);
|
|
|
|
p.name.should.be.oneOf(theExpectedNames);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
|
|
|
});
|
2017-04-06 20:04:16 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope with promises - findById', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
cat.jobIds.should.have.lengthOf(1);
|
|
|
|
cat.jobIds[0].should.eql(job2.id);
|
|
|
|
return cat.jobs.findById(job2.id);
|
|
|
|
})
|
|
|
|
.then(function(p) {
|
|
|
|
p.should.be.instanceof(Job);
|
|
|
|
p.id.should.eql(job2.id);
|
|
|
|
p.name.should.equal('Job 2');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should check if a record exists on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.exists(job2.id)
|
|
|
|
.then(function(exists) {
|
|
|
|
should.exist(exists);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should update a record on scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const attrs = {name: 'Job 2 - edit'};
|
2018-06-12 07:13:32 +00:00
|
|
|
return cat.jobs.updateById(job2.id, attrs)
|
|
|
|
.then(function(p) {
|
|
|
|
p.name.should.equal(attrs.name);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should get a record by index with promises - at', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.at(0);
|
|
|
|
})
|
|
|
|
.then(function(p) {
|
|
|
|
p.should.be.instanceof(Job);
|
|
|
|
p.id.should.eql(job2.id);
|
|
|
|
p.name.should.equal('Job 2 - edit');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should add a record to scope with promises - object', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.add(job1)
|
|
|
|
.then(function(prod) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job2.id, job1.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(expected.length);
|
|
|
|
cat.jobIds.should.containDeep(expected);
|
|
|
|
prod.id.should.eql(job1.id);
|
|
|
|
prod.should.have.property('name');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should add a record to scope with promises - object', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.add(job3.id)
|
|
|
|
.then(function(prod) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job2.id, job1.id, job3.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(expected.length);
|
|
|
|
cat.jobIds.should.containDeep(expected);
|
|
|
|
prod.id.should.eql(job3.id);
|
|
|
|
prod.should.have.property('name');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope with promises - findById', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.findById(job3.id);
|
|
|
|
})
|
|
|
|
.then(function(p) {
|
|
|
|
p.id.should.eql(job3.id);
|
|
|
|
p.name.should.equal('Job 3');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope with promises - filter', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const filter = {where: {name: 'Job 1'}};
|
2018-06-12 07:13:32 +00:00
|
|
|
return cat.jobs.find(filter);
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
|
|
|
jobs.should.have.length(1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const p = jobs[0];
|
2018-06-12 07:13:32 +00:00
|
|
|
p.id.should.eql(job1.id);
|
|
|
|
p.name.should.equal('Job 1');
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should remove items from scope with promises', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.remove(job1.id)
|
|
|
|
.then(function(ids) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job2.id, job3.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(expected.length);
|
|
|
|
cat.jobIds.should.containDeep(expected);
|
|
|
|
cat.jobIds.should.eql(ids);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope with promises - verify', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job2.id, job3.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(expected.length);
|
|
|
|
cat.jobIds.should.containDeep(expected);
|
|
|
|
return cat.jobs.find();
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
|
|
|
jobs.should.have.length(2);
|
|
|
|
jobs[0].id.should.eql(job2.id);
|
|
|
|
jobs[1].id.should.eql(job3.id);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should find items on scope and ordered them by name DESC', function(done) {
|
|
|
|
Category.find()
|
|
|
|
.then(function(categories) {
|
|
|
|
categories.should.have.length(1);
|
|
|
|
return categories[0].jobs.find({order: 'name DESC'});
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
|
|
|
jobs.should.have.length(2);
|
|
|
|
jobs[0].id.should.eql(job3.id);
|
|
|
|
jobs[1].id.should.eql(job2.id);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
|
|
|
});
|
2015-10-16 16:21:04 +00:00
|
|
|
|
2017-04-06 20:04:16 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort !== false,
|
2018-06-12 07:13:32 +00:00
|
|
|
'should allow custom scope methods with promises - reverse', function(done) {
|
|
|
|
Category.findOne()
|
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.reverse()
|
|
|
|
.then(function(ids) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job3.id, job2.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
ids.toArray().should.eql(expected);
|
|
|
|
cat.jobIds.toArray().should.eql(expected);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(done);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
|
2017-04-10 23:53:23 +00:00
|
|
|
bdd.itIf(connectorCapabilities.adhocSort === true &&
|
|
|
|
connectorCapabilities.supportInclude === true,
|
2017-04-06 20:04:16 +00:00
|
|
|
'should include related items from scope with promises', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category.find({include: 'jobs'})
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(categories) {
|
|
|
|
categories.should.have.length(1);
|
2018-12-07 16:13:48 +00:00
|
|
|
const cat = categories[0].toObject();
|
2018-06-12 07:13:32 +00:00
|
|
|
cat.name.should.equal('Category A');
|
|
|
|
cat.jobs.should.have.length(2);
|
|
|
|
cat.jobs[0].id.should.eql(job3.id);
|
|
|
|
cat.jobs[1].id.should.eql(job2.id);
|
|
|
|
done();
|
|
|
|
}).catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should destroy items from scope with promises - destroyById', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.destroy(job2.id)
|
|
|
|
.then(function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job3.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
if (connectorCapabilities.adhocSort !== false) {
|
|
|
|
cat.jobIds.toArray().should.eql(expected);
|
|
|
|
} else {
|
|
|
|
cat.jobIds.toArray().should.containDeep(expected);
|
|
|
|
}
|
|
|
|
return Job.exists(job2.id);
|
|
|
|
})
|
|
|
|
.then(function(exists) {
|
|
|
|
should.exist(exists);
|
|
|
|
exists.should.be.false;
|
|
|
|
done();
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
})
|
2018-06-12 07:13:32 +00:00
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
|
|
|
|
2018-06-12 07:13:32 +00:00
|
|
|
// eslint-disable-next-line mocha/no-identical-title
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should find items on scope with promises - verify', function(done) {
|
2015-02-18 05:04:31 +00:00
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const expected = [job3.id];
|
2018-06-12 07:13:32 +00:00
|
|
|
cat.jobIds.should.have.lengthOf(expected.length);
|
|
|
|
cat.jobIds.should.containDeep(expected);
|
|
|
|
return cat.jobs.find();
|
|
|
|
})
|
|
|
|
.then(function(jobs) {
|
|
|
|
jobs.should.have.length(1);
|
|
|
|
jobs[0].id.should.eql(job3.id);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2014-07-29 13:01:47 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
describe('custom relation/scope methods', function() {
|
2018-12-07 16:13:48 +00:00
|
|
|
let categoryId;
|
2014-08-15 20:48:38 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
before(function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category = db.define('Category', {name: String});
|
|
|
|
Job = db.define('Job', {name: String});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Job', 'Category'], done);
|
2014-08-13 09:28:23 +00:00
|
|
|
});
|
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('can be declared', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const relation = Category.hasMany(Job);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2018-12-07 16:13:48 +00:00
|
|
|
const summarize = function(cb) {
|
2015-02-18 05:04:31 +00:00
|
|
|
cb = cb || createPromiseCallback();
|
2018-12-07 16:13:48 +00:00
|
|
|
const modelInstance = this.modelInstance;
|
2014-08-13 09:28:23 +00:00
|
|
|
this.fetch(function(err, items) {
|
|
|
|
if (err) return cb(err, []);
|
2018-12-07 16:13:48 +00:00
|
|
|
const summary = items.map(function(item) {
|
|
|
|
const obj = item.toObject();
|
2014-08-13 09:28:23 +00:00
|
|
|
obj.categoryName = modelInstance.name;
|
|
|
|
return obj;
|
|
|
|
});
|
|
|
|
cb(null, summary);
|
|
|
|
});
|
2015-02-18 05:04:31 +00:00
|
|
|
return cb.promise;
|
2014-08-13 09:28:23 +00:00
|
|
|
};
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-13 09:28:23 +00:00
|
|
|
summarize.shared = true; // remoting
|
2016-08-19 17:46:59 +00:00
|
|
|
summarize.http = {verb: 'get', path: '/jobs/summary'};
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-13 09:28:23 +00:00
|
|
|
relation.defineMethod('summarize', summarize);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-26 05:17:40 +00:00
|
|
|
Category.prototype['__summarize__jobs'].should.be.a.function;
|
|
|
|
should.exist(Category.prototype['__summarize__jobs'].shared);
|
|
|
|
Category.prototype['__summarize__jobs'].http.should.eql(summarize.http);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-08-27 22:59:58 +00:00
|
|
|
db.automigrate(['Job', 'Category'], done);
|
2014-08-13 09:28:23 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2016-04-01 11:48:17 +00:00
|
|
|
it('should setup test records', function(done) {
|
2016-08-19 17:46:59 +00:00
|
|
|
Category.create({name: 'Category A'}, function(err, cat) {
|
2014-08-15 20:48:38 +00:00
|
|
|
categoryId = cat.id;
|
2016-08-19 17:46:59 +00:00
|
|
|
cat.jobs.create({name: 'Job 1'}, function(err, p) {
|
|
|
|
cat.jobs.create({name: 'Job 2'}, function(err, p) {
|
2014-08-13 09:28:23 +00:00
|
|
|
done();
|
|
|
|
});
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2014-08-13 09:28:23 +00:00
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-13 09:28:23 +00:00
|
|
|
it('should allow custom scope methods - summarize', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const categoryIdStr = categoryId.toString();
|
|
|
|
const expected = [
|
2017-04-06 20:04:16 +00:00
|
|
|
{name: 'Job 1', categoryId: categoryIdStr, categoryName: 'Category A'},
|
|
|
|
{name: 'Job 2', categoryId: categoryIdStr, categoryName: 'Category A'},
|
2014-08-13 09:28:23 +00:00
|
|
|
];
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-08-13 09:28:23 +00:00
|
|
|
Category.findOne(function(err, cat) {
|
2014-08-26 05:17:40 +00:00
|
|
|
cat.jobs.summarize(function(err, summary) {
|
2017-04-06 20:04:16 +00:00
|
|
|
if (err) return done(err);
|
2018-12-07 16:13:48 +00:00
|
|
|
const result = summary.map(function(item) {
|
2014-08-13 09:28:23 +00:00
|
|
|
delete item.id;
|
2017-04-06 20:04:16 +00:00
|
|
|
item.categoryId = item.categoryId.toString();
|
2014-08-13 09:28:23 +00:00
|
|
|
return item;
|
|
|
|
});
|
2017-04-06 20:04:16 +00:00
|
|
|
// order-independent match
|
|
|
|
result.should.containDeep(expected);
|
|
|
|
expected.should.containDeep(result);
|
2014-08-13 09:28:23 +00:00
|
|
|
done();
|
|
|
|
});
|
2016-04-01 11:48:17 +00:00
|
|
|
});
|
2014-08-13 09:28:23 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-02-18 05:04:31 +00:00
|
|
|
it('should allow custom scope methods with promises - summarize', function(done) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const categoryIdStr = categoryId.toString();
|
|
|
|
const expected = [
|
2017-04-06 20:04:16 +00:00
|
|
|
{name: 'Job 1', categoryId: categoryIdStr, categoryName: 'Category A'},
|
|
|
|
{name: 'Job 2', categoryId: categoryIdStr, categoryName: 'Category A'},
|
2015-02-18 05:04:31 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
Category.findOne()
|
2018-06-12 07:13:32 +00:00
|
|
|
.then(function(cat) {
|
|
|
|
return cat.jobs.summarize();
|
|
|
|
})
|
|
|
|
.then(function(summary) {
|
2018-12-07 16:13:48 +00:00
|
|
|
const result = summary.map(function(item) {
|
2018-06-12 07:13:32 +00:00
|
|
|
delete item.id;
|
|
|
|
item.categoryId = item.categoryId.toString();
|
|
|
|
return item;
|
|
|
|
});
|
|
|
|
// order-independent match
|
|
|
|
result.should.containDeep(expected);
|
|
|
|
expected.should.containDeep(result);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
.catch(done);
|
2015-02-18 05:04:31 +00:00
|
|
|
});
|
2014-08-13 09:28:23 +00:00
|
|
|
});
|
2016-12-11 03:49:47 +00:00
|
|
|
|
|
|
|
describe('relation names', function() {
|
|
|
|
it('throws error when a relation name is `trigger`', function() {
|
|
|
|
Chapter = db.define('Chapter', {name: String});
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
db.define(
|
|
|
|
'Book',
|
|
|
|
{name: String},
|
|
|
|
{
|
|
|
|
relations: {
|
|
|
|
trigger: {
|
|
|
|
model: 'Chapter',
|
|
|
|
type: 'hasMany',
|
|
|
|
},
|
|
|
|
},
|
2018-07-16 06:46:25 +00:00
|
|
|
}
|
|
|
|
);
|
2016-12-11 03:49:47 +00:00
|
|
|
}).should.throw('Invalid relation name: trigger');
|
|
|
|
});
|
|
|
|
});
|
2014-11-11 21:36:49 +00:00
|
|
|
});
|