123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- var Analyzer = require('../../../index').query.analyzer;
- var tokenize = require('../../support/tokenize');
- var assert = require('assert');
- describe('Analyzer ::', function() {
- describe('Grouping statements with AND', function() {
- it('should generate a valid group when AND is used as an array', function() {
- var tokens = tokenize({
- select: ['*'],
- from: 'users',
- where: {
- and: [
- {
- firstName: 'foo'
- },
- {
- lastName: 'bar'
- }
- ]
- }
- });
- var result = Analyzer(tokens);
- assert.deepEqual(result, [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: '*' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'users' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- { type: 'CONDITION', value: 'AND' },
- [
- { type: 'KEY', value: 'firstName' },
- { type: 'VALUE', value: 'foo' }
- ],
- [
- { type: 'KEY', value: 'lastName' },
- { type: 'VALUE', value: 'bar' }
- ]
- ]
- ]);
- });
- it('should generate a valid group when using nested OR conditions', function() {
- var tokens = tokenize({
- select: ['*'],
- from: 'users',
- where: {
- and: [
- {
- or: [
- {
- firstName: 'John'
- },
- {
- lastName: 'Smith'
- }
- ]
- },
- {
- or: [
- {
- qty: {
- '>': 100
- }
- },
- {
- price: {
- '<': 10.00
- }
- }
- ]
- }
- ]
- }
- });
- var result = Analyzer(tokens);
- assert.deepEqual(result, [
- [
- { type: 'IDENTIFIER', value: 'SELECT' },
- { type: 'VALUE', value: '*' }
- ],
- [
- { type: 'IDENTIFIER', value: 'FROM' },
- { type: 'VALUE', value: 'users' }
- ],
- [
- { type: 'IDENTIFIER', value: 'WHERE' },
- { type: 'CONDITION', value: 'AND' },
- [
- [
- { type: 'KEY', value: 'firstName' },
- { type: 'VALUE', value: 'John' }
- ],
- [
- { type: 'KEY', value: 'lastName' },
- { type: 'VALUE', value: 'Smith' }
- ]
- ],
- [
- [
- { type: 'KEY', value: 'qty' },
- { type: 'OPERATOR', value: '>' },
- { type: 'VALUE', value: 100 }
- ],
- [
- { type: 'KEY', value: 'price' },
- { type: 'OPERATOR', value: '<' },
- { type: 'VALUE', value: 10.00 }
- ]
- ]
- ]
- ]);
- });
- });
- });
|