| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391 |
- import {expect} from 'chai';
- import {ObjectId} from 'mongodb';
- import {MongoClient} from 'mongodb';
- import {format} from '@e22m4u/js-format';
- import {Service} from '@e22m4u/js-service';
- import {Schema} from '@e22m4u/js-repository';
- import {DataType} from '@e22m4u/js-repository';
- import {createMongodbUrl} from './utils/index.js';
- import {MongodbAdapter} from './mongodb-adapter.js';
- import {AdapterRegistry} from '@e22m4u/js-repository';
- import {DEFAULT_PRIMARY_KEY_PROPERTY_NAME as DEF_PK} from '@e22m4u/js-repository';
- const CONFIG = {
- host: process.env.MONGODB_HOST || 'localhost',
- port: process.env.MONGODB_PORT || 27017,
- database: process.env.MONGODB_DATABASE,
- };
- const MDB_CLIENT = new MongoClient(createMongodbUrl(CONFIG));
- const ADAPTERS_STACK = [];
- function createSchema() {
- const schema = new Schema();
- const adapter = new MongodbAdapter(schema.container, CONFIG);
- ADAPTERS_STACK.push(adapter);
- schema.defineDatasource({name: 'mongodb', adapter: 'mongodb'});
- schema.getService(AdapterRegistry)._adapters['mongodb'] = adapter;
- return schema;
- }
- describe('MongodbAdapter', function () {
- this.timeout(15000);
- afterEach(async function () {
- await MDB_CLIENT.db(CONFIG.database).dropDatabase();
- });
- after(async function () {
- for await (const adapter of ADAPTERS_STACK) {
- await adapter.disconnect();
- }
- await MDB_CLIENT.close(true);
- });
- it('able to connect and disconnect', async function () {
- const S = new Service();
- const adapter = new MongodbAdapter(S.container, CONFIG);
- await adapter.connect();
- expect(adapter.connected).to.be.true;
- await adapter.disconnect();
- });
- describe('create', function () {
- it('generates a new identifier when a value of a primary key is not provided', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: 'bar'});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 'bar'});
- expect(typeof result[DEF_PK]).to.be.eq('string');
- expect(result[DEF_PK]).to.have.lengthOf(24);
- });
- it('generates a new identifier when a value of a primary key is undefined', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({[DEF_PK]: undefined, foo: 'bar'});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 'bar'});
- expect(typeof result[DEF_PK]).to.be.eq('string');
- expect(result[DEF_PK]).to.have.lengthOf(24);
- });
- it('generates a new identifier when a value of a primary key is null', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({[DEF_PK]: null, foo: 'bar'});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 'bar'});
- expect(typeof result[DEF_PK]).to.be.eq('string');
- expect(result[DEF_PK]).to.have.lengthOf(24);
- });
- it('generates a new identifier for a primary key of a "string" type', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.STRING,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const result = await rep.create({[DEF_PK]: null, foo: 'bar'});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 'bar'});
- expect(typeof result[DEF_PK]).to.be.eq('string');
- expect(result[DEF_PK]).to.have.lengthOf(24);
- });
- it('generates a new identifier for a primary key of a "any" type', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.ANY,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const result = await rep.create({[DEF_PK]: null, foo: 'bar'});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 'bar'});
- expect(typeof result[DEF_PK]).to.be.eq('string');
- expect(result[DEF_PK]).to.have.lengthOf(24);
- });
- it('throws an error when generating a new value for a primary key of a "number" type', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.NUMBER,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const promise = rep.create({});
- expect(promise).to.be.rejectedWith(
- 'MongoDB unable to generate primary keys of Number. ' +
- 'Do provide your own value for the "id" property ' +
- 'or set the property type to String.',
- );
- });
- it('throws an error when generating a new value for a primary key of a "boolean" type', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.BOOLEAN,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const promise = rep.create({});
- expect(promise).to.be.rejectedWith(
- 'MongoDB unable to generate primary keys of Boolean. ' +
- 'Do provide your own value for the "id" property ' +
- 'or set the property type to String.',
- );
- });
- it('throws an error when generating a new value for a primary key of a "array" type', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.ARRAY,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const promise = rep.create({});
- expect(promise).to.be.rejectedWith(
- 'MongoDB unable to generate primary keys of Array. ' +
- 'Do provide your own value for the "id" property ' +
- 'or set the property type to String.',
- );
- });
- it('throws an error when generating a new value for a primary key of a "object" type', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.OBJECT,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const promise = rep.create({});
- expect(promise).to.be.rejectedWith(
- 'MongoDB unable to generate primary keys of Object. ' +
- 'Do provide your own value for the "id" property ' +
- 'or set the property type to String.',
- );
- });
- it('allows to specify an ObjectID instance for a default primary key', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const result = await rep.create({[DEF_PK]: oid});
- expect(result).to.be.eql({[DEF_PK]: String(oid)});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.not.null;
- });
- it('allows to specify an ObjectID string for a default primary key', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const id = String(oid);
- const result = await rep.create({[DEF_PK]: id});
- expect(result).to.be.eql({[DEF_PK]: id});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.not.null;
- });
- it('allows to specify an ObjectID instance for "id" primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.ANY,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const result = await rep.create({id: oid});
- expect(result).to.be.eql({id: String(oid)});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.not.null;
- });
- it('allows to specify an ObjectID string for "id" primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- id: {
- type: DataType.STRING,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const id = String(oid);
- const result = await rep.create({id});
- expect(result).to.be.eql({id});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.not.null;
- });
- it('allows to specify an ObjectID instance for "_id" primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- _id: {
- type: DataType.ANY,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const result = await rep.create({_id: oid});
- expect(result).to.be.eql({_id: String(oid)});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.not.null;
- });
- it('allows to specify an ObjectID string for "_id" primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- _id: {
- type: DataType.STRING,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const id = String(oid);
- const result = await rep.create({_id: id});
- expect(result).to.be.eql({_id: id});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.not.null;
- });
- it('throws an error for a custom primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- myId: {
- type: DataType.ANY,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const promise = rep.create({myId: oid});
- await expect(promise).to.be.rejectedWith(
- 'MongoDB is not supporting custom names of the primary key. ' +
- 'Do use "id" as a primary key instead of "myId".',
- );
- });
- it('throws an error if a given "number" identifier already exists', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({[DEF_PK]: 10});
- const promise = rep.create({[DEF_PK]: 10});
- await expect(promise).to.be.rejectedWith(
- 'E11000 duplicate key error collection: test.model index: ' +
- '_id_ dup key: { _id: 10 }',
- );
- });
- it('throws an error if a given "string" identifier already exists', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({[DEF_PK]: 'str'});
- const promise = rep.create({[DEF_PK]: 'str'});
- await expect(promise).to.be.rejectedWith(
- 'E11000 duplicate key error collection: test.model index: ' +
- '_id_ dup key: { _id: "str" }',
- );
- });
- it('throws an error if a given ObjectId instance identifier already exists', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- await rep.create({[DEF_PK]: oid});
- const promise = rep.create({[DEF_PK]: oid});
- await expect(promise).to.be.rejectedWith(
- format(
- 'E11000 duplicate key error collection: test.model index: ' +
- "_id_ dup key: { _id: ObjectId('%s') }",
- oid,
- ),
- );
- });
- it('throws an error if a given ObjectId string identifier already exists', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const id = String(oid);
- await rep.create({[DEF_PK]: id});
- const promise = rep.create({[DEF_PK]: id});
- await expect(promise).to.be.rejectedWith(
- format(
- 'E11000 duplicate key error collection: test.model index: ' +
- "_id_ dup key: { _id: ObjectId('%s') }",
- id,
- ),
- );
- });
- it('uses a specified column name for a regular property', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'bar',
- },
- },
- });
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: 10});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 10});
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, bar: 10});
- });
- it('uses a specified column name for a regular property with a default value', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'bar',
- default: 10,
- },
- },
- });
- const rep = schema.getRepository('model');
- const result = await rep.create({});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 10});
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, bar: 10});
- });
- it('stores a Date instance as date and returns string type', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const date = new Date();
- const dateString = date.toISOString();
- const result = await rep.create({date});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], date: dateString});
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, date});
- });
- it('stores a Date string as date and returns string type', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const date = new Date();
- const dateString = date.toISOString();
- const result = await rep.create({date: dateString});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], date: dateString});
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, date});
- });
- it('stores a string as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: 'str'});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 'str'});
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 'str'});
- });
- it('stores a number as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: 10});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 10});
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 10});
- });
- it('stores a boolean as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: true, bar: false});
- expect(result).to.be.eql({
- [DEF_PK]: result[DEF_PK],
- foo: true,
- bar: false,
- });
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: true, bar: false});
- });
- it('stores an array as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: ['bar']});
- expect(result).to.be.eql({
- [DEF_PK]: result[DEF_PK],
- foo: ['bar'],
- });
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: ['bar']});
- });
- it('stores an object as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: {bar: 10}});
- expect(result).to.be.eql({
- [DEF_PK]: result[DEF_PK],
- foo: {bar: 10},
- });
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: {bar: 10}});
- });
- it('stores an undefined as null', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: undefined});
- expect(result).to.be.eql({
- [DEF_PK]: result[DEF_PK],
- foo: null,
- });
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: null});
- });
- it('stores an null as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: null});
- expect(result).to.be.eql({
- [DEF_PK]: result[DEF_PK],
- foo: null,
- });
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: null});
- });
- it('uses a short fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create({foo: 10, bar: 20}, {fields: 'foo'});
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 10});
- });
- it('uses a full fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.create(
- {foo: 10, bar: 20, baz: 30},
- {fields: ['foo', 'bar']},
- );
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK], foo: 10, bar: 20});
- const oid = new ObjectId(result[DEF_PK]);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 10, bar: 20, baz: 30});
- });
- it('a fields clause uses property names instead of column names', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'fooCol',
- },
- bar: {
- type: DataType.NUMBER,
- columnName: 'barCol',
- },
- baz: {
- type: DataType.NUMBER,
- columnName: 'bazCol',
- },
- },
- });
- const rep = schema.getRepository('model');
- const result = await rep.create(
- {foo: 10, bar: 20, baz: 30},
- {fields: ['fooCol', 'barCol']},
- );
- expect(result).to.be.eql({[DEF_PK]: result[DEF_PK]});
- });
- });
- describe('replaceById', function () {
- it('removes properties when replacing an item by a given identifier', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {bar: 20});
- expect(replaced).to.be.eql({[DEF_PK]: id, bar: 20});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, bar: 20});
- });
- it('ignores identifier value in a given data in case of a default primary key', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({[DEF_PK]: 'foo', prop: 10});
- const replaced = await rep.replaceById('foo', {
- [DEF_PK]: 'bar',
- prop: 20,
- });
- expect(replaced).to.be.eql({[DEF_PK]: 'foo', prop: 20});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: 'foo'});
- expect(rawData).to.be.eql({_id: 'foo', prop: 20});
- });
- it('ignores identifier value in a given data in case of a custom primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- myId: {
- type: DataType.STRING,
- primaryKey: true,
- columnName: '_id',
- },
- },
- });
- const rep = schema.getRepository('model');
- await rep.create({myId: 'foo', prop: 10});
- const replaced = await rep.replaceById('foo', {myId: 'bar', prop: 20});
- expect(replaced).to.be.eql({myId: 'foo', prop: 20});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: 'foo'});
- expect(rawData).to.be.eql({_id: 'foo', prop: 20});
- });
- it('throws an error if a given identifier does not exist', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const promise = rep.replaceById(oid, {foo: 10});
- await expect(promise).to.be.rejectedWith(
- format('Identifier "%s" is not found.', oid),
- );
- });
- it('throws an error for a custom primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- myId: {
- type: DataType.ANY,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const promise = rep.replaceById('id', {foo: 10});
- await expect(promise).to.be.rejectedWith(
- 'MongoDB is not supporting custom names of the primary key. ' +
- 'Do use "id" as a primary key instead of "myId".',
- );
- });
- it('uses a specified column name for a regular property', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'bar',
- },
- },
- });
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: 20});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: 20});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, bar: 20});
- });
- it('stores a Date instance as date and returns string type', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const date = new Date();
- const dateString = date.toISOString();
- const created = await rep.create({date: null});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {date});
- expect(replaced).to.be.eql({[DEF_PK]: id, date: dateString});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, date});
- });
- it('stores a Date string as date and returns string type', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const date = new Date();
- const dateString = date.toISOString();
- const created = await rep.create({date: null});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {date: dateString});
- expect(replaced).to.be.eql({[DEF_PK]: id, date: dateString});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, date});
- });
- it('stores a string as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: 'str'});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: 'str'});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 'str'});
- });
- it('stores a number as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: 10});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: 10});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 10});
- });
- it('stores a boolean as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null, bar: null});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: true, bar: false});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: true, bar: false});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: true, bar: false});
- });
- it('stores an array as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: ['bar']});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: ['bar']});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: ['bar']});
- });
- it('stores an object as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: {bar: 10}});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: {bar: 10}});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: {bar: 10}});
- });
- it('stores an undefined as null', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: undefined});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: null});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: null});
- });
- it('stores an null as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(id, {foo: null});
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: null});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: null});
- });
- it('uses a short fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10, bar: 20});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(
- id,
- {foo: 15, bar: 25},
- {fields: 'foo'},
- );
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: 15});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 15, bar: 25});
- });
- it('uses a full fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10, bar: 20, baz: 30});
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(
- id,
- {foo: 15, bar: 25, baz: 35},
- {fields: ['foo', 'bar']},
- );
- expect(replaced).to.be.eql({[DEF_PK]: id, foo: 15, bar: 25});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 15, bar: 25, baz: 35});
- });
- it('a fields clause uses property names instead of column names', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'fooCol',
- },
- bar: {
- type: DataType.NUMBER,
- columnName: 'barCol',
- },
- baz: {
- type: DataType.NUMBER,
- columnName: 'bazCol',
- },
- },
- });
- const rep = schema.getRepository('model');
- const created = await rep.create(
- {foo: 10, bar: 20, baz: 30},
- {fields: ['fooCol', 'barCol']},
- );
- const id = created[DEF_PK];
- const replaced = await rep.replaceById(
- id,
- {foo: 15, bar: 25, baz: 35},
- {fields: ['fooCol', 'barCol']},
- );
- expect(replaced).to.be.eql({[DEF_PK]: replaced[DEF_PK]});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, fooCol: 15, barCol: 25, bazCol: 35});
- });
- });
- describe('patchById', function () {
- it('updates only provided properties by a given identifier', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {bar: 20});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: 10, bar: 20});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 10, bar: 20});
- });
- it('does not throw an error if a partial data does not have required property', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- required: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const {insertedId: oid} = await MDB_CLIENT.db()
- .collection('model')
- .insertOne({bar: 10});
- const patched = await rep.patchById(oid, {baz: 20});
- const id = String(oid);
- expect(patched).to.be.eql({[DEF_PK]: id, bar: 10, baz: 20});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, bar: 10, baz: 20});
- });
- it('ignores identifier value in a given data in case of a default primary key', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({[DEF_PK]: 'foo', prop: 10});
- const patched = await rep.patchById('foo', {
- [DEF_PK]: 'bar',
- prop: 20,
- });
- expect(patched).to.be.eql({[DEF_PK]: 'foo', prop: 20});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: 'foo'});
- expect(rawData).to.be.eql({_id: 'foo', prop: 20});
- });
- it('ignores identifier value in a given data in case of a custom primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- myId: {
- type: DataType.STRING,
- primaryKey: true,
- columnName: '_id',
- },
- },
- });
- const rep = schema.getRepository('model');
- await rep.create({myId: 'foo', prop: 10});
- const patched = await rep.patchById('foo', {myId: 'bar', prop: 20});
- expect(patched).to.be.eql({myId: 'foo', prop: 20});
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: 'foo'});
- expect(rawData).to.be.eql({_id: 'foo', prop: 20});
- });
- it('throws an error if a given identifier does not exist', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const promise = rep.patchById(oid, {foo: 10});
- await expect(promise).to.be.rejectedWith(
- format('Identifier "%s" is not found.', oid),
- );
- });
- it('throws an error for a custom primary key', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- myId: {
- type: DataType.ANY,
- primaryKey: true,
- },
- },
- });
- const rep = schema.getRepository('model');
- const promise = rep.patchById('id', {foo: 10});
- await expect(promise).to.be.rejectedWith(
- 'MongoDB is not supporting custom names of the primary key. ' +
- 'Do use "id" as a primary key instead of "myId".',
- );
- });
- it('uses a specified column name for a regular property', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'bar',
- },
- },
- });
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const patched = await rep.replaceById(id, {foo: 20});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: 20});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, bar: 20});
- });
- it('stores a Date instance as date and returns string type', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const date = new Date();
- const dateString = date.toISOString();
- const created = await rep.create({date: null});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {date});
- expect(patched).to.be.eql({[DEF_PK]: id, date: dateString});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, date});
- });
- it('stores a Date string as date and returns string type', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const date = new Date();
- const dateString = date.toISOString();
- const created = await rep.create({date: null});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {date: dateString});
- expect(patched).to.be.eql({[DEF_PK]: id, date: dateString});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, date});
- });
- it('stores a string as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {foo: 'str'});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: 'str'});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 'str'});
- });
- it('stores a number as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {foo: 10});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: 10});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 10});
- });
- it('stores a boolean as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null, bar: null});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {foo: true, bar: false});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: true, bar: false});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: true, bar: false});
- });
- it('stores an array as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {foo: ['bar']});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: ['bar']});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: ['bar']});
- });
- it('stores an object as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: null});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {foo: {bar: 10}});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: {bar: 10}});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: {bar: 10}});
- });
- it('stores an undefined as null', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {foo: undefined});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: null});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: null});
- });
- it('stores an null as is', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10});
- const id = created[DEF_PK];
- const patched = await rep.patchById(id, {foo: null});
- expect(patched).to.be.eql({[DEF_PK]: id, foo: null});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: null});
- });
- it('uses a short fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10, bar: 20});
- const id = created[DEF_PK];
- const patched = await rep.patchById(
- id,
- {foo: 15, bar: 25},
- {fields: 'foo'},
- );
- expect(patched).to.be.eql({[DEF_PK]: id, foo: 15});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 15, bar: 25});
- });
- it('uses a full fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10, bar: 20, baz: 30});
- const id = created[DEF_PK];
- const patched = await rep.patchById(
- id,
- {foo: 15, bar: 25, baz: 35},
- {fields: ['foo', 'bar']},
- );
- expect(patched).to.be.eql({[DEF_PK]: id, foo: 15, bar: 25});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, foo: 15, bar: 25, baz: 35});
- });
- it('a fields clause uses property names instead of column names', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'fooCol',
- },
- bar: {
- type: DataType.NUMBER,
- columnName: 'barCol',
- },
- baz: {
- type: DataType.NUMBER,
- columnName: 'bazCol',
- },
- },
- });
- const rep = schema.getRepository('model');
- const created = await rep.create(
- {foo: 10, bar: 20, baz: 30},
- {fields: ['fooCol', 'barCol']},
- );
- const id = created[DEF_PK];
- const patched = await rep.patchById(
- id,
- {foo: 15, bar: 25, baz: 35},
- {fields: ['fooCol', 'barCol']},
- );
- expect(patched).to.be.eql({[DEF_PK]: patched[DEF_PK]});
- const oid = new ObjectId(id);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .findOne({_id: oid});
- expect(rawData).to.be.eql({_id: oid, fooCol: 15, barCol: 25, bazCol: 35});
- });
- });
- describe('find', function () {
- it('returns an empty array', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.find();
- expect(result).to.be.empty;
- expect(result).to.be.instanceOf(Array);
- });
- it('returns all items', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const doc1 = await rep.create({foo: 1});
- const doc2 = await rep.create({bar: 2});
- const doc3 = await rep.create({baz: 3});
- const result = await rep.find();
- expect(result).to.be.eql([doc1, doc2, doc3]);
- });
- it('uses a short fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 10, bar: 20});
- const created2 = await rep.create({foo: 20, bar: 30});
- const id1 = created1[DEF_PK];
- const id2 = created2[DEF_PK];
- const result = await rep.find({fields: 'foo'});
- expect(result).to.be.eql([
- {[DEF_PK]: id1, foo: 10},
- {[DEF_PK]: id2, foo: 20},
- ]);
- });
- it('uses a full fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 10, bar: 20, baz: 30});
- const created2 = await rep.create({foo: 20, bar: 30, baz: 40});
- const id1 = created1[DEF_PK];
- const id2 = created2[DEF_PK];
- const result = await rep.find({fields: ['foo', 'bar']});
- expect(result).to.be.eql([
- {[DEF_PK]: id1, foo: 10, bar: 20},
- {[DEF_PK]: id2, foo: 20, bar: 30},
- ]);
- });
- it('a fields clause uses property names instead of column names', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'fooCol',
- },
- bar: {
- type: DataType.NUMBER,
- columnName: 'barCol',
- },
- baz: {
- type: DataType.NUMBER,
- columnName: 'bazCol',
- },
- },
- });
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 10, bar: 20, baz: 30});
- const created2 = await rep.create({foo: 20, bar: 30, baz: 40});
- const id1 = created1[DEF_PK];
- const id2 = created2[DEF_PK];
- const result = await rep.find({fields: ['fooCol', 'barCol']});
- expect(result).to.be.eql([{[DEF_PK]: id1}, {[DEF_PK]: id2}]);
- });
- it('uses a short order clause to sort results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 20});
- const created2 = await rep.create({foo: 5});
- const created3 = await rep.create({foo: 10});
- const result1 = await rep.find({order: 'foo'});
- const result2 = await rep.find({order: 'foo ASC'});
- const result3 = await rep.find({order: 'foo DESC'});
- expect(result1).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 5},
- {[DEF_PK]: created3[DEF_PK], foo: 10},
- {[DEF_PK]: created1[DEF_PK], foo: 20},
- ]);
- expect(result2).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 5},
- {[DEF_PK]: created3[DEF_PK], foo: 10},
- {[DEF_PK]: created1[DEF_PK], foo: 20},
- ]);
- expect(result3).to.be.eql([
- {[DEF_PK]: created1[DEF_PK], foo: 20},
- {[DEF_PK]: created3[DEF_PK], foo: 10},
- {[DEF_PK]: created2[DEF_PK], foo: 5},
- ]);
- });
- it('uses a full order clause to sort results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 20, bar: 'b'});
- const created2 = await rep.create({foo: 5, bar: 'b'});
- const created3 = await rep.create({foo: 10, bar: 'a'});
- const result1 = await rep.find({order: ['bar DESC', 'foo']});
- const result2 = await rep.find({order: ['bar', 'foo ASC']});
- expect(result1).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 5, bar: 'b'},
- {[DEF_PK]: created1[DEF_PK], foo: 20, bar: 'b'},
- {[DEF_PK]: created3[DEF_PK], foo: 10, bar: 'a'},
- ]);
- expect(result2).to.be.eql([
- {[DEF_PK]: created3[DEF_PK], foo: 10, bar: 'a'},
- {[DEF_PK]: created2[DEF_PK], foo: 5, bar: 'b'},
- {[DEF_PK]: created1[DEF_PK], foo: 20, bar: 'b'},
- ]);
- });
- it('an order clause uses property names instead of column names', async function () {
- const schema = createSchema();
- schema.defineModel({
- name: 'model',
- datasource: 'mongodb',
- properties: {
- foo: {
- type: DataType.NUMBER,
- columnName: 'fooCol',
- },
- bar: {
- type: DataType.STRING,
- columnName: 'barCol',
- },
- },
- });
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 20, bar: 'b'});
- const created2 = await rep.create({foo: 5, bar: 'b'});
- const created3 = await rep.create({foo: 10, bar: 'a'});
- const result1 = await rep.find({order: ['bar DESC', 'foo']});
- const result2 = await rep.find({order: ['bar', 'foo ASC']});
- expect(result1).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 5, bar: 'b'},
- {[DEF_PK]: created1[DEF_PK], foo: 20, bar: 'b'},
- {[DEF_PK]: created3[DEF_PK], foo: 10, bar: 'a'},
- ]);
- expect(result2).to.be.eql([
- {[DEF_PK]: created3[DEF_PK], foo: 10, bar: 'a'},
- {[DEF_PK]: created2[DEF_PK], foo: 5, bar: 'b'},
- {[DEF_PK]: created1[DEF_PK], foo: 20, bar: 'b'},
- ]);
- });
- it('uses a limit clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 10});
- const created2 = await rep.create({foo: 20});
- await rep.create({foo: 30});
- const result = await rep.find({limit: 2});
- expect(result).to.be.eql([created1, created2]);
- });
- it('uses a skip clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 10});
- const created2 = await rep.create({foo: 20});
- const created3 = await rep.create({foo: 30});
- const result = await rep.find({skip: 1});
- expect(result).to.be.eql([created2, created3]);
- });
- describe('uses a where clause to filter results', function () {
- it('matches by a document subset', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5, bar: 'b'});
- const created2 = await rep.create({foo: 10, bar: 'a'});
- const result1 = await rep.find({where: {foo: 10}});
- const result2 = await rep.find({where: {foo: 5, bar: 'b'}});
- expect(result1).to.be.eql([
- {
- [DEF_PK]: created2[DEF_PK],
- foo: 10,
- bar: 'a',
- },
- ]);
- expect(result2).to.be.eql([
- {
- [DEF_PK]: created1[DEF_PK],
- foo: 5,
- bar: 'b',
- },
- ]);
- });
- it('matches by the "eq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- const created3 = await rep.create({foo: 10});
- const result = await rep.find({where: {foo: {eq: 10}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 10},
- {[DEF_PK]: created3[DEF_PK], foo: 10},
- ]);
- });
- it('matches by the "neq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 10});
- const result = await rep.find({where: {foo: {neq: 10}}});
- expect(result).to.be.eql([{[DEF_PK]: created1[DEF_PK], foo: 5}]);
- });
- it('matches by the "gt" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- const created3 = await rep.create({foo: 15});
- const result = await rep.find({where: {foo: {gt: 10}}});
- expect(result).to.be.eql([{[DEF_PK]: created3[DEF_PK], foo: 15}]);
- });
- it('matches by the "lt" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.find({where: {foo: {lt: 10}}});
- expect(result).to.be.eql([{[DEF_PK]: created1[DEF_PK], foo: 5}]);
- });
- it('matches by the "gte" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- const created3 = await rep.create({foo: 15});
- const result = await rep.find({where: {foo: {gte: 10}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 10},
- {[DEF_PK]: created3[DEF_PK], foo: 15},
- ]);
- });
- it('matches by the "lte" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.find({where: {foo: {lte: 10}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created1[DEF_PK], foo: 5},
- {[DEF_PK]: created2[DEF_PK], foo: 10},
- ]);
- });
- it('matches by the "inq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.find({where: {foo: {inq: [5, 10]}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created1[DEF_PK], foo: 5},
- {[DEF_PK]: created2[DEF_PK], foo: 10},
- ]);
- });
- it('matches by the "nin" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- const created3 = await rep.create({foo: 15});
- const result = await rep.find({where: {foo: {nin: [5, 10]}}});
- expect(result).to.be.eql([{[DEF_PK]: created3[DEF_PK], foo: 15}]);
- });
- it('matches by the "between" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- const created3 = await rep.create({foo: 15});
- await rep.create({foo: 20});
- const result = await rep.find({where: {foo: {between: [9, 16]}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 10},
- {[DEF_PK]: created3[DEF_PK], foo: 15},
- ]);
- });
- it('matches by the "exists" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({});
- const created2 = await rep.create({foo: undefined});
- const created3 = await rep.create({foo: null});
- const created4 = await rep.create({foo: 10});
- const result1 = await rep.find({where: {foo: {exists: true}}});
- const result2 = await rep.find({where: {foo: {exists: false}}});
- expect(result1).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: null},
- {[DEF_PK]: created3[DEF_PK], foo: null},
- {[DEF_PK]: created4[DEF_PK], foo: 10},
- ]);
- expect(result2).to.be.eql([{[DEF_PK]: created1[DEF_PK]}]);
- });
- it('matches by the "like" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- const created2 = await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- const created4 = await rep.create({foo: 'sit amet'});
- const result = await rep.find({where: {foo: {like: 'sit amet'}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 'dolor sit amet'},
- {[DEF_PK]: created4[DEF_PK], foo: 'sit amet'},
- ]);
- });
- it('matches by the "ilike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- const created2 = await rep.create({foo: 'dolor sit amet'});
- const created3 = await rep.create({foo: 'DOLOR SIT AMET'});
- const created4 = await rep.create({foo: 'sit amet'});
- const result = await rep.find({where: {foo: {ilike: 'sit amet'}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 'dolor sit amet'},
- {[DEF_PK]: created3[DEF_PK], foo: 'DOLOR SIT AMET'},
- {[DEF_PK]: created4[DEF_PK], foo: 'sit amet'},
- ]);
- });
- it('matches by the "nlike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- const created3 = await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.find({where: {foo: {nlike: 'sit amet'}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created1[DEF_PK], foo: 'lorem ipsum'},
- {[DEF_PK]: created3[DEF_PK], foo: 'DOLOR SIT AMET'},
- ]);
- });
- it('matches by the "nilike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.find({where: {foo: {nilike: 'sit amet'}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created1[DEF_PK], foo: 'lorem ipsum'},
- ]);
- });
- it('matches by the "regexp" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- const created2 = await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- const created4 = await rep.create({foo: 'sit amet'});
- const result = await rep.find({where: {foo: {regexp: 'sit am+'}}});
- expect(result).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 'dolor sit amet'},
- {[DEF_PK]: created4[DEF_PK], foo: 'sit amet'},
- ]);
- });
- it('matches by the "regexp" operator with flags', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- const created2 = await rep.create({foo: 'dolor sit amet'});
- const created3 = await rep.create({foo: 'DOLOR SIT AMET'});
- const created4 = await rep.create({foo: 'sit amet'});
- const result = await rep.find({
- where: {
- foo: {regexp: 'sit am+', flags: 'i'},
- },
- });
- expect(result).to.be.eql([
- {[DEF_PK]: created2[DEF_PK], foo: 'dolor sit amet'},
- {[DEF_PK]: created3[DEF_PK], foo: 'DOLOR SIT AMET'},
- {[DEF_PK]: created4[DEF_PK], foo: 'sit amet'},
- ]);
- });
- });
- });
- describe('findById', function () {
- it('throws an error if a given identifier does not exist', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const promise = rep.findById(oid);
- await expect(promise).to.be.rejectedWith(
- format('Identifier "%s" is not found.', oid),
- );
- });
- it('uses a short fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10, bar: 20});
- const id = created[DEF_PK];
- const result = await rep.findById(id, {fields: 'foo'});
- expect(result).to.be.eql({[DEF_PK]: id, foo: 10});
- });
- it('uses a full fields clause to filter results', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created = await rep.create({foo: 10, bar: 20, baz: 30});
- const id = created[DEF_PK];
- const result = await rep.findById(id, {fields: ['foo', 'bar']});
- expect(result).to.be.eql({[DEF_PK]: id, foo: 10, bar: 20});
- });
- });
- describe('delete', function () {
- it('removes all table items and returns their number', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 1});
- await rep.create({foo: 2});
- await rep.create({foo: 3});
- const result = await rep.delete();
- expect(result).to.be.eql(3);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.empty;
- });
- describe('removes by a where clause', function () {
- it('removes by a document subset', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- await rep.create({foo: 10});
- const result = await rep.delete({foo: 10});
- expect(result).to.be.eq(1);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 5},
- ]);
- });
- it('matches by the "eq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 10});
- const result = await rep.delete({foo: {eq: 10}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 5},
- ]);
- });
- it('matches by the "neq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 5});
- const created3 = await rep.create({foo: 10});
- const result = await rep.delete({foo: {neq: 10}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created3[DEF_PK]), foo: 10},
- ]);
- });
- it('matches by the "gt" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.delete({foo: {gt: 10}});
- expect(result).to.be.eq(1);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 5},
- {_id: new ObjectId(created2[DEF_PK]), foo: 10},
- ]);
- });
- it('matches by the "lt" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- const created3 = await rep.create({foo: 15});
- const result = await rep.delete({foo: {lt: 10}});
- expect(result).to.be.eq(1);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created2[DEF_PK]), foo: 10},
- {_id: new ObjectId(created3[DEF_PK]), foo: 15},
- ]);
- });
- it('matches by the "gte" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.delete({foo: {gte: 10}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 5},
- ]);
- });
- it('matches by the "lte" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- const created3 = await rep.create({foo: 15});
- const result = await rep.delete({foo: {lte: 10}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created3[DEF_PK]), foo: 15},
- ]);
- });
- it('matches by the "inq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- const created3 = await rep.create({foo: 15});
- const result = await rep.delete({foo: {inq: [5, 10]}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created3[DEF_PK]), foo: 15},
- ]);
- });
- it('matches by the "nin" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- const created2 = await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.delete({foo: {nin: [5, 10]}});
- expect(result).to.be.eq(1);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 5},
- {_id: new ObjectId(created2[DEF_PK]), foo: 10},
- ]);
- });
- it('matches by the "between" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const created4 = await rep.create({foo: 20});
- const result = await rep.delete({foo: {between: [9, 16]}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 5},
- {_id: new ObjectId(created4[DEF_PK]), foo: 20},
- ]);
- });
- it('matches by the "exists" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({});
- await rep.create({foo: undefined});
- await rep.create({foo: null});
- await rep.create({foo: 10});
- const result = await rep.delete({foo: {exists: true}});
- expect(result).to.be.eq(3);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([{_id: new ObjectId(created1[DEF_PK])}]);
- });
- it('matches by the "like" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- const created3 = await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.delete({foo: {like: 'sit amet'}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 'lorem ipsum'},
- {_id: new ObjectId(created3[DEF_PK]), foo: 'DOLOR SIT AMET'},
- ]);
- });
- it('matches by the "nlike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- const created2 = await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- const created4 = await rep.create({foo: 'sit amet'});
- const result = await rep.delete({foo: {nlike: 'sit amet'}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created2[DEF_PK]), foo: 'dolor sit amet'},
- {_id: new ObjectId(created4[DEF_PK]), foo: 'sit amet'},
- ]);
- });
- it('matches by the "ilike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.delete({foo: {ilike: 'sit amet'}});
- expect(result).to.be.eq(3);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 'lorem ipsum'},
- ]);
- });
- it('matches by the "nilike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- const created2 = await rep.create({foo: 'dolor sit amet'});
- const created3 = await rep.create({foo: 'DOLOR SIT AMET'});
- const created4 = await rep.create({foo: 'sit amet'});
- const result = await rep.delete({foo: {nilike: 'sit amet'}});
- expect(result).to.be.eq(1);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created2[DEF_PK]), foo: 'dolor sit amet'},
- {_id: new ObjectId(created3[DEF_PK]), foo: 'DOLOR SIT AMET'},
- {_id: new ObjectId(created4[DEF_PK]), foo: 'sit amet'},
- ]);
- });
- it('matches by the "regexp" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- const created3 = await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.delete({foo: {regexp: 'sit am+'}});
- expect(result).to.be.eq(2);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 'lorem ipsum'},
- {_id: new ObjectId(created3[DEF_PK]), foo: 'DOLOR SIT AMET'},
- ]);
- });
- it('matches by the "regexp" operator with flags', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const created1 = await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.delete({foo: {regexp: 'sit am+', flags: 'i'}});
- expect(result).to.be.eq(3);
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.eql([
- {_id: new ObjectId(created1[DEF_PK]), foo: 'lorem ipsum'},
- ]);
- });
- });
- });
- describe('deleteById', function () {
- it('returns false if a given identifier is not exist', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const result = await rep.deleteById(oid);
- expect(result).to.be.false;
- });
- it('returns true if an item has removed by a given identifier', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- await rep.create({[DEF_PK]: oid});
- const result = await rep.deleteById(oid);
- expect(result).to.be.true;
- const rawData = await MDB_CLIENT.db()
- .collection('model')
- .find()
- .toArray();
- expect(rawData).to.be.empty;
- });
- });
- describe('exists', function () {
- it('returns false if a given identifier is not exist', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- const result = await rep.exists(oid);
- expect(result).to.be.false;
- });
- it('returns true if a given identifier is exist', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const oid = new ObjectId();
- await rep.create({[DEF_PK]: oid});
- const result = await rep.exists(oid);
- expect(result).to.be.true;
- });
- });
- describe('count', function () {
- it('returns zero if nothing to count', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- const result = await rep.count();
- expect(result).to.be.eq(0);
- });
- it('returns a number of table items', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({});
- await rep.create({});
- await rep.create({});
- const result = await rep.count();
- expect(result).to.be.eq(3);
- });
- describe('uses a where clause to count items', function () {
- it('matches by a document subset', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'a'});
- await rep.create({foo: 'b'});
- await rep.create({foo: 'b'});
- const result = await rep.count({foo: 'b'});
- expect(result).to.be.eql(2);
- });
- it('matches by the "eq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 10});
- const result = await rep.count({foo: {eq: 10}});
- expect(result).to.be.eql(2);
- });
- it('matches by the "neq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 10});
- const result = await rep.count({foo: {neq: 10}});
- expect(result).to.be.eq(1);
- });
- it('matches by the "gt" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.count({foo: {gt: 10}});
- expect(result).to.be.eq(1);
- });
- it('matches by the "lt" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.count({foo: {lt: 10}});
- expect(result).to.be.eq(1);
- });
- it('matches by the "gte" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.count({foo: {gte: 10}});
- expect(result).to.be.eq(2);
- });
- it('matches by the "lte" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.count({foo: {lte: 10}});
- expect(result).to.be.eq(2);
- });
- it('matches by the "inq" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.count({foo: {inq: [5, 10]}});
- expect(result).to.be.eq(2);
- });
- it('matches by the "nin" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- const result = await rep.count({foo: {nin: [5, 10]}});
- expect(result).to.be.eq(1);
- });
- it('matches by the "between" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 5});
- await rep.create({foo: 10});
- await rep.create({foo: 15});
- await rep.create({foo: 20});
- const result = await rep.count({foo: {between: [9, 16]}});
- expect(result).to.be.eq(2);
- });
- it('matches by the "exists" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({});
- await rep.create({foo: undefined});
- await rep.create({foo: null});
- await rep.create({foo: 10});
- const result1 = await rep.count({foo: {exists: true}});
- expect(result1).to.be.eq(3);
- });
- it('matches by the "like" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.count({foo: {like: 'sit amet'}});
- expect(result).to.be.eql(2);
- });
- it('matches by the "nlike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.count({foo: {nlike: 'sit amet'}});
- expect(result).to.be.eql(2);
- });
- it('matches by the "ilike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.count({foo: {ilike: 'sit amet'}});
- expect(result).to.be.eql(3);
- });
- it('matches by the "nilike" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.count({foo: {nilike: 'sit amet'}});
- expect(result).to.be.eql(1);
- });
- it('matches by the "regexp" operator', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.count({foo: {regexp: 'sit am+'}});
- expect(result).to.be.eql(2);
- });
- it('matches by the "regexp" operator with flags', async function () {
- const schema = createSchema();
- schema.defineModel({name: 'model', datasource: 'mongodb'});
- const rep = schema.getRepository('model');
- await rep.create({foo: 'lorem ipsum'});
- await rep.create({foo: 'dolor sit amet'});
- await rep.create({foo: 'DOLOR SIT AMET'});
- await rep.create({foo: 'sit amet'});
- const result = await rep.count({foo: {regexp: 'sit am+', flags: 'i'}});
- expect(result).to.be.eql(3);
- });
- });
- });
- });
|