mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
f242d1b261
* chore: add testing notes co-contributions by: @lirantal @DanielRuf This PR aims to add on boarding proccess for new contributors to test verdaccio, update test or add new features. * chore: add new sections * chore: add functional test notes * chore: fix typos Co-Authored-By: Daniel Ruf <danielruf@users.noreply.github.com> * chore: add functional test block Co-Authored-By: Daniel Ruf <danielruf@users.noreply.github.com> * chore: add before commit guide Co-Authored-By: Daniel Ruf <danielruf@users.noreply.github.com> * chore: add ci notes Co-Authored-By: Daniel Ruf <danielruf@users.noreply.github.com> * chore: extend notes Co-Authored-By: Daniel Ruf <danielruf@users.noreply.github.com> * chore: update ci notes Co-Authored-By: Daniel Ruf <danielruf@users.noreply.github.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com> * chore: update test/README.md Co-Authored-By: Liran Tal <liran.tal@gmail.com>
101 lines
3.1 KiB
JavaScript
101 lines
3.1 KiB
JavaScript
// @flow
|
|
|
|
import {HEADER_TYPE, HEADERS, HTTP_STATUS, TOKEN_BEARER} from '../../../src/lib/constants';
|
|
import {buildToken} from "../../../src/lib/utils";
|
|
|
|
// API Helpers
|
|
|
|
// This file should contain utilities to avoid repeated task over API unit testing,
|
|
// Please, comply with the following:
|
|
// - Promisify everything
|
|
// - Encourage using constants or create new ones if it's needed
|
|
// - // $FlowFixMe or any is fine if there is no other way
|
|
|
|
export function getPackage(
|
|
request: any,
|
|
header: string,
|
|
pkg: string,
|
|
statusCode: number = HTTP_STATUS.OK) {
|
|
// $FlowFixMe
|
|
return new Promise((resolve) => {
|
|
request.get(`/${pkg}`)
|
|
.set('authorization', header)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(statusCode)
|
|
.end(function(err, res) {
|
|
resolve([err, res]);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function loginUserToken(request: any,
|
|
user: string,
|
|
credentials: any,
|
|
token: string,
|
|
statusCode: number = HTTP_STATUS.CREATED) {
|
|
// $FlowFixMe
|
|
return new Promise((resolve) => {
|
|
request.put(`/-/user/org.couchdb.user:${user}`)
|
|
.send(credentials)
|
|
.set('authorization', buildToken(TOKEN_BEARER, token))
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(statusCode)
|
|
.end(function(err, res) {
|
|
return resolve([err, res]);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function addUser(request: any, user: string, credentials: any,
|
|
statusCode: number = HTTP_STATUS.CREATED) {
|
|
// $FlowFixMe
|
|
return new Promise((resolve) => {
|
|
request.put(`/-/user/org.couchdb.user:${user}`)
|
|
.send(credentials)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(statusCode)
|
|
.end(function(err, res) {
|
|
return resolve([err, res]);
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function getNewToken(request: any, credentials: any) {
|
|
return new Promise(async (resolve) => {
|
|
const [err, res] = await
|
|
addUser(request, credentials.name, credentials);
|
|
expect(err).toBeNull();
|
|
const {token, ok} = res.body;
|
|
expect(ok).toBeDefined();
|
|
expect(token).toBeDefined();
|
|
expect(typeof token).toBe('string');
|
|
resolve(token);
|
|
});
|
|
}
|
|
|
|
export function getProfile(request: any, token: string, statusCode: number = HTTP_STATUS.OK) {
|
|
// $FlowFixMe
|
|
return new Promise((resolve) => {
|
|
request.get(`/-/npm/v1/user`)
|
|
.set('authorization', buildToken(TOKEN_BEARER, token))
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(statusCode)
|
|
.end(function(err, res) {
|
|
return resolve([err, res]);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function postProfile(request: any, body: any, token: string, statusCode: number = HTTP_STATUS.OK) {
|
|
// $FlowFixMe
|
|
return new Promise((resolve) => {
|
|
request.post(`/-/npm/v1/user`)
|
|
.send(body)
|
|
.set('authorization', `Bearer ${token}`)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(statusCode)
|
|
.end(function(err, res) {
|
|
return resolve([err, res]);
|
|
});
|
|
});
|
|
}
|