loopback-datasource-juggler/test/basic-querying.test.js

2535 lines
78 KiB
JavaScript
Raw Normal View History

2019-05-08 15:45:37 +00:00
// Copyright IBM Corp. 2013,2019. All Rights Reserved.
2016-04-01 22:25:16 +00:00
// Node module: loopback-datasource-juggler
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
2013-04-06 10:57:12 +00:00
// This test written in mocha+should.js
2016-08-22 19:55:22 +00:00
'use strict';
/* global getSchema:false, connectorCapabilities:false */
2018-12-07 14:54:29 +00:00
const async = require('async');
const bdd = require('./helpers/bdd-if');
const should = require('./init.js');
const uid = require('./helpers/uid-generator');
const createTestSetupForParentRef = require('./helpers/setup-parent-ref');
2018-12-07 14:54:29 +00:00
let db, User;
2013-03-26 19:33:11 +00:00
2016-04-01 11:48:17 +00:00
describe('basic-querying', function() {
before(function(done) {
2018-12-07 14:54:29 +00:00
const userModelDef = {
2016-08-19 17:46:59 +00:00
seq: {type: Number, index: true},
name: {type: String, index: true, sort: true},
email: {type: String, index: true},
birthday: {type: Date, index: true},
role: {type: String, index: true},
order: {type: Number, index: true, sort: true},
2019-10-21 16:55:14 +00:00
tag: {type: String, index: true},
2016-08-19 17:46:59 +00:00
vip: {type: Boolean},
2017-01-25 23:27:52 +00:00
address: {
street: String,
city: String,
state: String,
zipCode: String,
tags: [
{
tag: String,
},
],
},
friends: [
{
name: String,
},
],
addressLoc: {
lat: Number,
lng: Number,
},
};
db = getSchema();
// connectors that do not support geo-point types
connectorCapabilities.geoPoint = (db.adapter.name != 'dashdb') && (db.adapter.name != 'db2') &&
(db.adapter.name != 'informix') && (db.adapter.name != 'cassandra');
if (connectorCapabilities.geoPoint) userModelDef.addressLoc = {type: 'GeoPoint'};
User = db.define('User', userModelDef);
2014-01-24 17:09:53 +00:00
db.automigrate(done);
});
2013-03-26 19:33:11 +00:00
2016-04-01 11:48:17 +00:00
describe('ping', function() {
it('should be able to test connections', function(done) {
db.ping(function(err) {
2014-08-20 23:31:23 +00:00
should.not.exist(err);
done();
});
});
});
2016-04-01 11:48:17 +00:00
describe('findById', function() {
before(function(done) {
db = getSchema();
2014-01-24 17:09:53 +00:00
User.destroyAll(done);
});
2013-03-26 19:33:11 +00:00
2016-04-01 11:48:17 +00:00
it('should query by id: not found', function(done) {
2018-12-07 14:54:29 +00:00
const unknownId = uid.fromConnector(db) || 1;
User.findById(unknownId, function(err, u) {
2014-01-24 17:09:53 +00:00
should.not.exist(u);
should.not.exist(err);
done();
});
});
2013-03-26 19:33:11 +00:00
2016-04-01 11:48:17 +00:00
it('should query by id: found', function(done) {
User.create(function(err, u) {
2014-01-24 17:09:53 +00:00
should.not.exist(err);
should.exist(u.id);
2016-04-01 11:48:17 +00:00
User.findById(u.id, function(err, u) {
2014-01-24 17:09:53 +00:00
should.exist(u);
should.not.exist(err);
u.should.be.an.instanceOf(User);
done();
2013-03-26 19:33:11 +00:00
});
2014-01-24 17:09:53 +00:00
});
});
});
2016-04-01 11:48:17 +00:00
describe('findByIds', function() {
2018-12-07 14:54:29 +00:00
let createdUsers;
2014-07-29 13:01:47 +00:00
before(function(done) {
db = getSchema();
2018-12-07 14:54:29 +00:00
const people = [
2016-08-19 17:46:59 +00:00
{name: 'a', vip: true},
{name: 'b', vip: null},
2016-08-19 17:46:59 +00:00
{name: 'c'},
{name: 'd', vip: true},
{name: 'e'},
{name: 'f'},
2014-07-29 13:01:47 +00:00
];
db.automigrate(['User'], function(err) {
User.create(people, function(err, users) {
2015-02-21 05:14:41 +00:00
should.not.exist(err);
// Users might be created in parallel and the generated ids can be
// out of sequence
createdUsers = users;
done();
});
2014-07-29 13:01:47 +00:00
});
});
2015-02-21 05:14:41 +00:00
it('should query by ids', function(done) {
User.findByIds(
[createdUsers[2].id, createdUsers[1].id, createdUsers[0].id],
function(err, users) {
should.exist(users);
should.not.exist(err);
2018-12-07 14:54:29 +00:00
const names = users.map(function(u) {
2015-02-21 05:14:41 +00:00
return u.name;
});
names.should.eql(
[createdUsers[2].name, createdUsers[1].name, createdUsers[0].name],
);
2015-02-21 05:14:41 +00:00
done();
},
);
2014-07-29 13:01:47 +00:00
});
2015-02-21 05:14:41 +00:00
it('should query by ids and condition', function(done) {
User.findByIds([
2016-04-01 11:48:17 +00:00
createdUsers[0].id,
createdUsers[1].id,
createdUsers[2].id,
createdUsers[3].id],
2018-06-12 07:13:32 +00:00
{where: {vip: true}}, function(err, users) {
should.exist(users);
should.not.exist(err);
2018-12-07 14:54:29 +00:00
const names = users.map(function(u) {
2018-06-12 07:13:32 +00:00
return u.name;
2015-02-21 05:14:41 +00:00
});
2018-06-12 07:13:32 +00:00
names.should.eql(createdUsers.slice(0, 4).
filter(function(u) {
return u.vip;
}).map(function(u) {
return u.name;
}));
done();
});
2014-07-29 13:01:47 +00:00
});
bdd.itIf(connectorCapabilities.nullDataValueExists !== false,
2018-06-12 07:13:32 +00:00
'should query by ids to check null property', function(done) {
User.findByIds([
createdUsers[0].id,
createdUsers[1].id],
{where: {vip: null}}, function(err, users) {
should.not.exist(err);
should.exist(users);
users.length.should.eql(1);
users[0].name.should.eql(createdUsers[1].name);
done();
});
2018-06-12 07:13:32 +00:00
});
2014-07-29 13:01:47 +00:00
});
2013-03-26 19:33:11 +00:00
2016-04-01 11:48:17 +00:00
describe('find', function() {
2014-01-24 17:09:53 +00:00
before(seed);
2013-03-26 19:33:11 +00:00
before(function setupDelayingLoadedHook() {
User.observe('loaded', nextAfterDelay);
});
after(function removeDelayingLoadHook() {
User.removeObserver('loaded', nextAfterDelay);
});
2016-04-01 11:48:17 +00:00
it('should query collection', function(done) {
User.find(function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
users.should.have.lengthOf(6);
done();
});
});
2013-03-26 19:33:11 +00:00
2016-04-01 11:48:17 +00:00
it('should query limited collection', function(done) {
2016-08-19 17:46:59 +00:00
User.find({limit: 3}, function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
users.should.have.lengthOf(3);
done();
});
});
2013-03-26 19:33:11 +00:00
bdd.itIf(connectorCapabilities.supportPagination !== false, 'should query collection with skip & ' +
'limit', function(done) {
2016-08-19 17:46:59 +00:00
User.find({skip: 1, limit: 4, order: 'seq'}, function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
users[0].seq.should.be.eql(1);
2014-01-24 17:09:53 +00:00
users.should.have.lengthOf(4);
done();
});
});
2013-03-26 19:33:11 +00:00
bdd.itIf(connectorCapabilities.supportPagination !== false, 'should query collection with offset & ' +
'limit', function(done) {
2016-08-19 17:46:59 +00:00
User.find({offset: 2, limit: 3, order: 'seq'}, function(err, users) {
should.exists(users);
should.not.exists(err);
users[0].seq.should.be.eql(2);
users.should.have.lengthOf(3);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should query filtered collection', function(done) {
2016-08-19 17:46:59 +00:00
User.find({where: {role: 'lead'}}, function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
users.should.have.lengthOf(2);
done();
});
});
2013-03-26 19:33:11 +00:00
bdd.itIf(connectorCapabilities.adhocSort !== false, 'should query collection sorted by numeric ' +
'field', function(done) {
2016-08-19 17:46:59 +00:00
User.find({order: 'order'}, function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
2016-04-01 11:48:17 +00:00
users.forEach(function(u, i) {
2014-01-24 17:09:53 +00:00
u.order.should.eql(i + 1);
2013-03-26 19:33:11 +00:00
});
2014-01-24 17:09:53 +00:00
done();
});
});
2013-03-26 19:33:11 +00:00
bdd.itIf(connectorCapabilities.adhocSort !== false, 'should query collection desc sorted by ' +
'numeric field', function(done) {
2016-08-19 17:46:59 +00:00
User.find({order: 'order DESC'}, function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
2016-04-01 11:48:17 +00:00
users.forEach(function(u, i) {
2014-01-24 17:09:53 +00:00
u.order.should.eql(users.length - i);
2013-03-26 19:33:11 +00:00
});
2014-01-24 17:09:53 +00:00
done();
});
});
2013-03-26 19:33:11 +00:00
bdd.itIf(connectorCapabilities.adhocSort !== false, 'should query collection sorted by string ' +
'field', function(done) {
2016-08-19 17:46:59 +00:00
User.find({order: 'name'}, function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
users.shift().name.should.equal('George Harrison');
users.shift().name.should.equal('John Lennon');
users.pop().name.should.equal('Stuart Sutcliffe');
done();
});
});
2013-03-26 19:33:11 +00:00
bdd.itIf(connectorCapabilities.adhocSort !== false, 'should query collection desc sorted by ' +
'string field', function(done) {
2016-08-19 17:46:59 +00:00
User.find({order: 'name DESC'}, function(err, users) {
2014-01-24 17:09:53 +00:00
should.exists(users);
should.not.exists(err);
users.pop().name.should.equal('George Harrison');
users.pop().name.should.equal('John Lennon');
users.shift().name.should.equal('Stuart Sutcliffe');
done();
});
2013-03-26 19:33:11 +00:00
});
bdd.itIf(connectorCapabilities.adhocSort !== false, 'should query sorted desc by order integer field' +
' even though there is an async model loaded hook', function(done) {
2016-08-19 17:46:59 +00:00
User.find({order: 'order DESC'}, function(err, users) {
if (err) return done(err);
should.exists(users);
2018-12-07 14:54:29 +00:00
const order = users.map(function(u) { return u.order; });
order.should.eql([6, 5, 4, 3, 2, 1]);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support "and" operator that is satisfied', function(done) {
2016-08-19 17:46:59 +00:00
User.find({where: {and: [
{name: 'John Lennon'},
{role: 'lead'},
]}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support "and" operator that is not satisfied', function(done) {
2016-08-19 17:46:59 +00:00
User.find({where: {and: [
{name: 'John Lennon'},
{role: 'member'},
]}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
bdd.itIf(connectorCapabilities.supportOrOperator !== false, 'should support "or" that is ' +
'satisfied', function(done) {
2016-08-19 17:46:59 +00:00
User.find({where: {or: [
{name: 'John Lennon'},
{role: 'lead'},
]}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 2);
done();
});
});
bdd.itIf(connectorCapabilities.supportOrOperator !== false, 'should support "or" operator that is ' +
'not satisfied', function(done) {
2016-08-19 17:46:59 +00:00
User.find({where: {or: [
{name: 'XYZ'},
{role: 'Hello1'},
]}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
bdd.itIf(connectorCapabilities.nullDataValueExists !== false,
2018-06-12 07:13:32 +00:00
'should support where date "neq" null', function(done) {
User.find({where: {birthday: {'neq': null},
}}, function(err, users) {
should.not.exist(err);
should.exist(users);
users.should.have.property('length', 2);
should(users[0].name).be.oneOf('John Lennon', 'Paul McCartney');
should(users[1].name).be.oneOf('John Lennon', 'Paul McCartney');
done();
});
});
bdd.itIf(connectorCapabilities.nullDataValueExists !== false,
2018-06-12 07:13:32 +00:00
'should support where date is null', function(done) {
User.find({where: {birthday: null,
}}, function(err, users) {
should.not.exist(err);
should.exist(users);
users.should.have.property('length', 4);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support date "gte" that is satisfied', function(done) {
User.find({where: {birthday: {'gte': new Date('1980-12-08')},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('John Lennon');
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support date "gt" that is not satisfied', function(done) {
User.find({where: {birthday: {'gt': new Date('1980-12-08')},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support date "gt" that is satisfied', function(done) {
User.find({where: {birthday: {'gt': new Date('1980-12-07')},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('John Lennon');
done();
});
});
2017-07-11 18:56:39 +00:00
bdd.itIf(connectorCapabilities.cloudantCompatible !== false,
'should support date "lt" that is satisfied', function(done) {
User.find({where: {birthday: {'lt': new Date('1980-12-07')},
}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('Paul McCartney');
done();
});
2014-06-06 15:48:05 +00:00
});
2016-04-01 11:48:17 +00:00
it('should support number "gte" that is satisfied', function(done) {
User.find({where: {order: {'gte': 3}}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 4);
users.map(u => u.name).should.containDeep([
'George Harrison', 'Ringo Starr', 'Pete Best', 'Stuart Sutcliffe',
]);
2014-06-06 15:48:05 +00:00
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support number "gt" that is not satisfied', function(done) {
User.find({where: {order: {'gt': 6},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support number "gt" that is satisfied', function(done) {
User.find({where: {order: {'gt': 5},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('Ringo Starr');
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support number "lt" that is satisfied', function(done) {
User.find({where: {order: {'lt': 2},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('Paul McCartney');
done();
});
});
bdd.itIf(connectorCapabilities.ignoreUndefinedConditionValue !== false, 'should support number "gt" ' +
'that is satisfied by null value', function(done) {
User.find({order: 'seq', where: {order: {'gt': null}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
bdd.itIf(connectorCapabilities.ignoreUndefinedConditionValue !== false, 'should support number "lt" ' +
'that is not satisfied by null value', function(done) {
User.find({where: {order: {'lt': null}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
bdd.itIf(connectorCapabilities.ignoreUndefinedConditionValue !== false, 'should support string "gte" ' +
'that is satisfied by null value', function(done) {
User.find({order: 'seq', where: {name: {'gte': null}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
2017-07-11 18:56:39 +00:00
bdd.itIf(connectorCapabilities.cloudantCompatible !== false,
'should support string "gte" that is satisfied', function(done) {
User.find({where: {name: {'gte': 'Paul McCartney'}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 4);
2018-12-07 14:54:29 +00:00
for (let ix = 0; ix < users.length; ix++) {
2017-07-11 18:56:39 +00:00
users[ix].name.should.be.greaterThanOrEqual('Paul McCartney');
}
done();
});
2014-06-06 15:48:05 +00:00
});
2016-04-01 11:48:17 +00:00
it('should support string "gt" that is not satisfied', function(done) {
User.find({where: {name: {'gt': 'xyz'},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 15:48:05 +00:00
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
2017-07-11 18:56:39 +00:00
bdd.itIf(connectorCapabilities.cloudantCompatible !== false,
'should support string "gt" that is satisfied', function(done) {
User.find({where: {name: {'gt': 'Paul McCartney'},
}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 3);
2018-12-07 14:54:29 +00:00
for (let ix = 0; ix < users.length; ix++) {
2017-07-11 18:56:39 +00:00
users[ix].name.should.be.greaterThan('Paul McCartney');
}
done();
});
2014-06-06 15:48:05 +00:00
});
2017-07-11 18:56:39 +00:00
bdd.itIf(connectorCapabilities.cloudantCompatible !== false,
'should support string "lt" that is satisfied', function(done) {
User.find({where: {name: {'lt': 'Paul McCartney'},
}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 2);
2018-12-07 14:54:29 +00:00
for (let ix = 0; ix < users.length; ix++) {
2017-07-11 18:56:39 +00:00
users[ix].name.should.be.lessThan('Paul McCartney');
}
done();
});
2014-06-06 15:48:05 +00:00
});
2016-04-01 11:48:17 +00:00
it('should support boolean "gte" that is satisfied', function(done) {
User.find({where: {vip: {'gte': true},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 16:28:08 +00:00
should.not.exist(err);
users.should.have.property('length', 3);
2018-12-07 14:54:29 +00:00
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.oneOf(['John Lennon', 'Stuart Sutcliffe', 'Paul McCartney']);
users[ix].vip.should.be.true();
}
2014-06-06 16:28:08 +00:00
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support boolean "gt" that is not satisfied', function(done) {
User.find({where: {vip: {'gt': true},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 16:28:08 +00:00
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support boolean "gt" that is satisfied', function(done) {
User.find({where: {vip: {'gt': false},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 16:28:08 +00:00
should.not.exist(err);
users.should.have.property('length', 3);
2018-12-07 14:54:29 +00:00
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.oneOf(['John Lennon', 'Stuart Sutcliffe', 'Paul McCartney']);
users[ix].vip.should.be.true(users[ix].name + ' should be VIP');
}
2014-06-06 16:28:08 +00:00
done();
});
});
2016-04-01 11:48:17 +00:00
it('should support boolean "lt" that is satisfied', function(done) {
User.find({where: {vip: {'lt': true},
2016-04-01 11:48:17 +00:00
}}, function(err, users) {
2014-06-06 16:28:08 +00:00
should.not.exist(err);
users.should.have.property('length', 2);
2018-12-07 14:54:29 +00:00
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.oneOf(['Ringo Starr', 'George Harrison']);
users[ix].vip.should.be.false(users[ix].name + ' should not be VIP');
}
2014-06-06 16:28:08 +00:00
done();
});
});
bdd.itIf(connectorCapabilities.supportInq, 'supports non-empty inq', function() {
2017-01-19 12:33:39 +00:00
// note there is no record with seq=100
return User.find({where: {seq: {inq: [0, 1, 100]}}})
.then(result => {
const seqsFound = result.map(r => r.seq);
should(seqsFound).eql([0, 1]);
2017-01-19 12:33:39 +00:00
});
});
bdd.itIf(connectorCapabilities.supportInq, 'supports empty inq', function() {
2017-01-19 12:33:39 +00:00
return User.find({where: {seq: {inq: []}}})
.then(result => {
const seqsFound = result.map(r => r.seq);
should(seqsFound).eql([]);
});
});
2018-12-07 14:54:29 +00:00
const itWhenIlikeSupported = connectorCapabilities.ilike;
bdd.describeIf(itWhenIlikeSupported, 'ilike', function() {
it('should support "like" that is satisfied',
function(done) {
User.find({where: {name: {like: 'John'}}},
function(err, users) {
if (err) return done(err);
users.length.should.equal(1);
users[0].name.should.equal('John Lennon');
done();
});
});
2019-10-21 16:55:14 +00:00
it('should sanitize invalid usage of like', async () => {
const users = await User.find({where: {tag: {like: '['}}});
users.should.have.length(1);
users[0].should.have.property('name', 'John Lennon');
});
it('should support "like" that is not satisfied',
function(done) {
User.find({where: {name: {like: 'Bob'}}},
function(err, users) {
if (err) return done(err);
users.length.should.equal(0);
done();
});
});
it('should support "ilike" that is satisfied', function(done) {
User.find({where: {name: {ilike: 'john'}}},
function(err, users) {
if (err) return done(err);
users.length.should.equal(1);
users[0].name.should.equal('John Lennon');
done();
});
});
it('should support "ilike" that is not satisfied', function(done) {
User.find({where: {name: {ilike: 'bob'}}}, function(err, users) {
if (err) return done(err);
users.length.should.equal(0);
done();
});
});
2019-10-21 16:55:14 +00:00
it('should properly sanitize invalid ilike filter', async () => {
const users = await User.find({where: {name: {ilike: '['}}});
users.should.be.empty();
});
});
2018-12-07 14:54:29 +00:00
const itWhenNilikeSupported = connectorCapabilities.nilike !== false;
bdd.describeIf(itWhenNilikeSupported, 'nilike', function() {
it('should support "nlike" that is satisfied', function(done) {
User.find({where: {name: {nlike: 'John'}}},
function(err, users) {
if (err) return done(err);
users.length.should.equal(5);
users[0].name.should.equal('Paul McCartney');
done();
});
});
it('should support "nilike" that is satisfied', function(done) {
User.find({where: {name: {nilike: 'john'}}},
function(err, users) {
if (err) return done(err);
users.length.should.equal(5);
users[0].name.should.equal('Paul McCartney');
done();
});
});
});
describe('geo queries', function() {
describe('near filter', function() {
it('supports a basic "near" query', function(done) {
User.find({
where: {
addressLoc: {
near: {lat: 29.9, lng: -90.07},
},
},
}, function(err, users) {
if (err) done(err);
users.should.have.property('length', 3);
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].addressLoc.should.not.be.null();
done();
});
});
it('supports "near" inside a coumpound query with "and"', function(done) {
User.find({
where: {
and: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.07},
},
},
{
vip: true,
},
],
},
}, function(err, users) {
if (err) done(err);
users.should.have.property('length', 2);
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].addressLoc.should.not.be.null();
users[0].vip.should.be.true();
done();
});
});
it('supports "near" inside a complex coumpound query with multiple "and"', function(done) {
User.find({
where: {
and: [
{
and: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.07},
},
},
{
order: 2,
},
],
},
{
vip: true,
},
],
},
}, function(err, users) {
if (err) done(err);
users.should.have.property('length', 1);
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].addressLoc.should.not.be.null();
users[0].vip.should.be.true();
users[0].order.should.equal(2);
done();
});
});
it('supports multiple "near" queries with "or"', function(done) {
User.find({
where: {
or: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.04},
maxDistance: 300,
},
},
{
addressLoc: {
near: {lat: 22.97, lng: -88.03},
maxDistance: 50,
},
},
],
},
}, function(err, users) {
if (err) done(err);
users.should.have.property('length', 2);
users[0].addressLoc.should.not.be.null();
users[0].name.should.equal('Paul McCartney');
users[0].should.be.instanceOf(User);
users[1].addressLoc.should.not.equal(null);
users[1].name.should.equal('John Lennon');
done();
});
});
it('supports multiple "near" queries with "or" ' +
'inside a coumpound query with "and"', function(done) {
User.find({
where: {
and: [
{
or: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.04},
maxDistance: 300,
},
},
{
addressLoc: {
near: {lat: 22.7, lng: -89.03},
maxDistance: 50,
},
},
],
},
{
vip: true,
},
],
},
}, function(err, users) {
if (err) done(err);
users.should.have.property('length', 1);
users[0].addressLoc.should.not.be.null();
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].vip.should.be.true();
done();
});
});
});
});
2016-04-01 11:48:17 +00:00
it('should only include fields as specified', function(done) {
2018-12-07 14:54:29 +00:00
let remaining = 0;
2013-03-26 19:33:11 +00:00
2014-01-24 17:09:53 +00:00
function sample(fields) {
return {
2016-04-01 11:48:17 +00:00
expect: function(arr) {
2014-01-24 17:09:53 +00:00
remaining++;
2016-08-19 17:46:59 +00:00
User.find({fields: fields}, function(err, users) {
2014-01-24 17:09:53 +00:00
remaining--;
if (err) return done(err);
2013-03-26 19:33:11 +00:00
2014-01-24 17:09:53 +00:00
should.exists(users);
if (remaining === 0) {
2013-03-26 19:33:11 +00:00
done();
2014-01-24 17:09:53 +00:00
}
2016-04-01 11:48:17 +00:00
users.forEach(function(user) {
2018-12-07 14:54:29 +00:00
const obj = user.toObject();
2014-01-24 17:09:53 +00:00
Object.keys(obj)
2016-04-01 11:48:17 +00:00
.forEach(function(key) {
2014-01-24 17:09:53 +00:00
// if the obj has an unexpected value
if (obj[key] !== undefined && arr.indexOf(key) === -1) {
console.log('Given fields:', fields);
console.log('Got:', key, obj[key]);
console.log('Expected:', arr);
throw new Error('should not include data for key: ' + key);
}
});
});
2013-03-26 19:33:11 +00:00
});
2016-04-01 11:48:17 +00:00
},
};
2014-01-24 17:09:53 +00:00
}
2016-08-19 17:46:59 +00:00
sample({name: true}).expect(['name']);
sample({name: false}).expect([
2019-10-21 16:55:14 +00:00
'id', 'seq', 'email', 'role', 'order', 'birthday', 'vip', 'address', 'friends', 'addressLoc', 'tag',
]);
2016-08-19 17:46:59 +00:00
sample({name: false, id: true}).expect(['id']);
sample({id: true}).expect(['id']);
2014-01-24 17:09:53 +00:00
sample('id').expect(['id']);
sample(['id']).expect(['id']);
sample(['email']).expect(['email']);
2013-03-26 19:33:11 +00:00
});
2017-01-25 23:27:52 +00:00
it('should ignore non existing properties when excluding', function(done) {
return User.find({fields: {notExist: false}}, (err, users) => {
if (err) return done(err);
users.forEach(user => {
switch (user.seq) { // all fields depending on each document
case 0:
case 1:
Object.keys(user.__data).should.containDeep(['id', 'seq', 'name', 'order', 'role',
'birthday', 'vip', 'address', 'friends']);
break;
case 4: // seq 4
Object.keys(user.__data).should.containDeep(['id', 'seq', 'name', 'order']);
break;
default: // Other records, seq 2, 3, 5
Object.keys(user.__data).should.containDeep(['id', 'seq', 'name', 'order', 'vip']);
}
});
done();
});
});
2018-12-07 14:54:29 +00:00
const describeWhenNestedSupported = connectorCapabilities.nestedProperty;
bdd.describeIf(describeWhenNestedSupported, 'query with nested property', function() {
2017-01-25 23:27:52 +00:00
it('should support nested property in query', function(done) {
User.find({where: {'address.city': 'San Jose'}}, function(err, users) {
if (err) return done(err);
users.length.should.be.equal(1);
2018-12-07 14:54:29 +00:00
for (let i = 0; i < users.length; i++) {
2017-01-25 23:27:52 +00:00
users[i].address.city.should.be.eql('San Jose');
}
done();
});
});
it('should support nested property with regex over arrays in query', function(done) {
User.find({where: {'friends.name': {regexp: /^Ringo/}}}, function(err, users) {
if (err) return done(err);
users.length.should.be.equal(2);
2018-12-07 14:54:29 +00:00
const expectedUsers = ['John Lennon', 'Paul McCartney'];
expectedUsers.indexOf(users[0].name).should.not.equal(-1);
expectedUsers.indexOf(users[1].name).should.not.equal(-1);
2017-01-25 23:27:52 +00:00
done();
});
});
it('should support nested property with gt in query', function(done) {
User.find({where: {'address.city': {gt: 'San'}}}, function(err, users) {
if (err) return done(err);
users.length.should.be.equal(2);
2018-12-07 14:54:29 +00:00
for (let i = 0; i < users.length; i++) {
2017-01-25 23:27:52 +00:00
users[i].address.state.should.be.eql('CA');
}
done();
});
});
2017-07-11 18:56:39 +00:00
bdd.itIf(connectorCapabilities.adhocSort,
'should support nested property for order in query',
function(done) {
User.find({where: {'address.state': 'CA'}, order: 'address.city DESC'},
2018-06-12 07:13:32 +00:00
function(err, users) {
if (err) return done(err);
users.length.should.be.equal(2);
users[0].address.city.should.be.eql('San Mateo');
users[1].address.city.should.be.eql('San Jose');
done();
});
2017-07-11 18:56:39 +00:00
});
2017-01-25 23:27:52 +00:00
it('should support multi-level nested array property in query', function(done) {
User.find({where: {'address.tags.tag': 'business'}}, function(err, users) {
if (err) return done(err);
users.length.should.be.equal(1);
users[0].address.tags[0].tag.should.be.equal('business');
users[0].address.tags[1].tag.should.be.equal('rent');
done();
});
});
it('should fail when querying with an invalid value for a type',
2018-06-12 07:13:32 +00:00
function(done) {
User.find({where: {birthday: 'notadate'}}, function(err, users) {
should.exist(err);
err.message.should.equal('Invalid date: notadate');
done();
});
});
2017-01-25 23:27:52 +00:00
});
it('preserves empty values from the database', async () => {
// https://github.com/strongloop/loopback-datasource-juggler/issues/1692
// Initially, all Players were always active, no property was needed
const Player = db.define('Player', {name: String});
await db.automigrate('Player');
const created = await Player.create({name: 'Pen'});
// Later on, we decide to introduce `active` property
Player.defineProperty('active', {
type: Boolean,
default: false,
});
await db.autoupdate('Player');
// And query existing data
const found = await Player.findOne();
should(found.toObject().active).be.oneOf([
undefined, // databases supporting `undefined` value
null, // databases representing `undefined` as `null` (e.g. SQL)
]);
});
describe('check __parent relationship in embedded models', () => {
createTestSetupForParentRef(() => User.modelBuilder);
it('should fill the parent in embedded model', async () => {
const user = await User.findOne({where: {name: 'John Lennon'}});
user.should.have.property('address');
should(user.address).have.property('__parent');
should(user.address.__parent).be.instanceof(User).and.equal(user);
});
it('should assign the container model as parent in list property', async () => {
const user = await User.findOne({where: {name: 'John Lennon'}});
user.should.have.property('friends');
should(user.friends).have.property('parent');
should(user.friends.parent).be.instanceof(User).and.equal(user);
});
it('should have the complete chain of parents available in embedded list element', async () => {
const user = await User.findOne({where: {name: 'John Lennon'}});
user.friends.forEach((userFriend) => {
userFriend.should.have.property('__parent');
should(userFriend.__parent).equal(user);
});
});
});
2014-01-24 17:09:53 +00:00
});
2013-03-26 20:50:13 +00:00
describe('find after createAll', function() {
before(function seedData(done) {
seed(done, true);
});
before(function setupDelayingLoadedHook() {
User.observe('loaded', nextAfterDelay);
});
after(function removeDelayingLoadHook() {
User.removeObserver('loaded', nextAfterDelay);
});
it('should query collection', function(done) {
User.find(function(err, users) {
should.exists(users);
should.not.exists(err);
users.should.have.lengthOf(6);
done();
});
});
it('should query limited collection', function(done) {
User.find({limit: 3}, function(err, users) {
should.exists(users);
should.not.exists(err);
users.should.have.lengthOf(3);
done();
});
});
bdd.itIf(
connectorCapabilities.supportPagination !== false,
'should query collection with skip & ' + 'limit',
function(done) {
User.find({skip: 1, limit: 4, order: 'seq'}, function(err, users) {
should.exists(users);
should.not.exists(err);
users[0].seq.should.be.eql(1);
users.should.have.lengthOf(4);
done();
});
},
);
bdd.itIf(
connectorCapabilities.supportPagination !== false,
'should query collection with offset & ' + 'limit',
function(done) {
User.find({offset: 2, limit: 3, order: 'seq'}, function(err, users) {
should.exists(users);
should.not.exists(err);
users[0].seq.should.be.eql(2);
users.should.have.lengthOf(3);
done();
});
},
);
it('should query filtered collection', function(done) {
User.find({where: {role: 'lead'}}, function(err, users) {
should.exists(users);
should.not.exists(err);
users.should.have.lengthOf(2);
done();
});
});
bdd.itIf(
connectorCapabilities.adhocSort !== false,
'should query collection sorted by numeric ' + 'field',
function(done) {
User.find({order: 'order'}, function(err, users) {
should.exists(users);
should.not.exists(err);
users.forEach(function(u, i) {
u.order.should.eql(i + 1);
});
done();
});
},
);
bdd.itIf(
connectorCapabilities.adhocSort !== false,
'should query collection desc sorted by ' + 'numeric field',
function(done) {
User.find({order: 'order DESC'}, function(err, users) {
should.exists(users);
should.not.exists(err);
users.forEach(function(u, i) {
u.order.should.eql(users.length - i);
});
done();
});
},
);
bdd.itIf(
connectorCapabilities.adhocSort !== false,
'should query collection sorted by string ' + 'field',
function(done) {
User.find({order: 'name'}, function(err, users) {
should.exists(users);
should.not.exists(err);
users.shift().name.should.equal('George Harrison');
users.shift().name.should.equal('John Lennon');
users.pop().name.should.equal('Stuart Sutcliffe');
done();
});
},
);
bdd.itIf(
connectorCapabilities.adhocSort !== false,
'should query collection desc sorted by ' + 'string field',
function(done) {
User.find({order: 'name DESC'}, function(err, users) {
should.exists(users);
should.not.exists(err);
users.pop().name.should.equal('George Harrison');
users.pop().name.should.equal('John Lennon');
users.shift().name.should.equal('Stuart Sutcliffe');
done();
});
},
);
bdd.itIf(
connectorCapabilities.adhocSort !== false,
'should query sorted desc by order integer field' +
' even though there is an async model loaded hook',
function(done) {
User.find({order: 'order DESC'}, function(err, users) {
if (err) return done(err);
should.exists(users);
const order = users.map(function(u) {
return u.order;
});
order.should.eql([6, 5, 4, 3, 2, 1]);
done();
});
},
);
it('should support "and" operator that is satisfied', function(done) {
User.find(
{where: {and: [{name: 'John Lennon'}, {role: 'lead'}]}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
done();
},
);
});
it('should support "and" operator that is not satisfied', function(done) {
User.find(
{where: {and: [{name: 'John Lennon'}, {role: 'member'}]}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
},
);
});
bdd.itIf(
connectorCapabilities.supportOrOperator !== false,
'should support "or" that is ' + 'satisfied',
function(done) {
User.find(
{where: {or: [{name: 'John Lennon'}, {role: 'lead'}]}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 2);
done();
},
);
},
);
bdd.itIf(
connectorCapabilities.supportOrOperator !== false,
'should support "or" operator that is ' + 'not satisfied',
function(done) {
User.find(
{where: {or: [{name: 'XYZ'}, {role: 'Hello1'}]}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
},
);
},
);
bdd.itIf(
connectorCapabilities.nullDataValueExists !== false,
'should support where date "neq" null',
function(done) {
User.find({where: {birthday: {neq: null}}}, function(err, users) {
should.not.exist(err);
should.exist(users);
users.should.have.property('length', 2);
should(users[0].name).be.oneOf('John Lennon', 'Paul McCartney');
should(users[1].name).be.oneOf('John Lennon', 'Paul McCartney');
done();
});
},
);
bdd.itIf(
connectorCapabilities.nullDataValueExists !== false,
'should support where date is null',
function(done) {
User.find({where: {birthday: null}}, function(err, users) {
should.not.exist(err);
should.exist(users);
users.should.have.property('length', 4);
done();
});
},
);
it('should support date "gte" that is satisfied', function(done) {
User.find(
{where: {birthday: {gte: new Date('1980-12-08')}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('John Lennon');
done();
},
);
});
it('should support date "gt" that is not satisfied', function(done) {
User.find(
{where: {birthday: {gt: new Date('1980-12-08')}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
},
);
});
it('should support date "gt" that is satisfied', function(done) {
User.find(
{where: {birthday: {gt: new Date('1980-12-07')}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('John Lennon');
done();
},
);
});
bdd.itIf(
connectorCapabilities.cloudantCompatible !== false,
'should support date "lt" that is satisfied',
function(done) {
User.find(
{where: {birthday: {lt: new Date('1980-12-07')}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('Paul McCartney');
done();
},
);
},
);
it('should support number "gte" that is satisfied', function(done) {
User.find({where: {order: {gte: 3}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 4);
users
.map((u) => u.name)
.should.containDeep([
'George Harrison',
'Ringo Starr',
'Pete Best',
'Stuart Sutcliffe',
]);
done();
});
});
it('should support number "gt" that is not satisfied', function(done) {
User.find({where: {order: {gt: 6}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
it('should support number "gt" that is satisfied', function(done) {
User.find({where: {order: {gt: 5}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('Ringo Starr');
done();
});
});
it('should support number "lt" that is satisfied', function(done) {
User.find({where: {order: {lt: 2}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 1);
users[0].name.should.equal('Paul McCartney');
done();
});
});
bdd.itIf(
connectorCapabilities.ignoreUndefinedConditionValue !== false,
'should support number "gt" ' + 'that is satisfied by null value',
function(done) {
User.find(
{order: 'seq', where: {order: {gt: null}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
},
);
},
);
bdd.itIf(
connectorCapabilities.ignoreUndefinedConditionValue !== false,
'should support number "lt" ' + 'that is not satisfied by null value',
function(done) {
User.find({where: {order: {lt: null}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
},
);
bdd.itIf(
connectorCapabilities.ignoreUndefinedConditionValue !== false,
'should support string "gte" ' + 'that is satisfied by null value',
function(done) {
User.find(
{order: 'seq', where: {name: {gte: null}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
},
);
},
);
bdd.itIf(
connectorCapabilities.cloudantCompatible !== false,
'should support string "gte" that is satisfied',
function(done) {
User.find(
{where: {name: {gte: 'Paul McCartney'}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 4);
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.greaterThanOrEqual('Paul McCartney');
}
done();
},
);
},
);
it('should support string "gt" that is not satisfied', function(done) {
User.find({where: {name: {gt: 'xyz'}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
bdd.itIf(
connectorCapabilities.cloudantCompatible !== false,
'should support string "gt" that is satisfied',
function(done) {
User.find(
{where: {name: {gt: 'Paul McCartney'}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 3);
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.greaterThan('Paul McCartney');
}
done();
},
);
},
);
bdd.itIf(
connectorCapabilities.cloudantCompatible !== false,
'should support string "lt" that is satisfied',
function(done) {
User.find(
{where: {name: {lt: 'Paul McCartney'}}},
function(err, users) {
should.not.exist(err);
users.should.have.property('length', 2);
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.lessThan('Paul McCartney');
}
done();
},
);
},
);
it('should support boolean "gte" that is satisfied', function(done) {
User.find({where: {vip: {gte: true}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 3);
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.oneOf([
'John Lennon',
'Stuart Sutcliffe',
'Paul McCartney',
]);
users[ix].vip.should.be.true();
}
done();
});
});
it('should support boolean "gt" that is not satisfied', function(done) {
User.find({where: {vip: {gt: true}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 0);
done();
});
});
it('should support boolean "gt" that is satisfied', function(done) {
User.find({where: {vip: {gt: false}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 3);
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.oneOf([
'John Lennon',
'Stuart Sutcliffe',
'Paul McCartney',
]);
users[ix].vip.should.be.true(users[ix].name + ' should be VIP');
}
done();
});
});
it('should support boolean "lt" that is satisfied', function(done) {
User.find({where: {vip: {lt: true}}}, function(err, users) {
should.not.exist(err);
users.should.have.property('length', 2);
for (let ix = 0; ix < users.length; ix++) {
users[ix].name.should.be.oneOf(['Ringo Starr', 'George Harrison']);
users[ix].vip.should.be.false(
users[ix].name + ' should not be VIP',
);
}
done();
});
});
bdd.itIf(
connectorCapabilities.supportInq,
'supports non-empty inq',
function() {
// note there is no record with seq=100
return User.find({where: {seq: {inq: [0, 1, 100]}}}).then(
(result) => {
const seqsFound = result.map((r) => r.seq);
should(seqsFound).eql([0, 1]);
},
);
},
);
bdd.itIf(
connectorCapabilities.supportInq,
'supports empty inq',
function() {
return User.find({where: {seq: {inq: []}}}).then((result) => {
const seqsFound = result.map((r) => r.seq);
should(seqsFound).eql([]);
});
},
);
const itWhenIlikeSupported = connectorCapabilities.ilike;
bdd.describeIf(itWhenIlikeSupported, 'ilike', function() {
it('should support "like" that is satisfied', function(done) {
User.find({where: {name: {like: 'John'}}}, function(err, users) {
if (err) return done(err);
users.length.should.equal(1);
users[0].name.should.equal('John Lennon');
done();
});
});
it('should sanitize invalid usage of like', async () => {
const users = await User.find({where: {tag: {like: '['}}});
users.should.have.length(1);
users[0].should.have.property('name', 'John Lennon');
});
it('should support "like" that is not satisfied', function(done) {
User.find({where: {name: {like: 'Bob'}}}, function(err, users) {
if (err) return done(err);
users.length.should.equal(0);
done();
});
});
it('should support "ilike" that is satisfied', function(done) {
User.find({where: {name: {ilike: 'john'}}}, function(err, users) {
if (err) return done(err);
users.length.should.equal(1);
users[0].name.should.equal('John Lennon');
done();
});
});
it('should support "ilike" that is not satisfied', function(done) {
User.find({where: {name: {ilike: 'bob'}}}, function(err, users) {
if (err) return done(err);
users.length.should.equal(0);
done();
});
});
it('should properly sanitize invalid ilike filter', async () => {
const users = await User.find({where: {name: {ilike: '['}}});
users.should.be.empty();
});
});
const itWhenNilikeSupported = connectorCapabilities.nilike !== false;
bdd.describeIf(itWhenNilikeSupported, 'nilike', function() {
it('should support "nlike" that is satisfied', function(done) {
User.find({where: {name: {nlike: 'John'}}}, function(err, users) {
if (err) return done(err);
users.length.should.equal(5);
users[0].name.should.equal('Paul McCartney');
done();
});
});
it('should support "nilike" that is satisfied', function(done) {
User.find({where: {name: {nilike: 'john'}}}, function(err, users) {
if (err) return done(err);
users.length.should.equal(5);
users[0].name.should.equal('Paul McCartney');
done();
});
});
});
describe('geo queries', function() {
describe('near filter', function() {
it('supports a basic "near" query', function(done) {
User.find(
{
where: {
addressLoc: {
near: {lat: 29.9, lng: -90.07},
},
},
},
function(err, users) {
if (err) done(err);
users.should.have.property('length', 3);
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].addressLoc.should.not.be.null();
done();
},
);
});
it('supports "near" inside a coumpound query with "and"', function(done) {
User.find(
{
where: {
and: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.07},
},
},
{
vip: true,
},
],
},
},
function(err, users) {
if (err) done(err);
users.should.have.property('length', 2);
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].addressLoc.should.not.be.null();
users[0].vip.should.be.true();
done();
},
);
});
it('supports "near" inside a complex coumpound query with multiple "and"', function(done) {
User.find(
{
where: {
and: [
{
and: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.07},
},
},
{
order: 2,
},
],
},
{
vip: true,
},
],
},
},
function(err, users) {
if (err) done(err);
users.should.have.property('length', 1);
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].addressLoc.should.not.be.null();
users[0].vip.should.be.true();
users[0].order.should.equal(2);
done();
},
);
});
it('supports multiple "near" queries with "or"', function(done) {
User.find(
{
where: {
or: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.04},
maxDistance: 300,
},
},
{
addressLoc: {
near: {lat: 22.97, lng: -88.03},
maxDistance: 50,
},
},
],
},
},
function(err, users) {
if (err) done(err);
users.should.have.property('length', 2);
users[0].addressLoc.should.not.be.null();
users[0].name.should.equal('Paul McCartney');
users[0].should.be.instanceOf(User);
users[1].addressLoc.should.not.equal(null);
users[1].name.should.equal('John Lennon');
done();
},
);
});
it(
'supports multiple "near" queries with "or" ' +
'inside a coumpound query with "and"',
function(done) {
User.find(
{
where: {
and: [
{
or: [
{
addressLoc: {
near: {lat: 29.9, lng: -90.04},
maxDistance: 300,
},
},
{
addressLoc: {
near: {lat: 22.7, lng: -89.03},
maxDistance: 50,
},
},
],
},
{
vip: true,
},
],
},
},
function(err, users) {
if (err) done(err);
users.should.have.property('length', 1);
users[0].addressLoc.should.not.be.null();
users[0].name.should.equal('John Lennon');
users[0].should.be.instanceOf(User);
users[0].vip.should.be.true();
done();
},
);
},
);
});
});
it('should only include fields as specified', function(done) {
let remaining = 0;
function sample(fields) {
return {
expect: function(arr) {
remaining++;
User.find({fields: fields}, function(err, users) {
remaining--;
if (err) return done(err);
should.exists(users);
if (remaining === 0) {
done();
}
users.forEach(function(user) {
const obj = user.toObject();
Object.keys(obj).forEach(function(key) {
// if the obj has an unexpected value
if (obj[key] !== undefined && arr.indexOf(key) === -1) {
console.log('Given fields:', fields);
console.log('Got:', key, obj[key]);
console.log('Expected:', arr);
throw new Error(
'should not include data for key: ' + key,
);
}
});
});
});
},
};
}
sample({name: true}).expect(['name']);
sample({name: false}).expect([
'id',
'seq',
'email',
'role',
'order',
'birthday',
'vip',
'address',
'friends',
'addressLoc',
'tag',
]);
sample({name: false, id: true}).expect(['id']);
sample({id: true}).expect(['id']);
sample('id').expect(['id']);
sample(['id']).expect(['id']);
sample(['email']).expect(['email']);
});
it('should ignore non existing properties when excluding', function(done) {
return User.find({fields: {notExist: false}}, (err, users) => {
if (err) return done(err);
users.forEach((user) => {
switch (
user.seq // all fields depending on each document
) {
case 0:
case 1:
Object.keys(user.__data).should.containDeep([
'id',
'seq',
'name',
'order',
'role',
'birthday',
'vip',
'address',
'friends',
]);
break;
case 4: // seq 4
Object.keys(user.__data).should.containDeep([
'id',
'seq',
'name',
'order',
]);
break;
default: // Other records, seq 2, 3, 5
Object.keys(user.__data).should.containDeep([
'id',
'seq',
'name',
'order',
'vip',
]);
}
});
done();
});
});
const describeWhenNestedSupported = connectorCapabilities.nestedProperty;
bdd.describeIf(
describeWhenNestedSupported,
'query with nested property',
function() {
it('should support nested property in query', function(done) {
User.find(
{where: {'address.city': 'San Jose'}},
function(err, users) {
if (err) return done(err);
users.length.should.be.equal(1);
for (let i = 0; i < users.length; i++) {
users[i].address.city.should.be.eql('San Jose');
}
done();
},
);
});
it('should support nested property with regex over arrays in query', function(done) {
User.find(
{where: {'friends.name': {regexp: /^Ringo/}}},
function(err, users) {
if (err) return done(err);
users.length.should.be.equal(2);
const expectedUsers = ['John Lennon', 'Paul McCartney'];
expectedUsers.indexOf(users[0].name).should.not.equal(-1);
expectedUsers.indexOf(users[1].name).should.not.equal(-1);
done();
},
);
});
it('should support nested property with gt in query', function(done) {
User.find(
{where: {'address.city': {gt: 'San'}}},
function(err, users) {
if (err) return done(err);
users.length.should.be.equal(2);
for (let i = 0; i < users.length; i++) {
users[i].address.state.should.be.eql('CA');
}
done();
},
);
});
bdd.itIf(
connectorCapabilities.adhocSort,
'should support nested property for order in query',
function(done) {
User.find(
{where: {'address.state': 'CA'}, order: 'address.city DESC'},
function(err, users) {
if (err) return done(err);
users.length.should.be.equal(2);
users[0].address.city.should.be.eql('San Mateo');
users[1].address.city.should.be.eql('San Jose');
done();
},
);
},
);
it('should support multi-level nested array property in query', function(done) {
User.find(
{where: {'address.tags.tag': 'business'}},
function(err, users) {
if (err) return done(err);
users.length.should.be.equal(1);
users[0].address.tags[0].tag.should.be.equal('business');
users[0].address.tags[1].tag.should.be.equal('rent');
done();
},
);
});
it('should fail when querying with an invalid value for a type', function(done) {
User.find({where: {birthday: 'notadate'}}, function(err, users) {
should.exist(err);
err.message.should.equal('Invalid date: notadate');
done();
});
});
},
);
it('preserves empty values from the database', async () => {
// https://github.com/strongloop/loopback-datasource-juggler/issues/1692
// Initially, all Players were always active, no property was needed
const Player = db.define('Player', {name: String});
await db.automigrate('Player');
const created = await Player.create({name: 'Pen'});
// Later on, we decide to introduce `active` property
Player.defineProperty('active', {
type: Boolean,
default: false,
});
await db.autoupdate('Player');
// And query existing data
const found = await Player.findOne();
should(found.toObject().active).be.oneOf([
undefined, // databases supporting `undefined` value
null, // databases representing `undefined` as `null` (e.g. SQL)
]);
});
describe('check __parent relationship in embedded models', () => {
createTestSetupForParentRef(() => User.modelBuilder);
it('should fill the parent in embedded model', async () => {
const user = await User.findOne({where: {name: 'John Lennon'}});
user.should.have.property('address');
should(user.address).have.property('__parent');
should(user.address.__parent).be.instanceof(User).and.equal(user);
});
it('should assign the container model as parent in list property', async () => {
const user = await User.findOne({where: {name: 'John Lennon'}});
user.should.have.property('friends');
should(user.friends).have.property('parent');
should(user.friends.parent).be.instanceof(User).and.equal(user);
});
it('should have the complete chain of parents available in embedded list element', async () => {
const user = await User.findOne({where: {name: 'John Lennon'}});
user.friends.forEach((userFriend) => {
userFriend.should.have.property('__parent');
should(userFriend.__parent).equal(user);
});
});
});
});
2016-04-01 11:48:17 +00:00
describe('count', function() {
2014-01-24 17:09:53 +00:00
before(seed);
2013-03-26 20:50:13 +00:00
2016-04-01 11:48:17 +00:00
it('should query total count', function(done) {
User.count(function(err, n) {
2014-01-24 17:09:53 +00:00
should.not.exist(err);
should.exist(n);
n.should.equal(6);
done();
});
});
2013-03-26 20:50:13 +00:00
2016-04-01 11:48:17 +00:00
it('should query filtered count', function(done) {
2016-08-19 17:46:59 +00:00
User.count({role: 'lead'}, function(err, n) {
2014-01-24 17:09:53 +00:00
should.not.exist(err);
should.exist(n);
n.should.equal(2);
done();
});
});
});
2013-03-26 20:50:13 +00:00
describe('count after createAll', function() {
before(function seedData(done) {
seed(done, true);
});
it('should query total count', function(done) {
User.count(function(err, n) {
should.not.exist(err);
should.exist(n);
n.should.equal(6);
done();
});
});
it('should query filtered count', function(done) {
User.count({role: 'lead'}, function(err, n) {
should.not.exist(err);
should.exist(n);
n.should.equal(2);
done();
});
});
});
2016-04-01 11:48:17 +00:00
describe('findOne', function() {
2014-01-24 17:09:53 +00:00
before(seed);
2017-07-11 18:56:39 +00:00
bdd.itIf(connectorCapabilities.cloudantCompatible !== false,
'should find first record (default sort by id)', function(done) {
User.all({order: 'id'}, function(err, users) {
User.findOne(function(e, u) {
should.not.exist(e);
should.exist(u);
u.id.toString().should.equal(users[0].id.toString());
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
bdd.itIf(connectorCapabilities.adhocSort, 'should find first record', function(done) {
2016-08-19 17:46:59 +00:00
User.findOne({order: 'order'}, function(e, u) {
2014-01-24 17:09:53 +00:00
should.not.exist(e);
should.exist(u);
u.order.should.equal(1);
u.name.should.equal('Paul McCartney');
done();
});
2013-03-26 20:50:13 +00:00
});
bdd.itIf(connectorCapabilities.adhocSort, 'should find last record', function(done) {
2016-08-19 17:46:59 +00:00
User.findOne({order: 'order DESC'}, function(e, u) {
2014-01-24 17:09:53 +00:00
should.not.exist(e);
should.exist(u);
u.order.should.equal(6);
u.name.should.equal('Ringo Starr');
done();
});
});
2013-03-26 19:33:11 +00:00
bdd.itIf(connectorCapabilities.adhocSort, 'should find last record in filtered set', function(done) {
2014-01-24 17:09:53 +00:00
User.findOne({
2016-08-19 17:46:59 +00:00
where: {role: 'lead'},
2016-04-01 11:48:17 +00:00
order: 'order DESC',
}, function(e, u) {
2014-01-24 17:09:53 +00:00
should.not.exist(e);
should.exist(u);
u.order.should.equal(2);
u.name.should.equal('John Lennon');
done();
});
});
2013-03-26 19:33:11 +00:00
2016-04-01 11:48:17 +00:00
it('should work even when find by id', function(done) {
User.findOne(function(e, u) {
2016-08-19 17:46:59 +00:00
User.findOne({where: {id: u.id}}, function(err, user) {
2014-01-24 17:09:53 +00:00
should.not.exist(err);
should.exist(user);
done();
2013-03-26 19:33:11 +00:00
});
2014-01-24 17:09:53 +00:00
});
});
});
2013-03-26 19:33:11 +00:00
describe('findOne after createAll', function() {
before(function seedData(done) {
seed(done, true);
});
bdd.itIf(
connectorCapabilities.cloudantCompatible !== false,
'should find first record (default sort by id)',
function(done) {
User.all({order: 'id'}, function(err, users) {
User.findOne(function(e, u) {
should.not.exist(e);
should.exist(u);
u.id.toString().should.equal(users[0].id.toString());
done();
});
});
},
);
bdd.itIf(
connectorCapabilities.adhocSort,
'should find first record',
function(done) {
User.findOne({order: 'order'}, function(e, u) {
should.not.exist(e);
should.exist(u);
u.order.should.equal(1);
u.name.should.equal('Paul McCartney');
done();
});
},
);
bdd.itIf(
connectorCapabilities.adhocSort,
'should find last record',
function(done) {
User.findOne({order: 'order DESC'}, function(e, u) {
should.not.exist(e);
should.exist(u);
u.order.should.equal(6);
u.name.should.equal('Ringo Starr');
done();
});
},
);
bdd.itIf(
connectorCapabilities.adhocSort,
'should find last record in filtered set',
function(done) {
User.findOne(
{
where: {role: 'lead'},
order: 'order DESC',
},
function(e, u) {
should.not.exist(e);
should.exist(u);
u.order.should.equal(2);
u.name.should.equal('John Lennon');
done();
},
);
},
);
it('should work even when find by id', function(done) {
User.findOne(function(e, u) {
User.findOne({where: {id: u.id}}, function(err, user) {
should.not.exist(err);
should.exist(user);
done();
});
});
});
});
2016-04-01 11:48:17 +00:00
describe('exists', function() {
2014-01-24 17:09:53 +00:00
before(seed);
2016-04-01 11:48:17 +00:00
it('should check whether record exist', function(done) {
User.findOne(function(e, u) {
User.exists(u.id, function(err, exists) {
2014-01-24 17:09:53 +00:00
should.not.exist(err);
should.exist(exists);
exists.should.be.ok;
done();
2013-08-18 17:58:53 +00:00
});
2014-01-24 17:09:53 +00:00
});
});
2013-08-18 17:58:53 +00:00
2016-04-01 11:48:17 +00:00
it('should check whether record not exist', function(done) {
2018-12-07 14:54:29 +00:00
const unknownId = uid.fromConnector(db) || 42;
2016-04-01 11:48:17 +00:00
User.destroyAll(function() {
User.exists(unknownId, function(err, exists) {
2014-01-24 17:09:53 +00:00
should.not.exist(err);
exists.should.not.be.ok;
done();
});
});
2013-08-18 17:58:53 +00:00
});
});
2015-07-24 19:56:31 +00:00
describe('exists after createAll', function() {
before(function seedData(done) {
seed(done, true);
});
it('should check whether record exist', function(done) {
User.findOne(function(e, u) {
User.exists(u.id, function(err, exists) {
should.not.exist(err);
should.exist(exists);
exists.should.be.ok;
done();
});
});
});
it('should check whether record not exist', function(done) {
const unknownId = uid.fromConnector(db) || 42;
User.destroyAll(function() {
User.exists(unknownId, function(err, exists) {
should.not.exist(err);
exists.should.not.be.ok;
done();
});
});
});
});
describe('updateAll', function() {
let numAndDateModel, numAndDateArrayModel;
before(function() {
numAndDateModel = db.define('numAndDateModel', {
dateProp: Date,
numProp: Number,
});
// 'numAndDateArrayModel' is too long an identifier name for Oracle DB
numAndDateArrayModel = db.define('numAndDateArrMod', {
dateArray: [Date],
numArray: [Number],
});
return db.automigrate(['numAndDateModel', 'numAndDateArrMod']);
});
it('coerces primitive datatypes on update', async () => {
const createDate = new Date('2019-02-21T12:00:00').toISOString();
const createData = {
dateProp: createDate,
numProp: '1',
};
const updateDate = new Date('2019-04-15T12:00:00').toISOString();
const updateData = {
dateProp: updateDate,
numProp: '3',
};
const created = await numAndDateModel.create(createData);
const updated = await numAndDateModel.updateAll({id: created.id}, updateData);
const found = await numAndDateModel.findById(created.id);
found.dateProp.should.deepEqual(new Date(updateDate));
found.numProp.should.equal(3);
});
// PostgreSQL connector does not support arrays at the moment
bdd.itIf(connectorCapabilities.supportsArrays !== false,
'coerces primitive array datatypes on update', async () => {
const createDate = new Date('2019-02-21T12:00:00').toISOString();
const createData = {
dateArray: [createDate, createDate],
numArray: ['1', '2'],
};
const updateDate = new Date('2019-04-15T12:00:00').toISOString();
const updateData = {
dateArray: [updateDate, updateDate],
numArray: ['3', '4'],
};
const created = await numAndDateArrayModel.create(createData);
const updated = await numAndDateArrayModel.updateAll({id: created.id}, updateData);
const found = await numAndDateArrayModel.findById(created.id);
found.dateArray[0].should.deepEqual(new Date(updateDate));
found.dateArray[1].should.deepEqual(new Date(updateDate));
found.numArray[0].should.equal(3);
found.numArray[1].should.equal(4);
});
});
2015-07-24 19:56:31 +00:00
context('regexp operator', function() {
2018-12-07 14:54:29 +00:00
const invalidDataTypes = [0, true, {}, [], Function, null];
2015-07-24 19:56:31 +00:00
before(seed);
it('should return an error for invalid data types', function(done) {
// `undefined` is not tested because the `removeUndefined` function
// in `lib/dao.js` removes it before coercion
async.each(invalidDataTypes, function(v, cb) {
User.find({where: {name: {regexp: v}}}, function(err, users) {
2015-07-24 19:56:31 +00:00
should.exist(err);
cb();
2015-07-24 19:56:31 +00:00
});
}, done);
2015-07-24 19:56:31 +00:00
});
});
2013-03-26 19:33:11 +00:00
});
// FIXME: This should either be re-enabled or removed.
2015-08-26 22:23:35 +00:00
describe.skip('queries', function() {
2018-12-07 14:54:29 +00:00
let Todo;
2015-08-26 22:23:35 +00:00
before(function prepDb(done) {
db = getSchema();
Todo = db.define('Todo', {
id: false,
2016-08-19 17:46:59 +00:00
content: {type: 'string'},
}, {
2016-04-01 11:48:17 +00:00
idInjection: false,
});
db.automigrate(['Todo'], done);
});
beforeEach(function resetFixtures(done) {
db = getSchema();
Todo.destroyAll(function() {
Todo.create([
2016-08-19 17:46:59 +00:00
{content: 'Buy eggs'},
{content: 'Buy milk'},
{content: 'Buy sausages'},
], done);
});
});
context('that do not require an id', function() {
it('should work for create', function(done) {
2016-08-19 17:46:59 +00:00
Todo.create({content: 'Buy ham'}, function(err) {
should.not.exist(err);
done();
});
});
it('should work for updateOrCreate/upsert', function(done) {
2018-12-07 14:54:29 +00:00
const aliases = ['updateOrCreate', 'upsert'];
async.each(aliases, function(alias, cb) {
2016-08-19 17:46:59 +00:00
Todo[alias]({content: 'Buy ham'}, function(err) {
should.not.exist(err);
cb();
});
}, done);
});
it('should work for findOrCreate', function(done) {
2016-08-19 17:46:59 +00:00
Todo.findOrCreate({content: 'Buy ham'}, function(err) {
should.not.exist(err);
done();
});
});
it('should work for exists', function(done) {
2016-08-19 17:46:59 +00:00
Todo.exists({content: 'Buy ham'}, function(err) {
should.not.exist(err);
done();
});
});
it('should work for find', function(done) {
Todo.find(function(err) {
should.not.exist(err);
done();
});
});
it('should work for findOne', function(done) {
Todo.findOne(function(err) {
should.not.exist(err);
done();
});
});
it('should work for deleteAll/destroyAll/remove', function(done) {
// FIXME: We should add a DAO.delete static method alias for consistency
// (DAO.prototype.delete instance method already exists)
2018-12-07 14:54:29 +00:00
const aliases = ['deleteAll', 'destroyAll', 'remove'];
async.each(aliases, function(alias, cb) {
Todo[alias](function(err) {
should.not.exist(err);
cb();
});
}, done);
});
it('should work for update/updateAll', function(done) {
2016-08-19 17:46:59 +00:00
Todo.update({content: 'Buy ham'}, function(err) {
should.not.exist(err);
done();
});
});
it('should work for count', function(done) {
2016-08-19 17:46:59 +00:00
Todo.count({content: 'Buy eggs'}, function(err) {
should.not.exist(err);
done();
});
});
});
context('that require an id', function() {
2018-12-07 14:54:29 +00:00
const expectedErrMsg = 'Primary key is missing for the Todo model';
it('should return an error for findById', function(done) {
Todo.findById(1, function(err) {
should.exist(err);
err.message.should.equal(expectedErrMsg);
done();
});
});
it('should return an error for findByIds', function(done) {
Todo.findByIds([1, 2], function(err) {
should.exist(err);
err.message.should.equal(expectedErrMsg);
done();
});
});
it('should return an error for deleteById/destroyById/removeById',
2018-06-12 07:13:32 +00:00
function(done) {
2018-12-07 14:54:29 +00:00
const aliases = ['deleteById', 'destroyById', 'removeById'];
2018-06-12 07:13:32 +00:00
async.each(aliases, function(alias, cb) {
Todo[alias](1, function(err) {
should.exist(err);
err.message.should.equal(expectedErrMsg);
cb();
});
}, done);
});
2015-08-26 22:23:35 +00:00
it('should return an error for instance.save', function(done) {
2018-12-07 14:54:29 +00:00
const todo = new Todo();
2015-08-26 22:23:35 +00:00
todo.content = 'Buy ham';
todo.save(function(err) {
should.exist(err);
err.message.should.equal(expectedErrMsg);
done();
});
});
it('should return an error for instance.delete', function(done) {
Todo.findOne(function(err, todo) {
todo.delete(function(err) {
should.exist(err);
err.message.should.equal(expectedErrMsg);
done();
});
});
});
it('should return an error for instance.updateAttribute', function(done) {
Todo.findOne(function(err, todo) {
todo.updateAttribute('content', 'Buy ham', function(err) {
should.exist(err);
err.message.should.equal(expectedErrMsg);
done();
});
});
});
it('should return an error for instance.updateAttributes', function(done) {
Todo.findOne(function(err, todo) {
2016-08-19 17:46:59 +00:00
todo.updateAttributes({content: 'Buy ham'}, function(err) {
2015-08-26 22:23:35 +00:00
should.exist(err);
err.message.should.equal(expectedErrMsg);
done();
});
});
});
});
});
function seed(done, useCreateAll = false) {
2018-12-07 14:54:29 +00:00
const beatles = [
2014-01-24 17:09:53 +00:00
{
seq: 0,
2014-01-24 17:09:53 +00:00
name: 'John Lennon',
email: 'john@b3atl3s.co.uk',
role: 'lead',
2014-06-06 15:48:05 +00:00
birthday: new Date('1980-12-08'),
2014-06-06 16:28:08 +00:00
order: 2,
2016-04-01 11:48:17 +00:00
vip: true,
2019-10-21 16:55:14 +00:00
tag: '[singer]',
2017-01-25 23:27:52 +00:00
address: {
street: '123 A St',
city: 'San Jose',
state: 'CA',
zipCode: '95131',
tags: [
{tag: 'business'},
{tag: 'rent'},
],
},
friends: [
{name: 'Paul McCartney'},
{name: 'George Harrison'},
{name: 'Ringo Starr'},
],
addressLoc: {lat: 29.97, lng: -90.03},
2014-01-24 17:09:53 +00:00
},
{
seq: 1,
2014-01-24 17:09:53 +00:00
name: 'Paul McCartney',
email: 'paul@b3atl3s.co.uk',
role: 'lead',
2014-06-06 15:48:05 +00:00
birthday: new Date('1942-06-18'),
2014-06-06 16:28:08 +00:00
order: 1,
2016-04-01 11:48:17 +00:00
vip: true,
2017-01-25 23:27:52 +00:00
address: {
street: '456 B St',
city: 'San Mateo',
state: 'CA',
zipCode: '94065',
},
friends: [
{name: 'John Lennon'},
{name: 'George Harrison'},
{name: 'Ringo Starr'},
],
addressLoc: {lat: 22.97, lng: -88.03},
},
{
seq: 2,
name: 'George Harrison',
birthday: null,
order: 5,
vip: false,
addressLoc: {lat: 22.7, lng: -89.03},
2014-01-24 17:09:53 +00:00
},
{seq: 3, name: 'Ringo Starr', order: 6, birthday: null, vip: false},
{seq: 4, name: 'Pete Best', order: 4, birthday: null},
{seq: 5, name: 'Stuart Sutcliffe', order: 3, birthday: null, vip: true},
2014-01-24 17:09:53 +00:00
];
if (useCreateAll) {
seedUsingCreateAll(beatles, done);
} else {
seedUsingCreate(beatles, done);
}
}
2013-03-26 19:33:11 +00:00
function seedUsingCreate(beatles, done) {
async.series(
[
User.destroyAll.bind(User),
function(cb) {
async.each(beatles, User.create.bind(User), cb);
},
],
done,
);
}
function seedUsingCreateAll(beatles, done) {
async.series(
[
User.destroyAll.bind(User),
function(cb) {
User.createAll(beatles, cb);
},
],
done,
);
2013-03-26 19:33:11 +00:00
}
function nextAfterDelay(ctx, next) {
2018-12-07 14:54:29 +00:00
const randomTimeoutTrigger = Math.floor(Math.random() * 100);
setTimeout(function() { process.nextTick(next); }, randomTimeoutTrigger);
}