mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
d8ff186303
Client and server now have their own tsconfig so that the transpilation is only done on the part that is being modified. It also allows faster transpilation since tests are now excluded from tsconfig. They are compiled by ts-node during unit tests execution.
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import BluebirdPromise = require("bluebird");
|
|
import Sinon = require("sinon");
|
|
import { ICollection } from "../../../src/lib/storage/ICollection";
|
|
|
|
export class CollectionStub implements ICollection {
|
|
findStub: Sinon.SinonStub;
|
|
findOneStub: Sinon.SinonStub;
|
|
updateStub: Sinon.SinonStub;
|
|
removeStub: Sinon.SinonStub;
|
|
insertStub: Sinon.SinonStub;
|
|
|
|
constructor() {
|
|
this.findStub = Sinon.stub();
|
|
this.findOneStub = Sinon.stub();
|
|
this.updateStub = Sinon.stub();
|
|
this.removeStub = Sinon.stub();
|
|
this.insertStub = Sinon.stub();
|
|
}
|
|
|
|
find(filter: any, sortKeys: any, count: number): BluebirdPromise<any> {
|
|
return this.findStub(filter, sortKeys, count);
|
|
}
|
|
|
|
findOne(filter: any): BluebirdPromise<any> {
|
|
return this.findOneStub(filter);
|
|
}
|
|
|
|
update(filter: any, document: any, options: any): BluebirdPromise<any> {
|
|
return this.updateStub(filter, document, options);
|
|
}
|
|
|
|
remove(filter: any): BluebirdPromise<any> {
|
|
return this.removeStub(filter);
|
|
}
|
|
|
|
insert(document: any): BluebirdPromise<any> {
|
|
return this.insertStub(document);
|
|
}
|
|
}
|