123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- var Analyzer = require('../../../index').query.analyzer;
- var tokenize = require('../../support/tokenize');
- var assert = require('assert');
- describe('Analyzer ::', function() {
- describe('Subqueries', function() {
- describe('used as a predicate', function() {
- it('should generate a valid group for an IN subquery', function() {
- var tokens = tokenize({
- select: ['*'],
- where: {
- and: [
- {
- id: {
- in: {
- select: ['id'],
- from: 'users',
- where: {
- or: [
- { status: 'active' },
- { name: 'John' }
- ]
- }
- }
- }
- }
- ]
- },
- from: 'accounts'
- });
- var result = Analyzer(tokens);
- assert.deepEqual(result, [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: '*' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- { type: 'CONDITION', value: 'AND' },
- [
- { type: 'KEY', value: 'id' },
- { type: 'CONDITION', value: 'IN' },
- { type: 'SUBQUERY', value: null },
- [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'id' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'users' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- [
- { type: 'KEY', value: 'status' },
- { type: 'VALUE', value: 'active' }
- ],
- [
- { type: 'KEY', value: 'name' },
- { type: 'VALUE', value: 'John' }
- ]
- ]
- ]
- ]
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'accounts' }
- ]
- ]);
- });
- it('should generate a valid group for a NOT IN subquery', function() {
- var tokens = tokenize({
- select: ['*'],
- from: 'accounts',
- where: {
- and: [
- {
- id: {
- nin: {
- select: ['id'],
- from: 'users',
- where: {
- or: [
- { status: 'active' },
- { name: 'John' }
- ]
- }
- }
- }
- }
- ]
- }
- });
- var result = Analyzer(tokens);
- assert.deepEqual(result, [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: '*' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'accounts' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- { type: 'CONDITION', value: 'AND' },
- [
- { type: 'KEY', value: 'id' },
- { type: 'CONDITION', value: 'NOTIN' },
- { type: 'SUBQUERY', value: null },
- [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'id' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'users' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- [
- { type: 'KEY', value: 'status' },
- { type: 'VALUE', value: 'active' }
- ],
- [
- { type: 'KEY', value: 'name' },
- { type: 'VALUE', value: 'John' }
- ]
- ]
- ]
- ]
- ]
- ]);
- });
- });
- describe('used as scalar values', function() {
- it('should generate a valid group when used inside a SELECT', function() {
- var tokens = tokenize({
- select: ['name', {
- select: ['username'],
- from: 'users',
- where: {
- or: [
- { status: 'active' },
- { name: 'John' }
- ]
- },
- as: 'username'
- }, 'age'],
- from: 'accounts'
- });
- var result = Analyzer(tokens);
- assert.deepEqual(result, [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'name' }
- ],
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'SUBQUERY', value: null },
- [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'username' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'users' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- [
- { type: 'KEY', value: 'status' },
- { type: 'VALUE', value: 'active' }
- ],
- [
- { type: 'KEY', value: 'name' },
- { type: 'VALUE', value: 'John' }
- ]
- ],
- [
- { type: 'IDENTIFIER', value: 'AS' },
- { type: 'VALUE', value: 'username' }
- ]
- ]
- ],
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'age' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'accounts' }
- ]
- ]);
- });
- it('should generate a valid group when used as a value in a WHERE', function() {
- var tokens = tokenize({
- select: ['name', 'age'],
- from: 'accounts',
- where: {
- and: [
- {
- username: {
- select: ['username'],
- from: 'users',
- where: {
- color: 'accounts.color'
- }
- }
- }
- ]
- }
- });
- var result = Analyzer(tokens);
- assert.deepEqual(result, [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'name' }
- ],
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'age' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'accounts' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- { type: 'CONDITION', value: 'AND' },
- [
- { type: 'KEY', value: 'username' },
- { type: 'SUBQUERY', value: null },
- [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'username' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'users' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- { type: 'KEY', value: 'color' },
- { type: 'VALUE', value: 'accounts.color' }
- ]
- ]
- ]
- ]
- ]);
- });
- });
- describe('used as table sub query', function() {
- it('should generate a valid group when used as a value in a FROM with an AS alias', function() {
- var tokens = tokenize({
- select: ['name', 'age'],
- from: {
- select: ['age'],
- from: 'users',
- where: {
- and: [
- {
- age: 21
- }
- ]
- },
- as: 'userage'
- }
- });
- var result = Analyzer(tokens);
- assert.deepEqual(result, [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'name' }
- ],
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'age' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'SUBQUERY', value: null },
- [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: 'age' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'users' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- { type: 'CONDITION', value: 'AND' },
- [
- { type: 'KEY', value: 'age' },
- { type: 'VALUE', value: 21 }
- ]
- ],
- [
- { type: 'IDENTIFIER', value: 'AS' },
- { type: 'VALUE', value: 'userage' }
- ]
- ]
- ]
- ]);
- });
- });
- });
- });
|