mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
66f4197236
* chore: test * chore: add * chore: more progress * chore: progress in migration, fix prettier parser * chore: reduce tsc errors * chore: refactor storage utils types * chore: refactor utils types * chore: refactor local storage types * chore: refactor config utils types * chore: refactor tsc types * refactor: apply eslint fix, tabs etc * chore: fix lint errors * test: update unit test conf to typescript setup few test refactored to typescript * chore: enable more unit test migrate to typescript * chore: migrate storage test to tsc * chore: migrate up storage test to tsc * refactor: enable plugin and auth test * chore: migrate plugin loader test * chore: update dependencies * chore: migrate functional test to typescript * chore: add codecove * chore: update express * chore: downgrade puppeteer The latest version does not seems to work properly fine. * chore: update dependencies
122 lines
2.9 KiB
TypeScript
122 lines
2.9 KiB
TypeScript
import _ from 'lodash';
|
|
import assert from 'assert';
|
|
import request from 'request';
|
|
import { IRequestPromise } from '../types';
|
|
|
|
const requestData = Symbol('smart_request_data');
|
|
|
|
export class PromiseAssert extends Promise<any> implements IRequestPromise{
|
|
|
|
public constructor(options: any) {
|
|
super(options);
|
|
}
|
|
|
|
public status(expected: number) {
|
|
const selfData = this[requestData];
|
|
|
|
return injectResponse(this, this.then(function(body) {
|
|
try {
|
|
assert.equal(selfData.response.statusCode, expected);
|
|
} catch(err) {
|
|
selfData.error.message = err.message;
|
|
throw selfData.error;
|
|
}
|
|
return body;
|
|
}));
|
|
}
|
|
|
|
public body_ok(expected: any) {
|
|
const selfData = this[requestData];
|
|
|
|
return injectResponse(this, this.then(function(body) {
|
|
try {
|
|
if (_.isRegExp(expected)) {
|
|
assert(body.ok.match(expected), '\'' + body.ok + '\' doesn\'t match ' + expected);
|
|
} else {
|
|
assert.equal(body.ok, expected);
|
|
}
|
|
assert.equal(body.error, null);
|
|
} catch(err) {
|
|
selfData.error.message = err.message;
|
|
throw selfData.error;
|
|
}
|
|
|
|
return body;
|
|
}));
|
|
}
|
|
|
|
|
|
public body_error(expected: any) {
|
|
// $FlowFixMe
|
|
const selfData = this[requestData];
|
|
|
|
return injectResponse(this, this.then(function(body) {
|
|
try {
|
|
if (_.isRegExp(expected)) {
|
|
assert(body.error.match(expected), body.error + ' doesn\'t match ' + expected);
|
|
} else {
|
|
assert.equal(body.error, expected);
|
|
}
|
|
assert.equal(body.ok, null);
|
|
} catch(err) {
|
|
selfData.error.message = err.message;
|
|
throw selfData.error;
|
|
}
|
|
return body;
|
|
}));
|
|
}
|
|
|
|
public request(callback: any) {
|
|
callback(this[requestData].request);
|
|
return this;
|
|
}
|
|
|
|
public response(cb: any) {
|
|
const selfData = this[requestData];
|
|
|
|
return injectResponse(this, this.then(function(body) {
|
|
cb(selfData.response);
|
|
return body;
|
|
}));
|
|
}
|
|
|
|
public send(data: any) {
|
|
this[requestData].request.end(data);
|
|
return this;
|
|
}
|
|
|
|
}
|
|
|
|
function injectResponse(smartObject: any, promise: Promise<any>): Promise<any> {
|
|
// $FlowFixMe
|
|
promise[requestData] = smartObject[requestData];
|
|
return promise;
|
|
}
|
|
|
|
|
|
function smartRequest(options: any): Promise<any> {
|
|
const smartObject: any = {};
|
|
|
|
smartObject[requestData] = {};
|
|
smartObject[requestData].error = Error();
|
|
Error.captureStackTrace(smartObject[requestData].error, smartRequest);
|
|
|
|
const promiseResult: Promise<any> = new PromiseAssert(function(resolve, reject) {
|
|
// store request reference on symbol
|
|
smartObject[requestData].request = request(options, function(err, res, body) {
|
|
if (err) {
|
|
return reject(err);
|
|
}
|
|
|
|
// store the response on symbol
|
|
smartObject[requestData].response = res;
|
|
resolve(body);
|
|
});
|
|
});
|
|
|
|
return injectResponse(smartObject, promiseResult);
|
|
}
|
|
|
|
export default smartRequest;
|
|
|