123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925 |
- 'use strict';
- const mquery = require('../');
- const assert = require('assert');
- describe('mquery', function() {
- let col;
- before(function(done) {
- // get the env specific collection interface
- require('./env').getCollection(function(err, collection) {
- assert.ifError(err);
- col = collection;
- done();
- });
- });
- after(function(done) {
- require('./env').dropCollection(done);
- });
- describe('mquery', function() {
- it('is a function', function() {
- assert.equal('function', typeof mquery);
- });
- it('creates instances with the `new` keyword', function() {
- assert.ok(mquery() instanceof mquery);
- });
- describe('defaults', function() {
- it('are set', function() {
- const m = mquery();
- assert.strictEqual(undefined, m.op);
- assert.deepEqual({}, m.options);
- });
- });
- describe('criteria', function() {
- it('if collection-like is used as collection', function() {
- const m = mquery(col);
- assert.equal(col, m._collection.collection);
- });
- it('non-collection-like is used as criteria', function() {
- const m = mquery({ works: true });
- assert.ok(!m._collection);
- assert.deepEqual({ works: true }, m._conditions);
- });
- });
- describe('options', function() {
- it('are merged when passed', function() {
- let m;
- m = mquery(col, { w: 'majority' });
- assert.deepEqual({ w: 'majority' }, m.options);
- m = mquery({ name: 'mquery' }, { w: 'majority' });
- assert.deepEqual({ w: 'majority' }, m.options);
- });
- });
- });
- describe('toConstructor', function() {
- it('creates subclasses of mquery', function() {
- const opts = { safe: { w: 'majority' }, readPreference: 'p' };
- const match = { name: 'test', count: { $gt: 101 } };
- const select = { name: 1, count: 0 };
- const update = { $set: { x: true } };
- const path = 'street';
- const q = mquery().setOptions(opts);
- q.where(match);
- q.select(select);
- q.updateOne(update);
- q.where(path);
- q.find();
- const M = q.toConstructor();
- const m = M();
- assert.ok(m instanceof mquery);
- assert.deepEqual(opts, m.options);
- assert.deepEqual(match, m._conditions);
- assert.deepEqual(select, m._fields);
- assert.deepEqual(update, m._update);
- assert.equal(path, m._path);
- assert.equal('find', m.op);
- });
- });
- describe('setOptions', function() {
- it('calls associated methods', function() {
- const m = mquery();
- assert.equal(m._collection, null);
- m.setOptions({ collection: col });
- assert.equal(m._collection.collection, col);
- });
- it('directly sets option when no method exists', function() {
- const m = mquery();
- assert.equal(m.options.woot, null);
- m.setOptions({ woot: 'yay' });
- assert.equal(m.options.woot, 'yay');
- });
- it('is chainable', function() {
- const m = mquery();
- let n;
- n = m.setOptions();
- assert.equal(m, n);
- n = m.setOptions({ x: 1 });
- assert.equal(m, n);
- });
- });
- describe('collection', function() {
- it('sets the _collection', function() {
- const m = mquery();
- m.collection(col);
- assert.equal(m._collection.collection, col);
- });
- it('is chainable', function() {
- const m = mquery();
- const n = m.collection(col);
- assert.equal(m, n);
- });
- });
- describe('$where', function() {
- it('sets the $where condition', function() {
- const m = mquery();
- function go() {}
- m.$where(go);
- assert.ok(go === m._conditions.$where);
- });
- it('is chainable', function() {
- const m = mquery();
- const n = m.$where('x');
- assert.equal(m, n);
- });
- });
- describe('where', function() {
- it('without arguments', function() {
- const m = mquery();
- m.where();
- assert.deepEqual({}, m._conditions);
- });
- it('with non-string/object argument', function() {
- const m = mquery();
- assert.throws(function() {
- m.where([]);
- }, /path must be a string or object/);
- });
- describe('with one argument', function() {
- it('that is an object', function() {
- const m = mquery();
- m.where({ name: 'flawed' });
- assert.strictEqual(m._conditions.name, 'flawed');
- });
- it('that is a query', function() {
- const m = mquery({ name: 'first' });
- const n = mquery({ name: 'changed' });
- m.where(n);
- assert.strictEqual(m._conditions.name, 'changed');
- });
- it('that is a string', function() {
- const m = mquery();
- m.where('name');
- assert.equal('name', m._path);
- assert.strictEqual(m._conditions.name, undefined);
- });
- });
- it('with two arguments', function() {
- const m = mquery();
- m.where('name', 'The Great Pumpkin');
- assert.equal('name', m._path);
- assert.strictEqual(m._conditions.name, 'The Great Pumpkin');
- });
- it('is chainable', function() {
- const m = mquery();
- let n = m.where('x', 'y');
- assert.equal(m, n);
- n = m.where();
- assert.equal(m, n);
- });
- });
- describe('equals', function() {
- it('must be called after where()', function() {
- const m = mquery();
- assert.throws(function() {
- m.equals();
- }, /must be used after where/);
- });
- it('sets value of path set with where()', function() {
- const m = mquery();
- m.where('age').equals(1000);
- assert.deepEqual({ age: 1000 }, m._conditions);
- });
- it('is chainable', function() {
- const m = mquery();
- const n = m.where('x').equals(3);
- assert.equal(m, n);
- });
- });
- describe('eq', function() {
- it('is alias of equals', function() {
- const m = mquery();
- m.where('age').eq(1000);
- assert.deepEqual({ age: 1000 }, m._conditions);
- });
- });
- describe('or', function() {
- it('pushes onto the internal $or condition', function() {
- const m = mquery();
- m.or({ 'Nightmare Before Christmas': true });
- assert.deepEqual([{ 'Nightmare Before Christmas': true }], m._conditions.$or);
- });
- it('allows passing arrays', function() {
- const m = mquery();
- const arg = [{ 'Nightmare Before Christmas': true }, { x: 1 }];
- m.or(arg);
- assert.deepEqual(arg, m._conditions.$or);
- });
- it('allows calling multiple times', function() {
- const m = mquery();
- const arg = [{ looper: true }, { x: 1 }];
- m.or(arg);
- m.or({ y: 1 });
- m.or([{ w: 'oo' }, { z: 'oo' }]);
- assert.deepEqual([{ looper: true }, { x: 1 }, { y: 1 }, { w: 'oo' }, { z: 'oo' }], m._conditions.$or);
- });
- it('is chainable', function() {
- const m = mquery();
- m.or({ o: 'k' }).where('name', 'table');
- assert.deepEqual({ name: 'table', $or: [{ o: 'k' }] }, m._conditions);
- });
- });
- describe('nor', function() {
- it('pushes onto the internal $nor condition', function() {
- const m = mquery();
- m.nor({ 'Nightmare Before Christmas': true });
- assert.deepEqual([{ 'Nightmare Before Christmas': true }], m._conditions.$nor);
- });
- it('allows passing arrays', function() {
- const m = mquery();
- const arg = [{ 'Nightmare Before Christmas': true }, { x: 1 }];
- m.nor(arg);
- assert.deepEqual(arg, m._conditions.$nor);
- });
- it('allows calling multiple times', function() {
- const m = mquery();
- const arg = [{ looper: true }, { x: 1 }];
- m.nor(arg);
- m.nor({ y: 1 });
- m.nor([{ w: 'oo' }, { z: 'oo' }]);
- assert.deepEqual([{ looper: true }, { x: 1 }, { y: 1 }, { w: 'oo' }, { z: 'oo' }], m._conditions.$nor);
- });
- it('is chainable', function() {
- const m = mquery();
- m.nor({ o: 'k' }).where('name', 'table');
- assert.deepEqual({ name: 'table', $nor: [{ o: 'k' }] }, m._conditions);
- });
- });
- describe('and', function() {
- it('pushes onto the internal $and condition', function() {
- const m = mquery();
- m.and({ 'Nightmare Before Christmas': true });
- assert.deepEqual([{ 'Nightmare Before Christmas': true }], m._conditions.$and);
- });
- it('allows passing arrays', function() {
- const m = mquery();
- const arg = [{ 'Nightmare Before Christmas': true }, { x: 1 }];
- m.and(arg);
- assert.deepEqual(arg, m._conditions.$and);
- });
- it('allows calling multiple times', function() {
- const m = mquery();
- const arg = [{ looper: true }, { x: 1 }];
- m.and(arg);
- m.and({ y: 1 });
- m.and([{ w: 'oo' }, { z: 'oo' }]);
- assert.deepEqual([{ looper: true }, { x: 1 }, { y: 1 }, { w: 'oo' }, { z: 'oo' }], m._conditions.$and);
- });
- it('is chainable', function() {
- const m = mquery();
- m.and({ o: 'k' }).where('name', 'table');
- assert.deepEqual({ name: 'table', $and: [{ o: 'k' }] }, m._conditions);
- });
- });
- function generalCondition(type) {
- return function() {
- it('accepts 2 args', function() {
- const m = mquery()[type]('count', 3);
- const check = {};
- check['$' + type] = 3;
- assert.deepEqual(m._conditions.count, check);
- });
- it('uses previously set `where` path if 1 arg passed', function() {
- const m = mquery().where('count')[type](3);
- const check = {};
- check['$' + type] = 3;
- assert.deepEqual(m._conditions.count, check);
- });
- it('throws if 1 arg was passed but no previous `where` was used', function() {
- assert.throws(function() {
- mquery()[type](3);
- }, /must be used after where/);
- });
- it('is chainable', function() {
- const m = mquery().where('count')[type](3).where('x', 8);
- const check = { x: 8, count: {} };
- check.count['$' + type] = 3;
- assert.deepEqual(m._conditions, check);
- });
- it('overwrites previous value', function() {
- const m = mquery().where('count')[type](3)[type](8);
- const check = {};
- check['$' + type] = 8;
- assert.deepEqual(m._conditions.count, check);
- });
- };
- }
- 'gt gte lt lte ne in nin regex size maxDistance minDistance'.split(' ').forEach(function(type) {
- describe(type, generalCondition(type));
- });
- describe('mod', function() {
- describe('with 1 argument', function() {
- it('requires a previous where()', function() {
- assert.throws(function() {
- mquery().mod([30, 10]);
- }, /must be used after where/);
- });
- it('works', function() {
- const m = mquery().where('madmen').mod([10, 20]);
- assert.deepEqual(m._conditions, { madmen: { $mod: [10, 20] } });
- });
- });
- describe('with 2 arguments and second is non-Array', function() {
- it('requires a previous where()', function() {
- assert.throws(function() {
- mquery().mod('x', 10);
- }, /must be used after where/);
- });
- it('works', function() {
- const m = mquery().where('madmen').mod(10, 20);
- assert.deepEqual(m._conditions, { madmen: { $mod: [10, 20] } });
- });
- });
- it('with 2 arguments and second is an array', function() {
- const m = mquery().mod('madmen', [10, 20]);
- assert.deepEqual(m._conditions, { madmen: { $mod: [10, 20] } });
- });
- it('with 3 arguments', function() {
- const m = mquery().mod('madmen', 10, 20);
- assert.deepEqual(m._conditions, { madmen: { $mod: [10, 20] } });
- });
- it('is chainable', function() {
- const m = mquery().mod('madmen', 10, 20).where('x', 8);
- const check = { madmen: { $mod: [10, 20] }, x: 8 };
- assert.deepEqual(m._conditions, check);
- });
- });
- describe('exists', function() {
- it('with 0 args', function() {
- it('throws if not used after where()', function() {
- assert.throws(function() {
- mquery().exists();
- }, /must be used after where/);
- });
- it('works', function() {
- const m = mquery().where('name').exists();
- const check = { name: { $exists: true } };
- assert.deepEqual(m._conditions, check);
- });
- });
- describe('with 1 arg', function() {
- describe('that is boolean', function() {
- it('throws if not used after where()', function() {
- assert.throws(function() {
- mquery().exists();
- }, /must be used after where/);
- });
- it('works', function() {
- const m = mquery().exists('name', false);
- const check = { name: { $exists: false } };
- assert.deepEqual(m._conditions, check);
- });
- });
- describe('that is not boolean', function() {
- it('sets the value to `true`', function() {
- const m = mquery().where('name').exists('yummy');
- const check = { yummy: { $exists: true } };
- assert.deepEqual(m._conditions, check);
- });
- });
- });
- describe('with 2 args', function() {
- it('works', function() {
- const m = mquery().exists('yummy', false);
- const check = { yummy: { $exists: false } };
- assert.deepEqual(m._conditions, check);
- });
- });
- it('is chainable', function() {
- const m = mquery().where('name').exists().find({ x: 1 });
- const check = { name: { $exists: true }, x: 1 };
- assert.deepEqual(m._conditions, check);
- });
- });
- describe('elemMatch', function() {
- describe('with null/undefined first argument', function() {
- assert.throws(function() {
- mquery().elemMatch();
- }, /Invalid argument/);
- assert.throws(function() {
- mquery().elemMatch(null);
- }, /Invalid argument/);
- assert.doesNotThrow(function() {
- mquery().elemMatch('', {});
- });
- });
- describe('with 1 argument', function() {
- it('throws if not a function or object', function() {
- assert.throws(function() {
- mquery().elemMatch([]);
- }, /Invalid argument/);
- });
- describe('that is an object', function() {
- it('throws if no previous `where` was used', function() {
- assert.throws(function() {
- mquery().elemMatch({});
- }, /must be used after where/);
- });
- it('works', function() {
- const m = mquery().where('comment').elemMatch({ author: 'joe', votes: { $gte: 3 } });
- assert.deepEqual({ comment: { $elemMatch: { author: 'joe', votes: { $gte: 3 } } } }, m._conditions);
- });
- });
- describe('that is a function', function() {
- it('throws if no previous `where` was used', function() {
- assert.throws(function() {
- mquery().elemMatch(function() {});
- }, /must be used after where/);
- });
- it('works', function() {
- const m = mquery().where('comment').elemMatch(function(query) {
- query.where({ author: 'joe', votes: { $gte: 3 } });
- });
- assert.deepEqual({ comment: { $elemMatch: { author: 'joe', votes: { $gte: 3 } } } }, m._conditions);
- });
- });
- });
- describe('with 2 arguments', function() {
- describe('and the 2nd is an object', function() {
- it('works', function() {
- const m = mquery().elemMatch('comment', { author: 'joe', votes: { $gte: 3 } });
- assert.deepEqual({ comment: { $elemMatch: { author: 'joe', votes: { $gte: 3 } } } }, m._conditions);
- });
- });
- describe('and the 2nd is a function', function() {
- it('works', function() {
- const m = mquery().elemMatch('comment', function(query) {
- query.where({ author: 'joe', votes: { $gte: 3 } });
- });
- assert.deepEqual({ comment: { $elemMatch: { author: 'joe', votes: { $gte: 3 } } } }, m._conditions);
- });
- });
- it('and the 2nd is not a function or object', function() {
- assert.throws(function() {
- mquery().elemMatch('comment', []);
- }, /Invalid argument/);
- });
- });
- });
- describe('within', function() {
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m.where('a').within(), m);
- });
- describe('when called with arguments', function() {
- it('must follow where()', function() {
- assert.throws(function() {
- mquery().within([]);
- }, /must be used after where/);
- });
- describe('of length 1', function() {
- it('throws if not a recognized shape', function() {
- assert.throws(function() {
- mquery().where('loc').within({});
- }, /Invalid argument/);
- assert.throws(function() {
- mquery().where('loc').within(null);
- }, /Invalid argument/);
- });
- it('delegates to circle when center exists', function() {
- const m = mquery().where('loc').within({ center: [10, 10], radius: 3 });
- assert.deepEqual({ $geoWithin: { $center: [[10, 10], 3] } }, m._conditions.loc);
- });
- it('delegates to box when exists', function() {
- const m = mquery().where('loc').within({ box: [[10, 10], [11, 14]] });
- assert.deepEqual({ $geoWithin: { $box: [[10, 10], [11, 14]] } }, m._conditions.loc);
- });
- it('delegates to polygon when exists', function() {
- const m = mquery().where('loc').within({ polygon: [[10, 10], [11, 14], [10, 9]] });
- assert.deepEqual({ $geoWithin: { $polygon: [[10, 10], [11, 14], [10, 9]] } }, m._conditions.loc);
- });
- it('delegates to geometry when exists', function() {
- const m = mquery().where('loc').within({ type: 'Polygon', coordinates: [[10, 10], [11, 14], [10, 9]] });
- assert.deepEqual({ $geoWithin: { $geometry: { type: 'Polygon', coordinates: [[10, 10], [11, 14], [10, 9]] } } }, m._conditions.loc);
- });
- });
- describe('of length 2', function() {
- it('delegates to box()', function() {
- const m = mquery().where('loc').within([1, 2], [2, 5]);
- assert.deepEqual(m._conditions.loc, { $geoWithin: { $box: [[1, 2], [2, 5]] } });
- });
- });
- describe('of length > 2', function() {
- it('delegates to polygon()', function() {
- const m = mquery().where('loc').within([1, 2], [2, 5], [2, 4], [1, 3]);
- assert.deepEqual(m._conditions.loc, { $geoWithin: { $polygon: [[1, 2], [2, 5], [2, 4], [1, 3]] } });
- });
- });
- });
- });
- describe('geoWithin', function() {
- before(function() {
- mquery.use$geoWithin = false;
- });
- after(function() {
- mquery.use$geoWithin = true;
- });
- describe('when called with arguments', function() {
- describe('of length 1', function() {
- it('delegates to circle when center exists', function() {
- const m = mquery().where('loc').within({ center: [10, 10], radius: 3 });
- assert.deepEqual({ $within: { $center: [[10, 10], 3] } }, m._conditions.loc);
- });
- it('delegates to box when exists', function() {
- const m = mquery().where('loc').within({ box: [[10, 10], [11, 14]] });
- assert.deepEqual({ $within: { $box: [[10, 10], [11, 14]] } }, m._conditions.loc);
- });
- it('delegates to polygon when exists', function() {
- const m = mquery().where('loc').within({ polygon: [[10, 10], [11, 14], [10, 9]] });
- assert.deepEqual({ $within: { $polygon: [[10, 10], [11, 14], [10, 9]] } }, m._conditions.loc);
- });
- it('delegates to geometry when exists', function() {
- const m = mquery().where('loc').within({ type: 'Polygon', coordinates: [[10, 10], [11, 14], [10, 9]] });
- assert.deepEqual({ $within: { $geometry: { type: 'Polygon', coordinates: [[10, 10], [11, 14], [10, 9]] } } }, m._conditions.loc);
- });
- });
- describe('of length 2', function() {
- it('delegates to box()', function() {
- const m = mquery().where('loc').within([1, 2], [2, 5]);
- assert.deepEqual(m._conditions.loc, { $within: { $box: [[1, 2], [2, 5]] } });
- });
- });
- describe('of length > 2', function() {
- it('delegates to polygon()', function() {
- const m = mquery().where('loc').within([1, 2], [2, 5], [2, 4], [1, 3]);
- assert.deepEqual(m._conditions.loc, { $within: { $polygon: [[1, 2], [2, 5], [2, 4], [1, 3]] } });
- });
- });
- });
- });
- describe('box', function() {
- describe('with 1 argument', function() {
- it('throws', function() {
- assert.throws(function() {
- mquery().box('sometihng');
- }, /Invalid argument/);
- });
- });
- describe('with > 3 arguments', function() {
- it('throws', function() {
- assert.throws(function() {
- mquery().box(1, 2, 3, 4);
- }, /Invalid argument/);
- });
- });
- describe('with 2 arguments', function() {
- it('throws if not used after where()', function() {
- assert.throws(function() {
- mquery().box([], []);
- }, /must be used after where/);
- });
- it('works', function() {
- const m = mquery().where('loc').box([1, 2], [3, 4]);
- assert.deepEqual(m._conditions.loc, { $geoWithin: { $box: [[1, 2], [3, 4]] } });
- });
- });
- describe('with 3 arguments', function() {
- it('works', function() {
- const m = mquery().box('loc', [1, 2], [3, 4]);
- assert.deepEqual(m._conditions.loc, { $geoWithin: { $box: [[1, 2], [3, 4]] } });
- });
- });
- });
- describe('polygon', function() {
- describe('when first argument is not a string', function() {
- it('throws if not used after where()', function() {
- assert.throws(function() {
- mquery().polygon({});
- }, /must be used after where/);
- assert.doesNotThrow(function() {
- mquery().where('loc').polygon([1, 2], [2, 3], [3, 6]);
- });
- });
- it('assigns arguments to within polygon condition', function() {
- const m = mquery().where('loc').polygon([1, 2], [2, 3], [3, 6]);
- assert.deepEqual(m._conditions, { loc: { $geoWithin: { $polygon: [[1, 2], [2, 3], [3, 6]] } } });
- });
- });
- describe('when first arg is a string', function() {
- it('assigns remaining arguments to within polygon condition', function() {
- const m = mquery().polygon('loc', [1, 2], [2, 3], [3, 6]);
- assert.deepEqual(m._conditions, { loc: { $geoWithin: { $polygon: [[1, 2], [2, 3], [3, 6]] } } });
- });
- });
- });
- describe('circle', function() {
- describe('with one arg', function() {
- it('must follow where()', function() {
- assert.throws(function() {
- mquery().circle('x');
- }, /must be used after where/);
- assert.doesNotThrow(function() {
- mquery().where('loc').circle({ center: [0, 0], radius: 3 });
- });
- });
- it('works', function() {
- const m = mquery().where('loc').circle({ center: [0, 0], radius: 3 });
- assert.deepEqual(m._conditions, { loc: { $geoWithin: { $center: [[0, 0], 3] } } });
- });
- });
- describe('with 3 args', function() {
- it('throws', function() {
- assert.throws(function() {
- mquery().where('loc').circle(1, 2, 3);
- }, /Invalid argument/);
- });
- });
- describe('requires radius and center', function() {
- assert.throws(function() {
- mquery().circle('loc', { center: 1 });
- }, /center and radius are required/);
- assert.throws(function() {
- mquery().circle('loc', { radius: 1 });
- }, /center and radius are required/);
- assert.doesNotThrow(function() {
- mquery().circle('loc', { center: [1, 2], radius: 1 });
- });
- });
- });
- describe('geometry', function() {
- // within + intersects
- const point = { type: 'Point', coordinates: [[0, 0], [1, 1]] };
- it('must be called after within or intersects', function(done) {
- assert.throws(function() {
- mquery().where('a').geometry(point);
- }, /must come after/);
- assert.doesNotThrow(function() {
- mquery().where('a').within().geometry(point);
- });
- assert.doesNotThrow(function() {
- mquery().where('a').intersects().geometry(point);
- });
- done();
- });
- describe('when called with one argument', function() {
- describe('after within()', function() {
- it('and arg quacks like geoJSON', function(done) {
- const m = mquery().where('a').within().geometry(point);
- assert.deepEqual({ a: { $geoWithin: { $geometry: point } } }, m._conditions);
- done();
- });
- });
- describe('after intersects()', function() {
- it('and arg quacks like geoJSON', function(done) {
- const m = mquery().where('a').intersects().geometry(point);
- assert.deepEqual({ a: { $geoIntersects: { $geometry: point } } }, m._conditions);
- done();
- });
- });
- it('and arg does not quack like geoJSON', function(done) {
- assert.throws(function() {
- mquery().where('b').within().geometry({ type: 1, coordinates: 2 });
- }, /Invalid argument/);
- done();
- });
- });
- describe('when called with zero arguments', function() {
- it('throws', function(done) {
- assert.throws(function() {
- mquery().where('a').within().geometry();
- }, /Invalid argument/);
- done();
- });
- });
- describe('when called with more than one arguments', function() {
- it('throws', function(done) {
- assert.throws(function() {
- mquery().where('a').within().geometry({ type: 'a', coordinates: [] }, 2);
- }, /Invalid argument/);
- done();
- });
- });
- });
- describe('intersects', function() {
- it('must be used after where()', function(done) {
- const m = mquery();
- assert.throws(function() {
- m.intersects();
- }, /must be used after where/);
- done();
- });
- it('sets geo comparison to "$intersects"', function(done) {
- const n = mquery().where('a').intersects();
- assert.equal('$geoIntersects', n._geoComparison);
- done();
- });
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m.where('a').intersects(), m);
- });
- it('calls geometry if argument quacks like geojson', function(done) {
- const m = mquery();
- const o = { type: 'LineString', coordinates: [[0, 1], [3, 40]] };
- let ran = false;
- m.geometry = function(arg) {
- ran = true;
- assert.deepEqual(o, arg);
- };
- m.where('a').intersects(o);
- assert.ok(ran);
- done();
- });
- it('throws if argument is not geometry-like', function(done) {
- const m = mquery().where('a');
- assert.throws(function() {
- m.intersects(null);
- }, /Invalid argument/);
- assert.throws(function() {
- m.intersects(undefined);
- }, /Invalid argument/);
- assert.throws(function() {
- m.intersects(false);
- }, /Invalid argument/);
- assert.throws(function() {
- m.intersects({});
- }, /Invalid argument/);
- assert.throws(function() {
- m.intersects([]);
- }, /Invalid argument/);
- assert.throws(function() {
- m.intersects(function() {});
- }, /Invalid argument/);
- assert.throws(function() {
- m.intersects(NaN);
- }, /Invalid argument/);
- done();
- });
- });
- describe('near', function() {
- // near nearSphere
- describe('with 0 args', function() {
- it('is compatible with geometry()', function(done) {
- const q = mquery().where('x').near().geometry({ type: 'Point', coordinates: [180, 11] });
- assert.deepEqual({ $near: { $geometry: { type: 'Point', coordinates: [180, 11] } } }, q._conditions.x);
- done();
- });
- });
- describe('with 1 arg', function() {
- it('throws if not used after where()', function() {
- assert.throws(function() {
- mquery().near(1);
- }, /must be used after where/);
- });
- it('does not throw if used after where()', function() {
- assert.doesNotThrow(function() {
- mquery().where('loc').near({ center: [1, 1] });
- });
- });
- });
- describe('with > 2 args', function() {
- it('throws', function() {
- assert.throws(function() {
- mquery().near(1, 2, 3);
- }, /Invalid argument/);
- });
- });
- it('creates $geometry args for GeoJSON', function() {
- const m = mquery().where('loc').near({ center: { type: 'Point', coordinates: [10, 10] } });
- assert.deepEqual({ $near: { $geometry: { type: 'Point', coordinates: [10, 10] } } }, m._conditions.loc);
- });
- it('expects `center`', function() {
- assert.throws(function() {
- mquery().near('loc', { maxDistance: 3 });
- }, /center is required/);
- assert.doesNotThrow(function() {
- mquery().near('loc', { center: [3, 4] });
- });
- });
- it('accepts spherical conditions', function() {
- const m = mquery().where('loc').near({ center: [1, 2], spherical: true });
- assert.deepEqual(m._conditions, { loc: { $nearSphere: [1, 2] } });
- });
- it('is non-spherical by default', function() {
- const m = mquery().where('loc').near({ center: [1, 2] });
- assert.deepEqual(m._conditions, { loc: { $near: [1, 2] } });
- });
- it('supports maxDistance', function() {
- const m = mquery().where('loc').near({ center: [1, 2], maxDistance: 4 });
- assert.deepEqual(m._conditions, { loc: { $near: [1, 2], $maxDistance: 4 } });
- });
- it('supports minDistance', function() {
- const m = mquery().where('loc').near({ center: [1, 2], minDistance: 4 });
- assert.deepEqual(m._conditions, { loc: { $near: [1, 2], $minDistance: 4 } });
- });
- it('is chainable', function() {
- const m = mquery().where('loc').near({ center: [1, 2], maxDistance: 4 }).find({ x: 1 });
- assert.deepEqual(m._conditions, { loc: { $near: [1, 2], $maxDistance: 4 }, x: 1 });
- });
- describe('supports passing GeoJSON, gh-13', function() {
- it('with center', function() {
- const m = mquery().where('loc').near({
- center: { type: 'Point', coordinates: [1, 1] },
- maxDistance: 2
- });
- const expect = {
- loc: {
- $near: {
- $geometry: {
- type: 'Point',
- coordinates: [1, 1]
- },
- $maxDistance: 2
- }
- }
- };
- assert.deepEqual(m._conditions, expect);
- });
- });
- });
- // fields
- describe('select', function() {
- describe('with 0 args', function() {
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m, m.select());
- });
- });
- it('accepts an object', function() {
- const o = { x: 1, y: 1 };
- const m = mquery().select(o);
- assert.deepEqual(m._fields, o);
- });
- it('accepts a string', function() {
- const o = 'x -y';
- const m = mquery().select(o);
- assert.deepEqual(m._fields, { x: 1, y: 0 });
- });
- it('does accept an array', function() {
- const o = ['x', '-y'];
- const m = mquery().select(o);
- assert.deepEqual(m._fields, { x: 1, y: 0 });
- });
- it('merges previous arguments', function() {
- const o = { x: 1, y: 0, a: 1 };
- const m = mquery().select(o);
- m.select('z -u w').select({ x: 0 });
- assert.deepEqual(m._fields, {
- x: 0,
- y: 0,
- z: 1,
- u: 0,
- w: 1,
- a: 1
- });
- });
- it('rejects non-string, object, arrays', function() {
- assert.throws(function() {
- mquery().select(function() {});
- }, /Invalid select\(\) argument/);
- });
- it('accepts arguments objects', function() {
- const m = mquery();
- function t() {
- m.select(arguments);
- assert.deepEqual(m._fields, { x: 1, y: 0 });
- }
- t('x', '-y');
- });
- noDistinct('select');
- });
- describe('selected', function() {
- it('returns true when fields have been selected', function(done) {
- let m;
- m = mquery().select({ name: 1 });
- assert.ok(m.selected());
- m = mquery().select('name');
- assert.ok(m.selected());
- done();
- });
- it('returns false when no fields have been selected', function(done) {
- const m = mquery();
- assert.strictEqual(false, m.selected());
- done();
- });
- });
- describe('selectedInclusively', function() {
- describe('returns false', function() {
- it('when no fields have been selected', function(done) {
- assert.strictEqual(false, mquery().selectedInclusively());
- assert.equal(false, mquery().select({}).selectedInclusively());
- done();
- });
- it('when any fields have been excluded', function(done) {
- assert.strictEqual(false, mquery().select('-name').selectedInclusively());
- assert.strictEqual(false, mquery().select({ name: 0 }).selectedInclusively());
- assert.strictEqual(false, mquery().select('name bio -_id').selectedInclusively());
- assert.strictEqual(false, mquery().select({ name: 1, _id: 0 }).selectedInclusively());
- done();
- });
- it('when using $meta', function(done) {
- assert.strictEqual(false, mquery().select({ name: { $meta: 'textScore' } }).selectedInclusively());
- done();
- });
- });
- describe('returns true', function() {
- it('when fields have been included', function(done) {
- assert.equal(true, mquery().select('name').selectedInclusively());
- assert.equal(true, mquery().select({ name: 1 }).selectedInclusively());
- done();
- });
- });
- });
- describe('selectedExclusively', function() {
- describe('returns false', function() {
- it('when no fields have been selected', function(done) {
- assert.equal(false, mquery().selectedExclusively());
- assert.equal(false, mquery().select({}).selectedExclusively());
- done();
- });
- it('when fields have only been included', function(done) {
- assert.equal(false, mquery().select('name').selectedExclusively());
- assert.equal(false, mquery().select({ name: 1 }).selectedExclusively());
- done();
- });
- });
- describe('returns true', function() {
- it('when any field has been excluded', function(done) {
- assert.equal(true, mquery().select('-name').selectedExclusively());
- assert.equal(true, mquery().select({ name: 0 }).selectedExclusively());
- assert.equal(true, mquery().select('-_id').selectedExclusively());
- assert.strictEqual(true, mquery().select('name bio -_id').selectedExclusively());
- assert.strictEqual(true, mquery().select({ name: 1, _id: 0 }).selectedExclusively());
- done();
- });
- });
- });
- describe('slice', function() {
- describe('with 0 args', function() {
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m, m.slice());
- });
- it('is a noop', function() {
- const m = mquery().slice();
- assert.deepEqual(m._fields, undefined);
- });
- });
- describe('with 1 arg', function() {
- it('throws if not called after where()', function() {
- assert.throws(function() {
- mquery().slice(1);
- }, /must be used after where/);
- assert.doesNotThrow(function() {
- mquery().where('a').slice(1);
- });
- });
- it('that is a number', function() {
- const query = mquery();
- query.where('collection').slice(5);
- assert.deepEqual(query._fields, { collection: { $slice: 5 } });
- });
- it('that is an array', function() {
- const query = mquery();
- query.where('collection').slice([5, 10]);
- assert.deepEqual(query._fields, { collection: { $slice: [5, 10] } });
- });
- it('that is an object', function() {
- const query = mquery();
- query.slice({ collection: [5, 10] });
- assert.deepEqual(query._fields, { collection: { $slice: [5, 10] } });
- });
- });
- describe('with 2 args', function() {
- describe('and first is a number', function() {
- it('throws if not called after where', function() {
- assert.throws(function() {
- mquery().slice(2, 3);
- }, /must be used after where/);
- });
- it('does not throw if used after where', function() {
- const query = mquery();
- query.where('collection').slice(2, 3);
- assert.deepEqual(query._fields, { collection: { $slice: [2, 3] } });
- });
- });
- it('and first is not a number', function() {
- const query = mquery().slice('collection', [-5, 2]);
- assert.deepEqual(query._fields, { collection: { $slice: [-5, 2] } });
- });
- });
- describe('with 3 args', function() {
- it('works', function() {
- const query = mquery();
- query.slice('collection', 14, 10);
- assert.deepEqual(query._fields, { collection: { $slice: [14, 10] } });
- });
- });
- noDistinct('slice');
- no('count', 'slice');
- });
- // options
- describe('sort', function() {
- describe('with 0 args', function() {
- it('chains', function() {
- const m = mquery();
- assert.equal(m, m.sort());
- });
- it('has no affect', function() {
- const m = mquery();
- assert.equal(m.options.sort, undefined);
- });
- });
- it('works', function() {
- let query = mquery();
- query.sort('a -c b');
- assert.deepEqual(query.options.sort, { a: 1, b: 1, c: -1 });
- query = mquery();
- query.sort({ a: 1, c: -1, b: 'asc', e: 'descending', f: 'ascending' });
- assert.deepEqual(query.options.sort, { a: 1, c: -1, b: 1, e: -1, f: 1 });
- query = mquery();
- query.sort([['a', -1], ['c', 1], ['b', 'desc'], ['e', 'ascending'], ['f', 'descending']]);
- assert.deepEqual(query.options.sort, [['a', -1], ['c', 1], ['b', -1], ['e', 1], ['f', -1]]);
- query = mquery();
- let e = undefined;
- try {
- query.sort([['a', 1], { b: 5 }]);
- } catch (err) {
- e = err;
- }
- assert.ok(e, 'uh oh. no error was thrown');
- assert.equal(e.message, 'Invalid sort() argument, must be array of arrays');
- query = mquery();
- e = undefined;
- try {
- query.sort('a', 1, 'c', -1, 'b', 1);
- } catch (err) {
- e = err;
- }
- assert.ok(e, 'uh oh. no error was thrown');
- assert.equal(e.message, 'Invalid sort() argument. Must be a string, object, or array.');
- });
- it('handles $meta sort options', function() {
- const query = mquery();
- query.sort({ score: { $meta: 'textScore' } });
- assert.deepEqual(query.options.sort, { score: { $meta: 'textScore' } });
- });
- it('array syntax', function() {
- const query = mquery();
- query.sort([['field', 1], ['test', -1]]);
- assert.deepEqual(query.options.sort, [['field', 1], ['test', -1]]);
- });
- it('throws with mixed array/object syntax', function() {
- const query = mquery();
- assert.throws(function() {
- query.sort({ field: 1 }).sort([['test', -1]]);
- }, /Can't mix sort syntaxes/);
- assert.throws(function() {
- query.sort([['field', 1]]).sort({ test: 1 });
- }, /Can't mix sort syntaxes/);
- });
- it('works with maps', function() {
- if (typeof Map === 'undefined') {
- return this.skip();
- }
- const query = mquery();
- query.sort(new Map().set('field', 1).set('test', -1));
- assert.deepEqual(query.options.sort, new Map().set('field', 1).set('test', -1));
- });
- });
- function simpleOption(type, options) {
- describe(type, function() {
- it('sets the ' + type + ' option', function() {
- const m = mquery()[type](2);
- const optionName = options.name || type;
- assert.equal(2, m.options[optionName]);
- });
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m[type](3), m);
- });
- if (!options.distinct) noDistinct(type);
- if (!options.count) no('count', type);
- });
- }
- const negated = {
- limit: { distinct: false, count: true },
- skip: { distinct: false, count: true },
- maxScan: { distinct: false, count: false },
- batchSize: { distinct: false, count: false },
- maxTime: { distinct: true, count: true, name: 'maxTimeMS' }
- };
- Object.keys(negated).forEach(function(key) {
- simpleOption(key, negated[key]);
- });
- describe('snapshot', function() {
- it('works', function() {
- let query;
- query = mquery();
- query.snapshot();
- assert.equal(true, query.options.snapshot);
- query = mquery();
- query.snapshot(true);
- assert.equal(true, query.options.snapshot);
- query = mquery();
- query.snapshot(false);
- assert.equal(false, query.options.snapshot);
- });
- noDistinct('snapshot');
- no('count', 'snapshot');
- });
- describe('hint', function() {
- it('accepts an object', function() {
- const query2 = mquery();
- query2.hint({ a: 1, b: -1 });
- assert.deepEqual(query2.options.hint, { a: 1, b: -1 });
- });
- it('accepts a string', function() {
- const query2 = mquery();
- query2.hint('a');
- assert.deepEqual(query2.options.hint, 'a');
- });
- it('rejects everything else', function() {
- assert.throws(function() {
- mquery().hint(['c']);
- }, /Invalid hint./);
- assert.throws(function() {
- mquery().hint(1);
- }, /Invalid hint./);
- });
- describe('does not have side affects', function() {
- it('on invalid arg', function() {
- const m = mquery();
- try {
- m.hint(1);
- } catch (err) {
- // ignore
- }
- assert.equal(undefined, m.options.hint);
- });
- it('on missing arg', function() {
- const m = mquery().hint();
- assert.equal(undefined, m.options.hint);
- });
- });
- noDistinct('hint');
- });
- describe('j', function() {
- it('works', function() {
- const m = mquery().j(true);
- assert.equal(true, m.options.j);
- });
- });
- describe('slaveOk', function() {
- it('works', function() {
- let query;
- query = mquery();
- query.slaveOk();
- assert.equal(true, query.options.slaveOk);
- query = mquery();
- query.slaveOk(true);
- assert.equal(true, query.options.slaveOk);
- query = mquery();
- query.slaveOk(false);
- assert.equal(false, query.options.slaveOk);
- });
- });
- describe('read', function() {
- it('sets associated readPreference option', function() {
- const m = mquery();
- m.read('p');
- assert.equal('primary', m.options.readPreference);
- });
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m, m.read('sp'));
- });
- });
- describe('readConcern', function() {
- it('sets associated readConcern option', function() {
- let m;
- m = mquery();
- m.readConcern('s');
- assert.deepEqual({ level: 'snapshot' }, m.options.readConcern);
- m = mquery();
- m.r('local');
- assert.deepEqual({ level: 'local' }, m.options.readConcern);
- });
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m, m.readConcern('lz'));
- });
- });
- describe('tailable', function() {
- it('works', function() {
- let query;
- query = mquery();
- query.tailable();
- assert.equal(true, query.options.tailable);
- query = mquery();
- query.tailable(true);
- assert.equal(true, query.options.tailable);
- query = mquery();
- query.tailable(false);
- assert.equal(false, query.options.tailable);
- });
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m, m.tailable());
- });
- noDistinct('tailable');
- no('count', 'tailable');
- });
- describe('writeConcern', function() {
- it('sets associated writeConcern option', function() {
- let m;
- m = mquery();
- m.writeConcern('majority');
- assert.equal('majority', m.options.w);
- m = mquery();
- m.writeConcern('m'); // m is alias of majority
- assert.equal('majority', m.options.w);
- m = mquery();
- m.writeConcern(1);
- assert.equal(1, m.options.w);
- });
- it('accepts object', function() {
- let m;
- m = mquery().writeConcern({ w: 'm', j: true, wtimeout: 1000 });
- assert.equal('m', m.options.w); // check it does not convert m to majority
- assert.equal(true, m.options.j);
- assert.equal(1000, m.options.wtimeout);
- m = mquery().w('m').w({ j: false, wtimeout: 0 });
- assert.equal('majority', m.options.w);
- assert.strictEqual(false, m.options.j);
- assert.strictEqual(0, m.options.wtimeout);
- });
- it('is chainable', function() {
- const m = mquery();
- assert.equal(m, m.writeConcern('majority'));
- });
- });
- // query utilities
- describe('merge', function() {
- describe('with falsy arg', function() {
- it('returns itself', function() {
- const m = mquery();
- assert.equal(m, m.merge());
- assert.equal(m, m.merge(null));
- assert.equal(m, m.merge(0));
- });
- });
- describe('with an argument', function() {
- describe('that is not a query or plain object', function() {
- it('throws', function() {
- assert.throws(function() {
- mquery().merge([]);
- }, /Invalid argument/);
- assert.throws(function() {
- mquery().merge('merge');
- }, /Invalid argument/);
- assert.doesNotThrow(function() {
- mquery().merge({});
- }, /Invalid argument/);
- });
- });
- describe('that is a query', function() {
- it('merges conditions, field selection, and options', function() {
- const m = mquery({ x: 'hi' }, { select: 'x y', another: true });
- const n = mquery().merge(m);
- assert.deepEqual(n._conditions, m._conditions);
- assert.deepEqual(n._fields, m._fields);
- assert.deepEqual(n.options, m.options);
- });
- it('clones update arguments', function(done) {
- const original = { $set: { iTerm: true } };
- const m = mquery().updateOne(original);
- const n = mquery().merge(m);
- m.updateOne({ $set: { x: 2 } });
- assert.notDeepEqual(m._update, n._update);
- done();
- });
- it('is chainable', function() {
- const m = mquery({ x: 'hi' });
- const n = mquery();
- assert.equal(n, n.merge(m));
- });
- });
- describe('that is an object', function() {
- it('merges', function() {
- const m = { x: 'hi' };
- const n = mquery().merge(m);
- assert.deepEqual(n._conditions, { x: 'hi' });
- });
- it('clones update arguments', function(done) {
- const original = { $set: { iTerm: true } };
- const m = mquery().updateOne(original);
- const n = mquery().merge(original);
- m.updateOne({ $set: { x: 2 } });
- assert.notDeepEqual(m._update, n._update);
- done();
- });
- it('is chainable', function() {
- const m = { x: 'hi' };
- const n = mquery();
- assert.equal(n, n.merge(m));
- });
- });
- });
- });
- // queries
- describe('find', function() {
- describe('with no callback', function() {
- it('does not execute', function() {
- const m = mquery();
- assert.doesNotThrow(function() {
- m.find();
- });
- assert.doesNotThrow(function() {
- m.find({ x: 1 });
- });
- });
- });
- it('is chainable', function() {
- const m = mquery().find({ x: 1 }).find().find({ y: 2 });
- assert.deepEqual(m._conditions, { x: 1, y: 2 });
- });
- it('merges other queries', function() {
- const m = mquery({ name: 'mquery' });
- m.tailable();
- m.select('_id');
- const a = mquery().find(m);
- assert.deepEqual(a._conditions, m._conditions);
- assert.deepEqual(a.options, m.options);
- assert.deepEqual(a._fields, m._fields);
- });
- describe('executes', function() {
- before(function(done) {
- col.insertOne({ name: 'mquery' }, done);
- });
- after(function(done) {
- col.remove({ name: 'mquery' }, done);
- });
- it('when criteria is passed with a callback', function(done) {
- mquery(col).find({ name: 'mquery' }, function(err, docs) {
- assert.ifError(err);
- assert.equal(1, docs.length);
- done();
- });
- });
- it('when Query is passed with a callback', function(done) {
- const m = mquery({ name: 'mquery' });
- mquery(col).find(m, function(err, docs) {
- assert.ifError(err);
- assert.equal(1, docs.length);
- done();
- });
- });
- it('when just a callback is passed', function(done) {
- mquery({ name: 'mquery' }).collection(col).find(function(err, docs) {
- assert.ifError(err);
- assert.equal(1, docs.length);
- done();
- });
- });
- });
- });
- describe('findOne', function() {
- describe('with no callback', function() {
- it('does not execute', function() {
- const m = mquery();
- assert.doesNotThrow(function() {
- m.findOne();
- });
- assert.doesNotThrow(function() {
- m.findOne({ x: 1 });
- });
- });
- });
- it('is chainable', function() {
- const m = mquery();
- const n = m.findOne({ x: 1 }).findOne().findOne({ y: 2 });
- assert.equal(m, n);
- assert.deepEqual(m._conditions, { x: 1, y: 2 });
- assert.equal('findOne', m.op);
- });
- it('merges other queries', function() {
- const m = mquery({ name: 'mquery' });
- m.read('nearest');
- m.select('_id');
- const a = mquery().findOne(m);
- assert.deepEqual(a._conditions, m._conditions);
- assert.deepEqual(a.options, m.options);
- assert.deepEqual(a._fields, m._fields);
- });
- describe('executes', function() {
- before(function(done) {
- col.insertOne({ name: 'mquery findone' }, done);
- });
- after(function(done) {
- col.remove({ name: 'mquery findone' }, done);
- });
- it('when criteria is passed with a callback', function(done) {
- mquery(col).findOne({ name: 'mquery findone' }, function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- assert.equal('mquery findone', doc.name);
- done();
- });
- });
- it('when Query is passed with a callback', function(done) {
- const m = mquery(col).where({ name: 'mquery findone' });
- mquery(col).findOne(m, function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- assert.equal('mquery findone', doc.name);
- done();
- });
- });
- it('when just a callback is passed', function(done) {
- mquery({ name: 'mquery findone' }).collection(col).findOne(function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- assert.equal('mquery findone', doc.name);
- done();
- });
- });
- });
- });
- describe('count', function() {
- describe('with no callback', function() {
- it('does not execute', function() {
- const m = mquery();
- assert.doesNotThrow(function() {
- m.count();
- });
- assert.doesNotThrow(function() {
- m.count({ x: 1 });
- });
- });
- });
- it('is chainable', function() {
- const m = mquery();
- const n = m.count({ x: 1 }).count().count({ y: 2 });
- assert.equal(m, n);
- assert.deepEqual(m._conditions, { x: 1, y: 2 });
- assert.equal('count', m.op);
- });
- it('merges other queries', function() {
- const m = mquery({ name: 'mquery' });
- m.read('nearest');
- m.select('_id');
- const a = mquery().count(m);
- assert.deepEqual(a._conditions, m._conditions);
- assert.deepEqual(a.options, m.options);
- assert.deepEqual(a._fields, m._fields);
- });
- describe('executes', function() {
- before(function(done) {
- col.insertOne({ name: 'mquery count' }, done);
- });
- after(function(done) {
- col.remove({ name: 'mquery count' }, done);
- });
- it('when criteria is passed with a callback', function(done) {
- mquery(col).count({ name: 'mquery count' }, function(err, count) {
- assert.ifError(err);
- assert.ok(count);
- assert.ok(1 === count);
- done();
- });
- });
- it('when Query is passed with a callback', function(done) {
- const m = mquery({ name: 'mquery count' });
- mquery(col).count(m, function(err, count) {
- assert.ifError(err);
- assert.ok(count);
- assert.ok(1 === count);
- done();
- });
- });
- it('when just a callback is passed', function(done) {
- mquery({ name: 'mquery count' }).collection(col).count(function(err, count) {
- assert.ifError(err);
- assert.ok(1 === count);
- done();
- });
- });
- });
- describe('validates its option', function() {
- it('sort', function(done) {
- assert.doesNotThrow(function() {
- mquery().sort('x').count();
- });
- done();
- });
- it('select', function(done) {
- assert.throws(function() {
- mquery().select('x').count();
- }, /field selection and slice cannot be used with count/);
- done();
- });
- it('slice', function(done) {
- assert.throws(function() {
- mquery().where('x').slice(-3).count();
- }, /field selection and slice cannot be used with count/);
- done();
- });
- it('limit', function(done) {
- assert.doesNotThrow(function() {
- mquery().limit(3).count();
- });
- done();
- });
- it('skip', function(done) {
- assert.doesNotThrow(function() {
- mquery().skip(3).count();
- });
- done();
- });
- it('batchSize', function(done) {
- assert.throws(function() {
- mquery({}, { batchSize: 3 }).count();
- }, /batchSize cannot be used with count/);
- done();
- });
- it('maxScan', function(done) {
- assert.throws(function() {
- mquery().maxScan(300).count();
- }, /maxScan cannot be used with count/);
- done();
- });
- it('snapshot', function(done) {
- assert.throws(function() {
- mquery().snapshot().count();
- }, /snapshot cannot be used with count/);
- done();
- });
- it('tailable', function(done) {
- assert.throws(function() {
- mquery().tailable().count();
- }, /tailable cannot be used with count/);
- done();
- });
- });
- });
- describe('distinct', function() {
- describe('with no callback', function() {
- it('does not execute', function() {
- const m = mquery();
- assert.doesNotThrow(function() {
- m.distinct();
- });
- assert.doesNotThrow(function() {
- m.distinct('name');
- });
- assert.doesNotThrow(function() {
- m.distinct({ name: 'mquery distinct' });
- });
- assert.doesNotThrow(function() {
- m.distinct({ name: 'mquery distinct' }, 'name');
- });
- });
- });
- it('is chainable', function() {
- const m = mquery({ x: 1 }).distinct('name');
- const n = m.distinct({ y: 2 });
- assert.equal(m, n);
- assert.deepEqual(n._conditions, { x: 1, y: 2 });
- assert.equal('name', n._distinct);
- assert.equal('distinct', n.op);
- });
- it('overwrites field', function() {
- const m = mquery({ name: 'mquery' }).distinct('name');
- m.distinct('rename');
- assert.equal(m._distinct, 'rename');
- m.distinct({ x: 1 }, 'renamed');
- assert.equal(m._distinct, 'renamed');
- });
- it('merges other queries', function() {
- const m = mquery().distinct({ name: 'mquery' }, 'age');
- m.read('nearest');
- const a = mquery().distinct(m);
- assert.deepEqual(a._conditions, m._conditions);
- assert.deepEqual(a.options, m.options);
- assert.deepEqual(a._fields, m._fields);
- assert.deepEqual(a._distinct, m._distinct);
- });
- describe('executes', function() {
- before(function(done) {
- col.insertOne({ name: 'mquery distinct', age: 1 }, done);
- });
- after(function(done) {
- col.remove({ name: 'mquery distinct' }, done);
- });
- it('when distinct arg is passed with a callback', function(done) {
- mquery(col).distinct('distinct', function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- done();
- });
- });
- describe('when criteria is passed with a callback', function() {
- it('if distinct arg was declared', function(done) {
- mquery(col).distinct('age').distinct({ name: 'mquery distinct' }, function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- done();
- });
- });
- it('but not if distinct arg was not declared', function() {
- assert.throws(function() {
- mquery(col).distinct({ name: 'mquery distinct' }, function() {});
- }, /No value for `distinct`/);
- });
- });
- describe('when Query is passed with a callback', function() {
- const m = mquery({ name: 'mquery distinct' });
- it('if distinct arg was declared', function(done) {
- mquery(col).distinct('age').distinct(m, function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- done();
- });
- });
- it('but not if distinct arg was not declared', function() {
- assert.throws(function() {
- mquery(col).distinct(m, function() {});
- }, /No value for `distinct`/);
- });
- });
- describe('when just a callback is passed', function() {
- it('if distinct arg was declared', function(done) {
- const m = mquery({ name: 'mquery distinct' });
- m.collection(col);
- m.distinct('age');
- m.distinct(function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- done();
- });
- });
- it('but not if no distinct arg was declared', function() {
- const m = mquery();
- m.collection(col);
- assert.throws(function() {
- m.distinct(function() {});
- }, /No value for `distinct`/);
- });
- });
- });
- describe('validates its option', function() {
- it('sort', function(done) {
- assert.throws(function() {
- mquery().sort('x').distinct();
- }, /sort cannot be used with distinct/);
- done();
- });
- it('select', function(done) {
- assert.throws(function() {
- mquery().select('x').distinct();
- }, /field selection and slice cannot be used with distinct/);
- done();
- });
- it('slice', function(done) {
- assert.throws(function() {
- mquery().where('x').slice(-3).distinct();
- }, /field selection and slice cannot be used with distinct/);
- done();
- });
- it('limit', function(done) {
- assert.throws(function() {
- mquery().limit(3).distinct();
- }, /limit cannot be used with distinct/);
- done();
- });
- it('skip', function(done) {
- assert.throws(function() {
- mquery().skip(3).distinct();
- }, /skip cannot be used with distinct/);
- done();
- });
- it('batchSize', function(done) {
- assert.throws(function() {
- mquery({}, { batchSize: 3 }).distinct();
- }, /batchSize cannot be used with distinct/);
- done();
- });
- it('maxScan', function(done) {
- assert.throws(function() {
- mquery().maxScan(300).distinct();
- }, /maxScan cannot be used with distinct/);
- done();
- });
- it('snapshot', function(done) {
- assert.throws(function() {
- mquery().snapshot().distinct();
- }, /snapshot cannot be used with distinct/);
- done();
- });
- it('hint', function(done) {
- assert.throws(function() {
- mquery().hint({ x: 1 }).distinct();
- }, /hint cannot be used with distinct/);
- done();
- });
- it('tailable', function(done) {
- assert.throws(function() {
- mquery().tailable().distinct();
- }, /tailable cannot be used with distinct/);
- done();
- });
- });
- });
- describe('update', function() {
- describe('with no callback', function() {
- it('does not execute', function() {
- const m = mquery();
- assert.doesNotThrow(function() {
- m.updateOne({ name: 'old' }, { name: 'updated' }, { multi: true });
- });
- assert.doesNotThrow(function() {
- m.updateOne({ name: 'old' }, { name: 'updated' });
- });
- assert.doesNotThrow(function() {
- m.updateOne({ name: 'updated' });
- });
- assert.doesNotThrow(function() {
- m.updateOne();
- });
- });
- });
- it('is chainable', function() {
- const m = mquery({ x: 1 }).updateOne({ y: 2 });
- const n = m.where({ y: 2 });
- assert.equal(m, n);
- assert.deepEqual(n._conditions, { x: 1, y: 2 });
- assert.deepEqual({ y: 2 }, n._update);
- assert.equal('updateOne', n.op);
- });
- it('merges update doc arg', function() {
- const a = [1, 2];
- const m = mquery().where({ name: 'mquery' }).updateOne({ x: 'stuff', a: a });
- m.updateOne({ z: 'stuff' });
- assert.deepEqual(m._update, { z: 'stuff', x: 'stuff', a: a });
- assert.deepEqual(m._conditions, { name: 'mquery' });
- assert.ok(!m.options.overwrite);
- m.updateOne({}, { z: 'renamed' }, { overwrite: true });
- assert.ok(m.options.overwrite === true);
- assert.deepEqual(m._conditions, { name: 'mquery' });
- assert.deepEqual(m._update, { z: 'renamed', x: 'stuff', a: a });
- a.push(3);
- assert.notDeepEqual(m._update, { z: 'renamed', x: 'stuff', a: a });
- });
- describe('executes', function() {
- let id;
- before(function(done) {
- col.insertOne({ name: 'mquery update', age: 1 }, function(err, res) {
- id = res.insertedId;
- done();
- });
- });
- after(function(done) {
- col.remove({ _id: id }, done);
- });
- describe('when conds + doc + opts + callback passed', function() {
- it('works', function(done) {
- const m = mquery(col).where({ _id: id });
- m.updateOne({}, { name: 'Sparky' }, {}, function(err, res) {
- assert.ifError(err);
- assert.equal(res.modifiedCount, 1);
- m.findOne(function(err, doc) {
- assert.ifError(err);
- assert.equal(doc.name, 'Sparky');
- done();
- });
- });
- });
- });
- describe('when conds + doc + callback passed', function() {
- it('works', function(done) {
- const m = mquery(col).updateOne({ _id: id }, { name: 'fairgrounds' }, function(err, num) {
- assert.ifError(err);
- assert.ok(1, num);
- m.findOne(function(err, doc) {
- assert.ifError(err);
- assert.equal(doc.name, 'fairgrounds');
- done();
- });
- });
- });
- });
- describe('when doc + callback passed', function() {
- it('works', function(done) {
- const m = mquery(col).where({ _id: id }).updateOne({ name: 'changed' }, function(err, num) {
- assert.ifError(err);
- assert.ok(1, num);
- m.findOne(function(err, doc) {
- assert.ifError(err);
- assert.equal(doc.name, 'changed');
- done();
- });
- });
- });
- });
- describe('when just callback passed', function() {
- it('works', function(done) {
- const m = mquery(col).where({ _id: id });
- m.updateOne({ name: 'Frankenweenie' });
- m.updateOne(function(err, res) {
- assert.ifError(err);
- assert.equal(res.modifiedCount, 1);
- m.findOne(function(err, doc) {
- assert.ifError(err);
- assert.equal(doc.name, 'Frankenweenie');
- done();
- });
- });
- });
- });
- describe('without a callback', function() {
- it('when forced by exec()', function(done) {
- const m = mquery(col).where({ _id: id });
- m.setOptions({ w: 'majority' });
- m.updateOne({ name: 'forced' });
- const update = m._collection.update;
- m._collection.updateOne = function(conds, doc, opts) {
- m._collection.update = update;
- assert.equal(opts.w, 'majority');
- assert.equal('forced', doc.$set.name);
- done();
- };
- m.exec();
- });
- });
- describe('except when update doc is empty and missing overwrite flag', function() {
- it('works', function(done) {
- const m = mquery(col).where({ _id: id });
- m.updateOne({}, function(err, num) {
- assert.ifError(err);
- assert.ok(0 === num);
- setTimeout(function() {
- m.findOne(function(err, doc) {
- assert.ifError(err);
- assert.equal(3, mquery.utils.keys(doc).length);
- assert.equal(id, doc._id.toString());
- assert.equal('Frankenweenie', doc.name);
- done();
- });
- }, 300);
- });
- });
- });
- describe('when boolean (true) - exec()', function() {
- it('works', function(done) {
- const m = mquery(col).where({ _id: id });
- m.updateOne({ name: 'bool' }).updateOne(true);
- setTimeout(function() {
- m.findOne(function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- assert.equal('bool', doc.name);
- done();
- });
- }, 300);
- });
- });
- });
- });
- describe('remove', function() {
- describe('with 0 args', function() {
- const name = 'remove: no args test';
- before(function(done) {
- col.insertOne({ name: name }, done);
- });
- after(function(done) {
- col.remove({ name: name }, done);
- });
- it('does not execute', function(done) {
- const remove = col.remove;
- col.remove = function() {
- col.remove = remove;
- done(new Error('remove executed!'));
- };
- mquery(col).where({ name: name }).remove();
- setTimeout(function() {
- col.remove = remove;
- done();
- }, 10);
- });
- it('chains', function() {
- const m = mquery();
- assert.equal(m, m.remove());
- });
- });
- describe('with 1 argument', function() {
- const name = 'remove: 1 arg test';
- before(function(done) {
- col.insertOne({ name: name }, done);
- });
- after(function(done) {
- col.remove({ name: name }, done);
- });
- describe('that is a', function() {
- it('plain object', function() {
- const m = mquery(col).remove({ name: 'Whiskers' });
- m.remove({ color: '#fff' });
- assert.deepEqual({ name: 'Whiskers', color: '#fff' }, m._conditions);
- });
- it('query', function() {
- const q = mquery({ color: '#fff' });
- const m = mquery(col).remove({ name: 'Whiskers' });
- m.remove(q);
- assert.deepEqual({ name: 'Whiskers', color: '#fff' }, m._conditions);
- });
- it('function', function(done) {
- mquery(col).where({ name: name }).remove(function(err) {
- assert.ifError(err);
- mquery(col).findOne({ name: name }, function(err, doc) {
- assert.ifError(err);
- assert.equal(null, doc);
- done();
- });
- });
- });
- it('boolean (true) - execute', function(done) {
- col.insertOne({ name: name }, function(err) {
- assert.ifError(err);
- mquery(col).findOne({ name: name }, function(err, doc) {
- assert.ifError(err);
- assert.ok(doc);
- mquery(col).remove(true);
- setTimeout(function() {
- mquery(col).find(function(err, docs) {
- assert.ifError(err);
- assert.ok(docs);
- assert.equal(0, docs.length);
- done();
- });
- }, 300);
- });
- });
- });
- });
- });
- describe('with 2 arguments', function() {
- const name = 'remove: 2 arg test';
- beforeEach(function(done) {
- col.remove({}, function(err) {
- assert.ifError(err);
- col.insertMany([{ name: 'shelly' }, { name: name }], function(err) {
- assert.ifError(err);
- mquery(col).find(function(err, docs) {
- assert.ifError(err);
- assert.equal(2, docs.length);
- done();
- });
- });
- });
- });
- describe('plain object + callback', function() {
- it('works', function(done) {
- mquery(col).remove({ name: name }, function(err) {
- assert.ifError(err);
- mquery(col).find(function(err, docs) {
- assert.ifError(err);
- assert.ok(docs);
- assert.equal(1, docs.length);
- assert.equal('shelly', docs[0].name);
- done();
- });
- });
- });
- });
- describe('mquery + callback', function() {
- it('works', function(done) {
- const m = mquery({ name: name });
- mquery(col).remove(m, function(err) {
- assert.ifError(err);
- mquery(col).find(function(err, docs) {
- assert.ifError(err);
- assert.ok(docs);
- assert.equal(1, docs.length);
- assert.equal('shelly', docs[0].name);
- done();
- });
- });
- });
- });
- });
- });
- function validateFindAndModifyOptions(method) {
- describe('validates its option', function() {
- it('sort', function(done) {
- assert.doesNotThrow(function() {
- mquery().sort('x')[method]();
- });
- done();
- });
- it('select', function(done) {
- assert.doesNotThrow(function() {
- mquery().select('x')[method]();
- });
- done();
- });
- it('limit', function(done) {
- assert.throws(function() {
- mquery().limit(3)[method]();
- }, new RegExp('limit cannot be used with ' + method));
- done();
- });
- it('skip', function(done) {
- assert.throws(function() {
- mquery().skip(3)[method]();
- }, new RegExp('skip cannot be used with ' + method));
- done();
- });
- it('batchSize', function(done) {
- assert.throws(function() {
- mquery({}, { batchSize: 3 })[method]();
- }, new RegExp('batchSize cannot be used with ' + method));
- done();
- });
- it('maxScan', function(done) {
- assert.throws(function() {
- mquery().maxScan(300)[method]();
- }, new RegExp('maxScan cannot be used with ' + method));
- done();
- });
- it('snapshot', function(done) {
- assert.throws(function() {
- mquery().snapshot()[method]();
- }, new RegExp('snapshot cannot be used with ' + method));
- done();
- });
- it('tailable', function(done) {
- assert.throws(function() {
- mquery().tailable()[method]();
- }, new RegExp('tailable cannot be used with ' + method));
- done();
- });
- });
- }
- describe('findOneAndUpdate', function() {
- let name = 'findOneAndUpdate + fn';
- validateFindAndModifyOptions('findOneAndUpdate');
- describe('with 0 args', function() {
- it('makes no changes', function() {
- const m = mquery();
- const n = m.findOneAndUpdate();
- assert.deepEqual(m, n);
- });
- });
- describe('with 1 arg', function() {
- describe('that is an object', function() {
- it('updates the doc', function() {
- const m = mquery();
- const n = m.findOneAndUpdate({ $set: { name: '1 arg' } });
- assert.deepEqual(n._update, { $set: { name: '1 arg' } });
- });
- });
- describe('that is a query', function() {
- it('updates the doc', function() {
- const m = mquery({ name: name }).updateOne({ x: 1 });
- const n = mquery().findOneAndUpdate(m);
- assert.deepEqual(n._update, { x: 1 });
- });
- });
- it('that is a function', function(done) {
- col.insertOne({ name: name }, function(err) {
- assert.ifError(err);
- const m = mquery({ name: name }).collection(col);
- name = '1 arg';
- const n = m.updateOne({ $set: { name: name } }).setOptions({ returnDocument: 'after' });
- n.findOneAndUpdate(function(err, res) {
- assert.ifError(err);
- assert.ok(res.value);
- assert.equal(res.value.name, name);
- done();
- });
- });
- });
- });
- describe('with 2 args', function() {
- it('conditions + update', function() {
- const m = mquery(col);
- m.findOneAndUpdate({ name: name }, { age: 100 });
- assert.deepEqual({ name: name }, m._conditions);
- assert.deepEqual({ age: 100 }, m._update);
- });
- it('query + update', function() {
- const n = mquery({ name: name });
- const m = mquery(col);
- m.findOneAndUpdate(n, { age: 100 });
- assert.deepEqual({ name: name }, m._conditions);
- assert.deepEqual({ age: 100 }, m._update);
- });
- it('update + callback', function(done) {
- const m = mquery(col).where({ name: name });
- m.findOneAndUpdate({}, { $inc: { age: 10 } }, { returnDocument: 'after' }, function(err, res) {
- assert.ifError(err);
- assert.equal(10, res.value.age);
- done();
- });
- });
- });
- describe('with 3 args', function() {
- it('conditions + update + options', function() {
- const m = mquery();
- const n = m.findOneAndUpdate({ name: name }, { works: true }, { returnDocument: 'before' });
- assert.deepEqual({ name: name }, n._conditions);
- assert.deepEqual({ works: true }, n._update);
- assert.deepEqual({ returnDocument: 'before' }, n.options);
- });
- it('conditions + update + callback', function(done) {
- const m = mquery(col);
- m.findOneAndUpdate({ name: name }, { works: true }, { returnDocument: 'after' }, function(err, res) {
- assert.ifError(err);
- assert.ok(res.value);
- assert.equal(name, res.value.name);
- assert.ok(true === res.value.works);
- done();
- });
- });
- });
- describe('with 4 args', function() {
- it('conditions + update + options + callback', function(done) {
- const m = mquery(col);
- m.findOneAndUpdate({ name: name }, { works: false }, {}, function(err, res) {
- assert.ifError(err);
- assert.ok(res.value);
- assert.equal(name, res.value.name);
- assert.ok(true === res.value.works);
- done();
- });
- });
- });
- });
- describe('findOneAndRemove', function() {
- let name = 'findOneAndRemove';
- validateFindAndModifyOptions('findOneAndRemove');
- describe('with 0 args', function() {
- it('makes no changes', function() {
- const m = mquery();
- const n = m.findOneAndRemove();
- assert.deepEqual(m, n);
- });
- });
- describe('with 1 arg', function() {
- describe('that is an object', function() {
- it('updates the doc', function() {
- const m = mquery();
- const n = m.findOneAndRemove({ name: '1 arg' });
- assert.deepEqual(n._conditions, { name: '1 arg' });
- });
- });
- describe('that is a query', function() {
- it('updates the doc', function() {
- const m = mquery({ name: name });
- const n = m.findOneAndRemove(m);
- assert.deepEqual(n._conditions, { name: name });
- });
- });
- it('that is a function', function(done) {
- col.insertOne({ name: name }, function(err) {
- assert.ifError(err);
- const m = mquery({ name: name }).collection(col);
- m.findOneAndRemove(function(err, res) {
- assert.ifError(err);
- assert.ok(res.value);
- assert.equal(name, res.value.name);
- done();
- });
- });
- });
- });
- describe('with 2 args', function() {
- it('conditions + options', function() {
- const m = mquery(col);
- m.findOneAndRemove({ name: name }, { returnDocument: 'after' });
- assert.deepEqual({ name: name }, m._conditions);
- assert.deepEqual({ returnDocument: 'after' }, m.options);
- });
- it('query + options', function() {
- const n = mquery({ name: name });
- const m = mquery(col);
- m.findOneAndRemove(n, { sort: { x: 1 } });
- assert.deepEqual({ name: name }, m._conditions);
- assert.deepEqual({ sort: { x: 1 } }, m.options);
- });
- it('conditions + callback', function(done) {
- col.insertOne({ name: name }, function(err) {
- assert.ifError(err);
- const m = mquery(col);
- m.findOneAndRemove({ name: name }, function(err, res) {
- assert.ifError(err);
- assert.equal(name, res.value.name);
- done();
- });
- });
- });
- it('query + callback', function(done) {
- col.insertOne({ name: name }, function(err) {
- assert.ifError(err);
- const n = mquery({ name: name });
- const m = mquery(col);
- m.findOneAndRemove(n, function(err, res) {
- assert.ifError(err);
- assert.equal(name, res.value.name);
- done();
- });
- });
- });
- });
- describe('with 3 args', function() {
- it('conditions + options + callback', function(done) {
- name = 'findOneAndRemove + conds + options + cb';
- col.insertMany([{ name: name }, { name: 'a' }], function(err) {
- assert.ifError(err);
- const m = mquery(col);
- m.findOneAndRemove({ name: name }, { sort: { name: 1 } }, function(err, res) {
- assert.ifError(err);
- assert.ok(res.value);
- assert.equal(name, res.value.name);
- done();
- });
- });
- });
- });
- });
- describe('exec', function() {
- beforeEach(function(done) {
- col.insertMany([{ name: 'exec', age: 1 }, { name: 'exec', age: 2 }], done);
- });
- afterEach(function(done) {
- mquery(col).remove(done);
- });
- it('requires an op', function() {
- assert.throws(function() {
- mquery().exec();
- }, /Missing query type/);
- });
- describe('find', function() {
- it('works', function(done) {
- const m = mquery(col).find({ name: 'exec' });
- m.exec(function(err, docs) {
- assert.ifError(err);
- assert.equal(2, docs.length);
- done();
- });
- });
- it('works with readPreferences', function(done) {
- const m = mquery(col).find({ name: 'exec' });
- try {
- const ReadPreference = require('mongodb').ReadPreference;
- const rp = new ReadPreference('primary');
- m.read(rp);
- } catch (e) {
- done(e.code === 'MODULE_NOT_FOUND' ? null : e);
- return;
- }
- m.exec(function(err, docs) {
- assert.ifError(err);
- assert.equal(2, docs.length);
- done();
- });
- });
- it('works with hint', function(done) {
- mquery(col).hint({ _id: 1 }).find({ name: 'exec' }).exec(function(err, docs) {
- assert.ifError(err);
- assert.equal(2, docs.length);
- mquery(col).hint('_id_').find({ age: 1 }).exec(function(err, docs) {
- assert.ifError(err);
- assert.equal(1, docs.length);
- done();
- });
- });
- });
- it('works with readConcern', function(done) {
- const m = mquery(col).find({ name: 'exec' });
- m.readConcern('l');
- m.exec(function(err, docs) {
- assert.ifError(err);
- assert.equal(2, docs.length);
- done();
- });
- });
- it('works with collation', function(done) {
- const m = mquery(col).find({ name: 'EXEC' });
- m.collation({ locale: 'en_US', strength: 1 });
- m.exec(function(err, docs) {
- assert.ifError(err);
- assert.equal(2, docs.length);
- done();
- });
- });
- });
- it('findOne', function(done) {
- const m = mquery(col).findOne({ age: 2 });
- m.exec(function(err, doc) {
- assert.ifError(err);
- assert.equal(2, doc.age);
- done();
- });
- });
- it('count', function(done) {
- const m = mquery(col).count({ name: 'exec' });
- m.exec(function(err, count) {
- assert.ifError(err);
- assert.equal(2, count);
- done();
- });
- });
- it('distinct', function(done) {
- const m = mquery({ name: 'exec' });
- m.collection(col);
- m.distinct('age');
- m.exec(function(err, array) {
- assert.ifError(err);
- assert.ok(Array.isArray(array));
- assert.equal(2, array.length);
- assert(~array.indexOf(1));
- assert(~array.indexOf(2));
- done();
- });
- });
- describe('update', function() {
- describe('updateMany', function() {
- it('works', function(done) {
- mquery(col).updateMany({ name: 'exec' }, { name: 'test' }).
- exec(function(error) {
- assert.ifError(error);
- mquery(col).count({ name: 'test' }).exec(function(error, res) {
- assert.ifError(error);
- assert.equal(res, 2);
- done();
- });
- });
- });
- it('works with write concern', function(done) {
- mquery(col).updateMany({ name: 'exec' }, { name: 'test' })
- .w(1).j(true).wtimeout(1000)
- .exec(function(error) {
- assert.ifError(error);
- mquery(col).count({ name: 'test' }).exec(function(error, res) {
- assert.ifError(error);
- assert.equal(res, 2);
- done();
- });
- });
- });
- });
- describe('updateOne', function() {
- it('works', function(done) {
- mquery(col).updateOne({ name: 'exec' }, { name: 'test' }).
- exec(function(error) {
- assert.ifError(error);
- mquery(col).count({ name: 'test' }).exec(function(error, res) {
- assert.ifError(error);
- assert.equal(res, 1);
- done();
- });
- });
- });
- });
- describe('replaceOne', function() {
- it('works', function(done) {
- mquery(col).replaceOne({ name: 'exec' }, { name: 'test' }).
- exec(function(error) {
- assert.ifError(error);
- mquery(col).findOne({ name: 'test' }).exec(function(error, res) {
- assert.ifError(error);
- assert.equal(res.name, 'test');
- assert.ok(res.age == null);
- done();
- });
- });
- });
- });
- });
- describe('remove', function() {
- it('with a callback', function(done) {
- const m = mquery(col).where({ age: 2 }).remove();
- m.exec(function(err, res) {
- assert.ifError(err);
- assert.equal(1, res.deletedCount);
- done();
- });
- });
- it('without a callback', function(done) {
- const m = mquery(col).where({ age: 1 }).remove();
- m.exec();
- setTimeout(function() {
- mquery(col).where('name', 'exec').count(function(err, num) {
- assert.equal(1, num);
- done();
- });
- }, 200);
- });
- });
- describe('deleteOne', function() {
- it('with a callback', function(done) {
- const m = mquery(col).where({ age: { $gte: 0 } }).deleteOne();
- m.exec(function(err, res) {
- assert.ifError(err);
- assert.equal(res.deletedCount, 1);
- done();
- });
- });
- it('with justOne set', function(done) {
- const m = mquery(col).where({ age: { $gte: 0 } }).
- // Should ignore `justOne`
- setOptions({ justOne: false }).
- deleteOne();
- m.exec(function(err, res) {
- assert.ifError(err);
- assert.equal(res.deletedCount, 1);
- done();
- });
- });
- });
- describe('deleteMany', function() {
- it('with a callback', function(done) {
- const m = mquery(col).where({ age: { $gte: 0 } }).deleteMany();
- m.exec(function(err, res) {
- assert.ifError(err);
- assert.equal(res.deletedCount, 2);
- done();
- });
- });
- });
- describe('findOneAndUpdate', function() {
- it('with a callback', function(done) {
- const m = mquery(col);
- m.findOneAndUpdate({ name: 'exec', age: 1 }, { $set: { name: 'findOneAndUpdate' } }, { returnDocument: 'after' });
- m.exec(function(err, res) {
- assert.ifError(err);
- assert.equal('findOneAndUpdate', res.value.name);
- done();
- });
- });
- });
- describe('findOneAndRemove', function() {
- it('with a callback', function(done) {
- const m = mquery(col);
- m.findOneAndRemove({ name: 'exec', age: 2 });
- m.exec(function(err, res) {
- assert.ifError(err);
- assert.equal('exec', res.value.name);
- assert.equal(2, res.value.age);
- mquery(col).count({ name: 'exec' }, function(err, num) {
- assert.ifError(err);
- assert.equal(1, num);
- done();
- });
- });
- });
- });
- });
- describe('setTraceFunction', function() {
- beforeEach(function(done) {
- col.insertMany([{ name: 'trace', age: 93 }], done);
- });
- it('calls trace function when executing query', function(done) {
- const m = mquery(col);
- let resultTraceCalled;
- m.setTraceFunction(function(method, queryInfo) {
- try {
- assert.equal('findOne', method);
- assert.equal('trace', queryInfo.conditions.name);
- } catch (e) {
- done(e);
- }
- return function(err, result, millis) {
- try {
- assert.equal(93, result.age);
- assert.ok(typeof millis === 'number');
- } catch (e) {
- done(e);
- }
- resultTraceCalled = true;
- };
- });
- m.findOne({ name: 'trace' }, function(err, doc) {
- assert.ifError(err);
- assert.equal(resultTraceCalled, true);
- assert.equal(93, doc.age);
- done();
- });
- });
- it('inherits trace function when calling toConstructor', function(done) {
- function traceFunction() { return function() {}; }
- const tracedQuery = mquery().setTraceFunction(traceFunction).toConstructor();
- const query = tracedQuery();
- assert.equal(traceFunction, query._traceFunction);
- done();
- });
- });
- describe('thunk', function() {
- it('returns a function', function(done) {
- assert.equal('function', typeof mquery().thunk());
- done();
- });
- it('passes the fn arg to `exec`', function(done) {
- function cb() {}
- const m = mquery();
- m.exec = function testing(fn) {
- assert.equal(this, m);
- assert.equal(cb, fn);
- done();
- };
- m.thunk()(cb);
- });
- });
- describe('then', function() {
- before(function(done) {
- col.insertMany([{ name: 'then', age: 1 }, { name: 'then', age: 2 }], done);
- });
- after(function(done) {
- mquery(col).remove({ name: 'then' }).exec(done);
- });
- it('returns a promise A+ compat object', function(done) {
- const m = mquery(col).find();
- assert.equal('function', typeof m.then);
- done();
- });
- it('creates a promise that is resolved on success', function(done) {
- const promise = mquery(col).count({ name: 'then' }).then();
- promise.then(function(count) {
- assert.equal(2, count);
- done();
- }, done);
- });
- it('supports exec() cb being called synchronously #66', function(done) {
- const query = mquery(col).count({ name: 'then' });
- query.exec = function(cb) {
- cb(null, 66);
- };
- query.then(success, done);
- function success(count) {
- assert.equal(66, count);
- done();
- }
- });
- });
- describe('stream', function() {
- before(function(done) {
- col.insertMany([{ name: 'stream', age: 1 }, { name: 'stream', age: 2 }], done);
- });
- after(function(done) {
- mquery(col).remove({ name: 'stream' }).exec(done);
- });
- describe('throws', function() {
- describe('if used with non-find operations', function() {
- const ops = ['update', 'findOneAndUpdate', 'remove', 'count', 'distinct'];
- ops.forEach(function(op) {
- assert.throws(function() {
- mquery(col)[op]().stream();
- });
- });
- });
- });
- it('returns a stream', function(done) {
- const stream = mquery(col).find({ name: 'stream' }).cursor().stream();
- let count = 0;
- let err;
- stream.on('data', function(doc) {
- assert.equal('stream', doc.name);
- ++count;
- });
- stream.on('error', function(er) {
- err = er;
- });
- stream.on('end', function() {
- if (err) return done(err);
- assert.equal(2, count);
- done();
- });
- });
- });
- function noDistinct(type) {
- it('cannot be used with distinct()', function(done) {
- assert.throws(function() {
- mquery().distinct('name')[type](4);
- }, new RegExp(type + ' cannot be used with distinct'));
- done();
- });
- }
- function no(method, type) {
- it('cannot be used with ' + method + '()', function(done) {
- assert.throws(function() {
- mquery()[method]()[type](4);
- }, new RegExp(type + ' cannot be used with ' + method));
- done();
- });
- }
- // query internal
- describe('_updateForExec', function() {
- it('returns a clone of the update object with same key order #19', function(done) {
- const update = {};
- update.$push = { n: { $each: [{ x: 10 }], $slice: -1, $sort: { x: 1 } } };
- const q = mquery().updateOne({ x: 1 }, update);
- // capture original key order
- const order = [];
- let key;
- for (key in q._update.$push.n) {
- order.push(key);
- }
- // compare output
- const doc = q._updateForExec();
- let i = 0;
- for (key in doc.$push.n) {
- assert.equal(key, order[i]);
- i++;
- }
- done();
- });
- });
- });
|