2013-04-06 10:57:12 +00:00
|
|
|
// This test written in mocha+should.js
|
|
|
|
var should = require('./init.js');
|
2015-05-13 18:49:43 +00:00
|
|
|
var async = require('async');
|
2015-05-22 18:39:37 +00:00
|
|
|
var assert = require('assert');
|
|
|
|
|
|
|
|
var DataSource = require('../').DataSource;
|
2013-04-06 10:57:12 +00:00
|
|
|
|
2015-05-13 18:49:43 +00:00
|
|
|
var db, User, Profile, AccessToken, Post, Passport, City, Street, Building, Assembly, Part;
|
2013-03-27 00:46:59 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
describe('include', function () {
|
|
|
|
|
|
|
|
before(setup);
|
|
|
|
|
|
|
|
it('should fetch belongsTo relation', function (done) {
|
2014-03-13 23:43:38 +00:00
|
|
|
Passport.find({include: 'owner'}, function (err, passports) {
|
2014-01-24 17:09:53 +00:00
|
|
|
passports.length.should.be.ok;
|
|
|
|
passports.forEach(function (p) {
|
|
|
|
p.__cachedRelations.should.have.property('owner');
|
2014-01-28 00:04:37 +00:00
|
|
|
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
p.should.have.property('owner');
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
p.toJSON().should.not.have.property('__cachedRelations');
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
var owner = p.__cachedRelations.owner;
|
|
|
|
if (!p.ownerId) {
|
|
|
|
should.not.exist(owner);
|
|
|
|
} else {
|
|
|
|
should.exist(owner);
|
2015-02-08 19:14:51 +00:00
|
|
|
owner.id.should.eql(p.ownerId);
|
2014-01-24 17:09:53 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
done();
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should fetch hasMany relation', function (done) {
|
2014-03-13 23:43:38 +00:00
|
|
|
User.find({include: 'posts'}, function (err, users) {
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.be.ok;
|
|
|
|
users.forEach(function (u) {
|
2014-01-28 00:04:37 +00:00
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
u.should.have.property('posts');
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
u.toJSON().should.not.have.property('__cachedRelations');
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
u.__cachedRelations.should.have.property('posts');
|
|
|
|
u.__cachedRelations.posts.forEach(function (p) {
|
2015-02-08 19:14:51 +00:00
|
|
|
p.userId.should.eql(u.id);
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
done();
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should fetch Passport - Owner - Posts', function (done) {
|
2014-03-13 23:43:38 +00:00
|
|
|
Passport.find({include: {owner: 'posts'}}, function (err, passports) {
|
2015-08-24 13:07:43 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(passports);
|
|
|
|
passports.length.should.be.ok;
|
|
|
|
passports.forEach(function (p) {
|
|
|
|
p.__cachedRelations.should.have.property('owner');
|
2014-01-28 00:04:37 +00:00
|
|
|
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
p.should.have.property('owner');
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
p.toJSON().should.not.have.property('__cachedRelations');
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
var user = p.__cachedRelations.owner;
|
|
|
|
if (!p.ownerId) {
|
|
|
|
should.not.exist(user);
|
|
|
|
} else {
|
|
|
|
should.exist(user);
|
2015-02-08 19:14:51 +00:00
|
|
|
user.id.should.eql(p.ownerId);
|
2014-01-24 17:09:53 +00:00
|
|
|
user.__cachedRelations.should.have.property('posts');
|
2014-03-24 04:07:04 +00:00
|
|
|
user.should.have.property('posts');
|
2015-07-31 21:47:22 +00:00
|
|
|
user.toJSON().should.have.property('posts').and.be.an.Array;
|
2014-01-24 17:09:53 +00:00
|
|
|
user.__cachedRelations.posts.forEach(function (pp) {
|
2015-02-08 19:14:51 +00:00
|
|
|
pp.userId.should.eql(user.id);
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
done();
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-07-31 21:47:22 +00:00
|
|
|
it('should fetch Passport - Owner - empty Posts', function (done) {
|
|
|
|
Passport.findOne({where: {number: '4'}, include: {owner: 'posts'}}, function (err, passport) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(passport);
|
|
|
|
passport.__cachedRelations.should.have.property('owner');
|
|
|
|
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
passport.should.have.property('owner');
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
passport.toJSON().should.not.have.property('__cachedRelations');
|
|
|
|
|
|
|
|
var user = passport.__cachedRelations.owner;
|
|
|
|
should.exist(user);
|
|
|
|
user.id.should.eql(passport.ownerId);
|
|
|
|
user.__cachedRelations.should.have.property('posts');
|
|
|
|
user.should.have.property('posts');
|
2015-12-22 23:03:50 +00:00
|
|
|
user.toJSON().should.have.property('posts').and.be.an.Array().with
|
|
|
|
.length(0);
|
2015-07-31 21:47:22 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-10-10 15:17:36 +00:00
|
|
|
it('should fetch Passport - Owner - Posts - alternate syntax', function (done) {
|
|
|
|
Passport.find({include: {owner: {relation: 'posts'}}}, function (err, passports) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(passports);
|
|
|
|
passports.length.should.be.ok;
|
|
|
|
var posts = passports[0].owner().posts();
|
|
|
|
posts.should.have.length(3);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
|
|
|
|
it('should fetch Passports - User - Posts - User', function (done) {
|
2014-03-13 23:43:38 +00:00
|
|
|
Passport.find({
|
2014-01-24 17:09:53 +00:00
|
|
|
include: {owner: {posts: 'author'}}
|
|
|
|
}, function (err, passports) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(passports);
|
|
|
|
passports.length.should.be.ok;
|
|
|
|
passports.forEach(function (p) {
|
|
|
|
p.__cachedRelations.should.have.property('owner');
|
|
|
|
var user = p.__cachedRelations.owner;
|
|
|
|
if (!p.ownerId) {
|
|
|
|
should.not.exist(user);
|
|
|
|
} else {
|
|
|
|
should.exist(user);
|
2015-02-08 19:14:51 +00:00
|
|
|
user.id.should.eql(p.ownerId);
|
2014-01-24 17:09:53 +00:00
|
|
|
user.__cachedRelations.should.have.property('posts');
|
|
|
|
user.__cachedRelations.posts.forEach(function (pp) {
|
2014-10-10 10:28:39 +00:00
|
|
|
pp.should.have.property('id');
|
2015-02-08 19:14:51 +00:00
|
|
|
pp.userId.should.eql(user.id);
|
2014-03-24 04:07:04 +00:00
|
|
|
pp.should.have.property('author');
|
2014-01-24 17:09:53 +00:00
|
|
|
pp.__cachedRelations.should.have.property('author');
|
|
|
|
var author = pp.__cachedRelations.author;
|
2015-02-08 19:14:51 +00:00
|
|
|
author.id.should.eql(user.id);
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
done();
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 10:28:39 +00:00
|
|
|
it('should fetch Passports with include scope on Posts', function (done) {
|
|
|
|
Passport.find({
|
|
|
|
include: {owner: {relation: 'posts', scope:{
|
|
|
|
fields: ['title'], include: ['author'],
|
|
|
|
order: 'title DESC'
|
|
|
|
}}}
|
|
|
|
}, function (err, passports) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(passports);
|
2015-07-31 21:47:22 +00:00
|
|
|
passports.length.should.equal(4);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 10:28:39 +00:00
|
|
|
var passport = passports[0];
|
|
|
|
passport.number.should.equal('1');
|
|
|
|
passport.owner().name.should.equal('User A');
|
|
|
|
var owner = passport.owner().toObject();
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 10:28:39 +00:00
|
|
|
var posts = passport.owner().posts();
|
|
|
|
posts.should.be.an.array;
|
|
|
|
posts.should.have.length(3);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 10:28:39 +00:00
|
|
|
posts[0].title.should.equal('Post C');
|
2015-02-03 10:37:43 +00:00
|
|
|
posts[0].should.have.property('id', undefined); // omitted
|
2014-10-10 10:28:39 +00:00
|
|
|
posts[0].author().should.be.instanceOf(User);
|
|
|
|
posts[0].author().name.should.equal('User A');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 10:28:39 +00:00
|
|
|
posts[1].title.should.equal('Post B');
|
|
|
|
posts[1].author().name.should.equal('User A');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 10:28:39 +00:00
|
|
|
posts[2].title.should.equal('Post A');
|
|
|
|
posts[2].author().name.should.equal('User A');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 10:28:39 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-05-29 17:50:37 +00:00
|
|
|
it('should support limit', function(done) {
|
|
|
|
Passport.find({
|
|
|
|
include: {
|
|
|
|
owner: {
|
|
|
|
relation: 'posts', scope: {
|
|
|
|
fields: ['title'], include: ['author'],
|
|
|
|
order: 'title DESC',
|
|
|
|
limit: 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
limit: 1
|
|
|
|
}, function(err, passports) {
|
|
|
|
if (err) return done(err);
|
|
|
|
passports.length.should.equal(1);
|
|
|
|
passports[0].toJSON().owner.posts.length.should.equal(2);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
it('should fetch Users with include scope on Posts - belongsTo', function (done) {
|
|
|
|
Post.find({
|
|
|
|
include: { relation: 'author', scope:{ fields: ['name'] }}
|
|
|
|
}, function (err, posts) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(posts);
|
|
|
|
posts.length.should.equal(5);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
var author = posts[0].author();
|
|
|
|
author.name.should.equal('User A');
|
|
|
|
author.should.have.property('id');
|
2015-02-03 10:37:43 +00:00
|
|
|
author.should.have.property('age', undefined);
|
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
it('should fetch Users with include scope on Posts - hasMany', function (done) {
|
2014-10-10 12:24:25 +00:00
|
|
|
User.find({
|
|
|
|
include: {relation: 'posts', scope:{
|
|
|
|
order: 'title DESC'
|
|
|
|
}}
|
|
|
|
}, function (err, users) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.equal(5);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
users[0].name.should.equal('User A');
|
|
|
|
users[1].name.should.equal('User B');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
var posts = users[0].posts();
|
|
|
|
posts.should.be.an.array;
|
|
|
|
posts.should.have.length(3);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
posts[0].title.should.equal('Post C');
|
|
|
|
posts[1].title.should.equal('Post B');
|
|
|
|
posts[2].title.should.equal('Post A');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
var posts = users[1].posts();
|
|
|
|
posts.should.be.an.array;
|
|
|
|
posts.should.have.length(1);
|
|
|
|
posts[0].title.should.equal('Post D');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
it('should fetch Users with include scope on Passports - hasMany', function (done) {
|
2014-10-10 12:24:25 +00:00
|
|
|
User.find({
|
|
|
|
include: {relation: 'passports', scope:{
|
|
|
|
where: { number: '2' }
|
|
|
|
}}
|
|
|
|
}, function (err, users) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.equal(5);
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
users[0].name.should.equal('User A');
|
|
|
|
users[0].passports().should.be.empty;
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
users[1].name.should.equal('User B');
|
|
|
|
var passports = users[1].passports();
|
|
|
|
passports[0].number.should.equal('2');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-10 12:24:25 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
|
|
|
|
it('should fetch User - Posts AND Passports', function (done) {
|
2014-03-13 23:43:38 +00:00
|
|
|
User.find({include: ['posts', 'passports']}, function (err, users) {
|
2014-01-24 17:09:53 +00:00
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.be.ok;
|
|
|
|
users.forEach(function (user) {
|
2014-01-28 00:04:37 +00:00
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
user.should.have.property('posts');
|
|
|
|
user.should.have.property('passports');
|
2014-02-14 01:43:28 +00:00
|
|
|
|
|
|
|
var userObj = user.toJSON();
|
|
|
|
userObj.should.have.property('posts');
|
|
|
|
userObj.should.have.property('passports');
|
|
|
|
userObj.posts.should.be.an.instanceOf(Array);
|
|
|
|
userObj.passports.should.be.an.instanceOf(Array);
|
|
|
|
|
2014-01-28 00:04:37 +00:00
|
|
|
// The __cachedRelations should be removed from json output
|
2014-02-14 01:43:28 +00:00
|
|
|
userObj.should.not.have.property('__cachedRelations');
|
2014-01-28 00:04:37 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
user.__cachedRelations.should.have.property('posts');
|
|
|
|
user.__cachedRelations.should.have.property('passports');
|
|
|
|
user.__cachedRelations.posts.forEach(function (p) {
|
2015-02-08 19:14:51 +00:00
|
|
|
p.userId.should.eql(user.id);
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
user.__cachedRelations.passports.forEach(function (pp) {
|
2015-02-08 19:14:51 +00:00
|
|
|
pp.ownerId.should.eql(user.id);
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
|
|
|
done();
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-27 00:46:59 +00:00
|
|
|
|
2014-11-05 04:45:25 +00:00
|
|
|
it('should fetch User - Posts AND Passports in relation syntax',
|
|
|
|
function(done) {
|
|
|
|
User.find({include: [
|
|
|
|
{relation: 'posts', scope: {
|
|
|
|
where: {title: 'Post A'}
|
|
|
|
}},
|
|
|
|
'passports'
|
|
|
|
]}, function(err, users) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.be.ok;
|
|
|
|
users.forEach(function(user) {
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
user.should.have.property('posts');
|
|
|
|
user.should.have.property('passports');
|
|
|
|
|
|
|
|
var userObj = user.toJSON();
|
|
|
|
userObj.should.have.property('posts');
|
|
|
|
userObj.should.have.property('passports');
|
|
|
|
userObj.posts.should.be.an.instanceOf(Array);
|
|
|
|
userObj.passports.should.be.an.instanceOf(Array);
|
|
|
|
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
userObj.should.not.have.property('__cachedRelations');
|
|
|
|
|
|
|
|
user.__cachedRelations.should.have.property('posts');
|
|
|
|
user.__cachedRelations.should.have.property('passports');
|
|
|
|
user.__cachedRelations.posts.forEach(function(p) {
|
2015-02-08 19:14:51 +00:00
|
|
|
p.userId.should.eql(user.id);
|
2014-11-05 04:45:25 +00:00
|
|
|
p.title.should.be.equal('Post A');
|
|
|
|
});
|
|
|
|
user.__cachedRelations.passports.forEach(function(pp) {
|
2015-02-08 19:14:51 +00:00
|
|
|
pp.ownerId.should.eql(user.id);
|
2014-11-05 04:45:25 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-07-21 20:39:29 +00:00
|
|
|
it('should not fetch User - AccessTokens', function (done) {
|
|
|
|
User.find({include: ['accesstokens']}, function (err, users) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.be.ok;
|
|
|
|
users.forEach(function (user) {
|
|
|
|
var userObj = user.toJSON();
|
|
|
|
userObj.should.not.have.property('accesstokens');
|
|
|
|
});
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-03-13 23:43:38 +00:00
|
|
|
it('should support hasAndBelongsToMany', function (done) {
|
2014-10-14 20:47:59 +00:00
|
|
|
Assembly.create({name: 'car'}, function (err, assembly) {
|
|
|
|
Part.create({partNumber: 'engine'}, function (err, part) {
|
|
|
|
assembly.parts.add(part, function (err, data) {
|
|
|
|
assembly.parts(function (err, parts) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exists(parts);
|
|
|
|
parts.length.should.equal(1);
|
|
|
|
parts[0].partNumber.should.equal('engine');
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
// Create a part
|
|
|
|
assembly.parts.create({partNumber: 'door'}, function (err, part4) {
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
Assembly.find({include: 'parts'}, function (err, assemblies) {
|
|
|
|
assemblies.length.should.equal(1);
|
|
|
|
assemblies[0].parts().length.should.equal(2);
|
|
|
|
done();
|
2014-03-13 23:43:38 +00:00
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2014-03-13 23:43:38 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-02-03 10:37:43 +00:00
|
|
|
|
2015-05-13 18:49:43 +00:00
|
|
|
it('should fetch User - Profile (HasOne)', function (done) {
|
|
|
|
User.find({include: ['profile']}, function (err, users) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.be.ok;
|
|
|
|
var usersWithProfile = 0;
|
|
|
|
users.forEach(function (user) {
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
user.should.have.property('profile');
|
|
|
|
var userObj = user.toJSON();
|
|
|
|
var profile = user.profile();
|
|
|
|
if (profile) {
|
|
|
|
profile.should.be.an.instanceOf(Profile);
|
|
|
|
usersWithProfile++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
(profile === null).should.be.true;
|
|
|
|
}
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
userObj.should.not.have.property('__cachedRelations');
|
|
|
|
user.__cachedRelations.should.have.property('profile');
|
|
|
|
if (user.__cachedRelations.profile) {
|
|
|
|
user.__cachedRelations.profile.userId.should.eql(user.id);
|
|
|
|
usersWithProfile++;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
usersWithProfile.should.equal(2 * 2);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2014-10-14 20:47:59 +00:00
|
|
|
// Not implemented correctly, see: loopback-datasource-juggler/issues/166
|
2015-05-13 18:49:43 +00:00
|
|
|
// fixed by DB optimization
|
|
|
|
it('should support include scope on hasAndBelongsToMany', function (done) {
|
|
|
|
Assembly.find({include: { relation: 'parts', scope: {
|
|
|
|
where: { partNumber: 'engine' }
|
|
|
|
}}}, function (err, assemblies) {
|
|
|
|
assemblies.length.should.equal(1);
|
|
|
|
var parts = assemblies[0].parts();
|
|
|
|
parts.should.have.length(1);
|
|
|
|
parts[0].partNumber.should.equal('engine');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-01-08 10:09:29 +00:00
|
|
|
it('should save related items separately', function(done) {
|
|
|
|
User.find({
|
|
|
|
include: 'posts'
|
|
|
|
})
|
|
|
|
.then(function(users) {
|
|
|
|
var posts = users[0].posts();
|
|
|
|
posts.should.have.length(3);
|
|
|
|
return users[0].save();
|
|
|
|
})
|
|
|
|
.then(function(updatedUser) {
|
|
|
|
return User.findById(updatedUser.id, {
|
|
|
|
include: 'posts'
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.then(function(user) {
|
|
|
|
var posts = user.posts();
|
|
|
|
posts.should.have.length(3);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done);
|
|
|
|
});
|
|
|
|
|
2015-05-20 16:13:56 +00:00
|
|
|
describe('performance', function () {
|
|
|
|
var all;
|
|
|
|
beforeEach(function() {
|
|
|
|
this.called = 0;
|
|
|
|
var self = this;
|
|
|
|
all = db.connector.all;
|
|
|
|
db.connector.all = function(model, filter, options, cb) {
|
|
|
|
self.called++;
|
|
|
|
return all.apply(db.connector, arguments);
|
|
|
|
};
|
2015-05-13 18:49:43 +00:00
|
|
|
});
|
2015-05-20 16:13:56 +00:00
|
|
|
afterEach(function() {
|
|
|
|
db.connector.all = all;
|
2015-05-13 18:49:43 +00:00
|
|
|
});
|
|
|
|
it('including belongsTo should make only 2 db calls', function (done) {
|
|
|
|
var self = this;
|
|
|
|
Passport.find({include: 'owner'}, function (err, passports) {
|
|
|
|
passports.length.should.be.ok;
|
|
|
|
passports.forEach(function (p) {
|
|
|
|
p.__cachedRelations.should.have.property('owner');
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
p.should.have.property('owner');
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
p.toJSON().should.not.have.property('__cachedRelations');
|
|
|
|
var owner = p.__cachedRelations.owner;
|
|
|
|
if (!p.ownerId) {
|
|
|
|
should.not.exist(owner);
|
|
|
|
} else {
|
|
|
|
should.exist(owner);
|
|
|
|
owner.id.should.eql(p.ownerId);
|
|
|
|
}
|
|
|
|
});
|
2015-05-20 16:13:56 +00:00
|
|
|
self.called.should.eql(2);
|
2015-05-13 18:49:43 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('including hasManyThrough should make only 3 db calls', function (done) {
|
|
|
|
var self = this;
|
|
|
|
Assembly.create([{name: 'sedan'}, {name: 'hatchback'},
|
|
|
|
{name: 'SUV'}],
|
|
|
|
function (err, assemblies) {
|
|
|
|
Part.create([{partNumber: 'engine'}, {partNumber: 'bootspace'},
|
|
|
|
{partNumber: 'silencer'}],
|
|
|
|
function (err, parts) {
|
|
|
|
async.each(parts, function (part, next) {
|
|
|
|
async.each(assemblies, function (assembly, next) {
|
|
|
|
if (assembly.name === 'SUV') {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
if (assembly.name === 'hatchback' &&
|
|
|
|
part.partNumber === 'bootspace') {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
assembly.parts.add(part, function (err, data) {
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
}, next);
|
|
|
|
}, function (err) {
|
2015-05-20 16:13:56 +00:00
|
|
|
self.called = 0;
|
2015-05-13 18:49:43 +00:00
|
|
|
Assembly.find({
|
|
|
|
where: {
|
|
|
|
name: {
|
|
|
|
inq: ['sedan', 'hatchback', 'SUV']
|
|
|
|
}
|
|
|
|
},
|
|
|
|
include: 'parts'
|
|
|
|
}, function (err, result) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exists(result);
|
|
|
|
result.length.should.equal(3);
|
2015-05-29 15:57:28 +00:00
|
|
|
// Please note the order of assemblies is random
|
|
|
|
var assemblies = {};
|
|
|
|
result.forEach(function(r) {
|
|
|
|
assemblies[r.name] = r;
|
|
|
|
});
|
2015-05-13 18:49:43 +00:00
|
|
|
//sedan
|
2015-05-29 15:57:28 +00:00
|
|
|
assemblies.sedan.parts().should.have.length(3);
|
|
|
|
//hatchback
|
|
|
|
assemblies.hatchback.parts().should.have.length(2);
|
2015-05-13 18:49:43 +00:00
|
|
|
//SUV
|
2015-05-29 15:57:28 +00:00
|
|
|
assemblies.SUV.parts().should.have.length(0);
|
2015-05-20 16:13:56 +00:00
|
|
|
self.called.should.eql(3);
|
2015-05-13 18:49:43 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('including hasMany should make only 2 db calls', function (done) {
|
|
|
|
var self = this;
|
|
|
|
User.find({include: ['posts', 'passports']}, function (err, users) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.be.ok;
|
|
|
|
users.forEach(function (user) {
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
user.should.have.property('posts');
|
|
|
|
user.should.have.property('passports');
|
|
|
|
|
|
|
|
var userObj = user.toJSON();
|
|
|
|
userObj.should.have.property('posts');
|
|
|
|
userObj.should.have.property('passports');
|
|
|
|
userObj.posts.should.be.an.instanceOf(Array);
|
|
|
|
userObj.passports.should.be.an.instanceOf(Array);
|
|
|
|
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
userObj.should.not.have.property('__cachedRelations');
|
|
|
|
|
|
|
|
user.__cachedRelations.should.have.property('posts');
|
|
|
|
user.__cachedRelations.should.have.property('passports');
|
|
|
|
user.__cachedRelations.posts.forEach(function (p) {
|
|
|
|
p.userId.should.eql(user.id);
|
|
|
|
});
|
|
|
|
user.__cachedRelations.passports.forEach(function (pp) {
|
|
|
|
pp.ownerId.should.eql(user.id);
|
|
|
|
});
|
|
|
|
});
|
2015-05-20 16:13:56 +00:00
|
|
|
self.called.should.eql(3);
|
2015-05-13 18:49:43 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-03-13 23:43:38 +00:00
|
|
|
|
2015-05-13 18:49:43 +00:00
|
|
|
it('should not make n+1 db calls in relation syntax',
|
|
|
|
function (done) {
|
|
|
|
var self = this;
|
|
|
|
User.find({include: [{ relation: 'posts', scope: {
|
|
|
|
where: {title: 'Post A'}
|
|
|
|
}}, 'passports']}, function (err, users) {
|
|
|
|
should.not.exist(err);
|
|
|
|
should.exist(users);
|
|
|
|
users.length.should.be.ok;
|
|
|
|
users.forEach(function (user) {
|
|
|
|
// The relation should be promoted as the 'owner' property
|
|
|
|
user.should.have.property('posts');
|
|
|
|
user.should.have.property('passports');
|
|
|
|
|
|
|
|
var userObj = user.toJSON();
|
|
|
|
userObj.should.have.property('posts');
|
|
|
|
userObj.should.have.property('passports');
|
|
|
|
userObj.posts.should.be.an.instanceOf(Array);
|
|
|
|
userObj.passports.should.be.an.instanceOf(Array);
|
|
|
|
|
|
|
|
// The __cachedRelations should be removed from json output
|
|
|
|
userObj.should.not.have.property('__cachedRelations');
|
|
|
|
|
|
|
|
user.__cachedRelations.should.have.property('posts');
|
|
|
|
user.__cachedRelations.should.have.property('passports');
|
|
|
|
user.__cachedRelations.posts.forEach(function (p) {
|
|
|
|
p.userId.should.eql(user.id);
|
|
|
|
p.title.should.be.equal('Post A');
|
|
|
|
});
|
|
|
|
user.__cachedRelations.passports.forEach(function (pp) {
|
|
|
|
pp.ownerId.should.eql(user.id);
|
|
|
|
});
|
|
|
|
});
|
2015-05-20 16:13:56 +00:00
|
|
|
self.called.should.eql(3);
|
2015-05-13 18:49:43 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2013-03-27 00:46:59 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function setup(done) {
|
2014-01-24 17:09:53 +00:00
|
|
|
db = getSchema();
|
|
|
|
City = db.define('City');
|
|
|
|
Street = db.define('Street');
|
|
|
|
Building = db.define('Building');
|
|
|
|
User = db.define('User', {
|
|
|
|
name: String,
|
|
|
|
age: Number
|
|
|
|
});
|
2015-05-13 18:49:43 +00:00
|
|
|
Profile = db.define('Profile', {
|
|
|
|
profileName: String
|
|
|
|
});
|
2014-07-21 20:39:29 +00:00
|
|
|
AccessToken = db.define('AccessToken', {
|
|
|
|
token: String
|
|
|
|
});
|
2014-01-24 17:09:53 +00:00
|
|
|
Passport = db.define('Passport', {
|
|
|
|
number: String
|
|
|
|
});
|
|
|
|
Post = db.define('Post', {
|
|
|
|
title: String
|
|
|
|
});
|
|
|
|
|
|
|
|
Passport.belongsTo('owner', {model: User});
|
|
|
|
User.hasMany('passports', {foreignKey: 'ownerId'});
|
|
|
|
User.hasMany('posts', {foreignKey: 'userId'});
|
2014-07-21 20:39:29 +00:00
|
|
|
User.hasMany('accesstokens', {
|
|
|
|
foreignKey: 'userId',
|
|
|
|
options: {disableInclude: true}
|
|
|
|
});
|
2015-05-13 18:49:43 +00:00
|
|
|
Profile.belongsTo('user', {model: User});
|
|
|
|
User.hasOne('profile', {foreignKey: 'userId'});
|
2014-01-24 17:09:53 +00:00
|
|
|
Post.belongsTo('author', {model: User, foreignKey: 'userId'});
|
|
|
|
|
2014-03-13 23:43:38 +00:00
|
|
|
Assembly = db.define('Assembly', {
|
|
|
|
name: String
|
|
|
|
});
|
|
|
|
|
|
|
|
Part = db.define('Part', {
|
|
|
|
partNumber: String
|
|
|
|
});
|
|
|
|
|
|
|
|
Assembly.hasAndBelongsToMany(Part);
|
|
|
|
Part.hasAndBelongsToMany(Assembly);
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
db.automigrate(function () {
|
|
|
|
var createdUsers = [];
|
|
|
|
var createdPassports = [];
|
2015-05-13 18:49:43 +00:00
|
|
|
var createdProfiles = [];
|
2014-01-24 17:09:53 +00:00
|
|
|
var createdPosts = [];
|
|
|
|
createUsers();
|
|
|
|
function createUsers() {
|
|
|
|
clearAndCreate(
|
|
|
|
User,
|
|
|
|
[
|
|
|
|
{name: 'User A', age: 21},
|
|
|
|
{name: 'User B', age: 22},
|
|
|
|
{name: 'User C', age: 23},
|
|
|
|
{name: 'User D', age: 24},
|
|
|
|
{name: 'User E', age: 25}
|
|
|
|
],
|
|
|
|
function (items) {
|
|
|
|
createdUsers = items;
|
|
|
|
createPassports();
|
2014-07-21 20:39:29 +00:00
|
|
|
createAccessTokens();
|
2013-03-27 00:46:59 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
);
|
|
|
|
}
|
2013-03-27 00:46:59 +00:00
|
|
|
|
2014-07-21 20:39:29 +00:00
|
|
|
function createAccessTokens() {
|
|
|
|
clearAndCreate(
|
|
|
|
AccessToken,
|
|
|
|
[
|
|
|
|
{token: '1', userId: createdUsers[0].id},
|
|
|
|
{token: '2', userId: createdUsers[1].id}
|
|
|
|
],
|
|
|
|
function (items) {}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
function createPassports() {
|
|
|
|
clearAndCreate(
|
|
|
|
Passport,
|
|
|
|
[
|
|
|
|
{number: '1', ownerId: createdUsers[0].id},
|
|
|
|
{number: '2', ownerId: createdUsers[1].id},
|
2015-07-31 21:47:22 +00:00
|
|
|
{number: '3'},
|
|
|
|
{number: '4', ownerId: createdUsers[2].id},
|
2014-01-24 17:09:53 +00:00
|
|
|
],
|
|
|
|
function (items) {
|
|
|
|
createdPassports = items;
|
|
|
|
createPosts();
|
2013-03-27 00:46:59 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
);
|
|
|
|
}
|
2013-03-27 00:46:59 +00:00
|
|
|
|
2015-05-13 18:49:43 +00:00
|
|
|
function createProfiles() {
|
|
|
|
clearAndCreate(
|
|
|
|
Profile,
|
|
|
|
[
|
|
|
|
{profileName: 'Profile A', userId: createdUsers[0].id},
|
|
|
|
{profileName: 'Profile B', userId: createdUsers[1].id},
|
|
|
|
{profileName: 'Profile Z'}
|
|
|
|
],
|
|
|
|
function (items) {
|
|
|
|
createdProfiles = items
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
function createPosts() {
|
|
|
|
clearAndCreate(
|
|
|
|
Post,
|
|
|
|
[
|
|
|
|
{title: 'Post A', userId: createdUsers[0].id},
|
|
|
|
{title: 'Post B', userId: createdUsers[0].id},
|
|
|
|
{title: 'Post C', userId: createdUsers[0].id},
|
|
|
|
{title: 'Post D', userId: createdUsers[1].id},
|
|
|
|
{title: 'Post E'}
|
|
|
|
],
|
|
|
|
function (items) {
|
|
|
|
createdPosts = items;
|
2015-05-13 18:49:43 +00:00
|
|
|
createProfiles();
|
2013-03-27 00:46:59 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
);
|
|
|
|
}
|
2013-03-27 00:46:59 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
});
|
2013-03-27 00:46:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function clearAndCreate(model, data, callback) {
|
2014-01-24 17:09:53 +00:00
|
|
|
var createdItems = [];
|
|
|
|
model.destroyAll(function () {
|
|
|
|
nextItem(null, null);
|
|
|
|
});
|
2013-03-27 00:46:59 +00:00
|
|
|
|
2014-01-24 17:09:53 +00:00
|
|
|
var itemIndex = 0;
|
|
|
|
|
|
|
|
function nextItem(err, lastItem) {
|
|
|
|
if (lastItem !== null) {
|
|
|
|
createdItems.push(lastItem);
|
|
|
|
}
|
|
|
|
if (itemIndex >= data.length) {
|
|
|
|
callback(createdItems);
|
|
|
|
return;
|
2013-03-27 00:46:59 +00:00
|
|
|
}
|
2014-01-24 17:09:53 +00:00
|
|
|
model.create(data[itemIndex], nextItem);
|
|
|
|
itemIndex++;
|
|
|
|
}
|
2013-03-27 00:46:59 +00:00
|
|
|
}
|
2015-05-22 18:39:37 +00:00
|
|
|
|
|
|
|
describe('Model instance with included relation .toJSON()', function() {
|
|
|
|
var db, ChallengerModel, GameParticipationModel, ResultModel;
|
|
|
|
|
|
|
|
before(function(done) {
|
|
|
|
db = new DataSource({connector: 'memory'});
|
|
|
|
ChallengerModel = db.createModel('Challenger',
|
|
|
|
{
|
|
|
|
name: String
|
|
|
|
},
|
|
|
|
{
|
|
|
|
relations: {
|
|
|
|
gameParticipations: {
|
|
|
|
type: 'hasMany',
|
|
|
|
model: 'GameParticipation',
|
|
|
|
foreignKey: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
GameParticipationModel = db.createModel('GameParticipation',
|
|
|
|
{
|
|
|
|
date: Date
|
|
|
|
},
|
|
|
|
{
|
|
|
|
relations: {
|
|
|
|
challenger: {
|
|
|
|
type: 'belongsTo',
|
|
|
|
model: 'Challenger',
|
|
|
|
foreignKey: ''
|
|
|
|
},
|
|
|
|
results: {
|
|
|
|
type: 'hasMany',
|
|
|
|
model: 'Result',
|
|
|
|
foreignKey: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
ResultModel = db.createModel('Result', {
|
|
|
|
points: Number,
|
|
|
|
}, {
|
|
|
|
relations: {
|
|
|
|
gameParticipation: {
|
|
|
|
type: 'belongsTo',
|
|
|
|
model: 'GameParticipation',
|
|
|
|
foreignKey: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
createChallengers,
|
|
|
|
createGameParticipations,
|
|
|
|
createResults],
|
|
|
|
function(err) {
|
|
|
|
done(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
function createChallengers(callback) {
|
|
|
|
ChallengerModel.create([{name: 'challenger1'}, {name: 'challenger2'}], callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
function createGameParticipations(challengers, callback) {
|
|
|
|
GameParticipationModel.create([
|
|
|
|
{challengerId: challengers[0].id, date: Date.now()},
|
|
|
|
{challengerId: challengers[0].id, date: Date.now()}
|
|
|
|
], callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
function createResults(gameParticipations, callback) {
|
|
|
|
ResultModel.create([
|
|
|
|
{gameParticipationId: gameParticipations[0].id, points: 10},
|
|
|
|
{gameParticipationId: gameParticipations[0].id, points: 20}
|
|
|
|
], callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
it('should recursively serialize objects', function(done) {
|
|
|
|
var filter = {include: {gameParticipations: 'results'}};
|
|
|
|
ChallengerModel.find(filter, function(err, challengers) {
|
|
|
|
|
|
|
|
var levelOneInclusion = challengers[0].toJSON().gameParticipations[0];
|
|
|
|
assert(levelOneInclusion.__data === undefined, '.__data of a level 1 inclusion is undefined.');
|
|
|
|
|
|
|
|
var levelTwoInclusion = challengers[0].toJSON().gameParticipations[0].results[0];
|
|
|
|
assert(levelTwoInclusion.__data === undefined, '__data of a level 2 inclusion is undefined.');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|