2020-08-13 23:27:00 +02:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2020-08-11 07:21:51 +02:00
|
|
|
import { DIST_TAGS, DEFAULT_USER } from '@verdaccio/dev-commons';
|
2020-03-03 23:59:19 +01:00
|
|
|
import {
|
|
|
|
validateName,
|
|
|
|
convertDistRemoteToLocalTarballUrls,
|
|
|
|
parseReadme,
|
|
|
|
validatePackage,
|
|
|
|
validateMetadata,
|
|
|
|
combineBaseUrl,
|
|
|
|
getVersion,
|
|
|
|
normalizeDistTags,
|
|
|
|
getWebProtocol,
|
|
|
|
getVersionFromTarball,
|
|
|
|
sortByName,
|
|
|
|
formatAuthor,
|
|
|
|
isHTTPProtocol,
|
|
|
|
} from '../src/index';
|
|
|
|
|
|
|
|
const readmeFile = (fileName = 'markdown.md') => {
|
|
|
|
return fs.readFileSync(path.join(__dirname, `./partials/readme/${fileName}`));
|
2020-08-13 23:27:00 +02:00
|
|
|
};
|
2020-03-03 23:59:19 +01:00
|
|
|
|
|
|
|
describe('Utilities', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
const buildURI = (host, version) => `http://${host}/npm_test/-/npm_test-${version}.tgz`;
|
2020-03-03 23:59:19 +01:00
|
|
|
const fakeHost = 'fake.com';
|
|
|
|
const metadata: any = {
|
|
|
|
name: 'npm_test',
|
|
|
|
versions: {
|
|
|
|
'1.0.0': {
|
|
|
|
dist: {
|
2020-08-13 23:27:00 +02:00
|
|
|
tarball: 'http://registry.org/npm_test/-/npm_test-1.0.0.tgz',
|
|
|
|
},
|
2020-03-03 23:59:19 +01:00
|
|
|
},
|
|
|
|
'1.0.1': {
|
|
|
|
dist: {
|
2020-08-13 23:27:00 +02:00
|
|
|
tarball: 'http://registry.org/npm_test/-/npm_test-1.0.1.tgz',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-03-03 23:59:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const cloneMetadata = (pkg = metadata) => Object.assign({}, pkg);
|
|
|
|
|
|
|
|
describe('API utilities', () => {
|
|
|
|
describe('Sort packages', () => {
|
|
|
|
const packages = [
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'ghc',
|
2020-03-03 23:59:19 +01:00
|
|
|
},
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'abc',
|
2020-03-03 23:59:19 +01:00
|
|
|
},
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'zxy',
|
|
|
|
},
|
2020-03-03 23:59:19 +01:00
|
|
|
];
|
|
|
|
test('should order ascending', () => {
|
|
|
|
expect(sortByName(packages)).toEqual([
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'abc',
|
2020-03-03 23:59:19 +01:00
|
|
|
},
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'ghc',
|
2020-03-03 23:59:19 +01:00
|
|
|
},
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'zxy',
|
|
|
|
},
|
2020-03-03 23:59:19 +01:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should order descending', () => {
|
|
|
|
expect(sortByName(packages, false)).toEqual([
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'zxy',
|
2020-03-03 23:59:19 +01:00
|
|
|
},
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'ghc',
|
2020-03-03 23:59:19 +01:00
|
|
|
},
|
|
|
|
{
|
2020-08-13 23:27:00 +02:00
|
|
|
name: 'abc',
|
|
|
|
},
|
2020-03-03 23:59:19 +01:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getWebProtocol', () => {
|
|
|
|
test('should handle undefined header', () => {
|
|
|
|
expect(getWebProtocol(undefined, 'http')).toBe('http');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should handle emtpy string', () => {
|
|
|
|
expect(getWebProtocol('', 'http')).toBe('http');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should have header priority over request protocol', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(getWebProtocol('https', 'http')).toBe('https');
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should have handle empty protocol', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(getWebProtocol('https', '')).toBe('https');
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('getWebProtocol and HAProxy variant', () => {
|
|
|
|
// https://github.com/verdaccio/verdaccio/issues/695
|
|
|
|
|
|
|
|
test('should handle http', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(getWebProtocol('http,http', 'https')).toBe('http');
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should handle https', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(getWebProtocol('https,https', 'http')).toBe('https');
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('convertDistRemoteToLocalTarballUrls', () => {
|
|
|
|
test('should build a URI for dist tarball based on new domain', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
const convertDist = convertDistRemoteToLocalTarballUrls(cloneMetadata(), {
|
|
|
|
headers: {
|
|
|
|
host: fakeHost,
|
|
|
|
},
|
|
|
|
// @ts-ignore
|
|
|
|
get: () => 'http',
|
|
|
|
protocol: 'http',
|
|
|
|
});
|
2020-03-03 23:59:19 +01:00
|
|
|
expect(convertDist.versions['1.0.0'].dist.tarball).toEqual(buildURI(fakeHost, '1.0.0'));
|
|
|
|
expect(convertDist.versions['1.0.1'].dist.tarball).toEqual(buildURI(fakeHost, '1.0.1'));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should return same URI whether host is missing', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
const convertDist = convertDistRemoteToLocalTarballUrls(cloneMetadata(), {
|
|
|
|
headers: {},
|
|
|
|
// @ts-ignore
|
|
|
|
get: () => 'http',
|
|
|
|
protocol: 'http',
|
|
|
|
});
|
2020-09-17 06:48:16 +02:00
|
|
|
expect(convertDist.versions['1.0.0'].dist.tarball).toEqual(
|
|
|
|
convertDist.versions['1.0.0'].dist.tarball
|
|
|
|
);
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('normalizeDistTags', () => {
|
|
|
|
test('should delete a invalid latest version', () => {
|
|
|
|
const pkg = cloneMetadata();
|
|
|
|
pkg[DIST_TAGS] = {
|
2020-08-13 23:27:00 +02:00
|
|
|
latest: '20000',
|
2020-03-03 23:59:19 +01:00
|
|
|
};
|
|
|
|
|
2020-08-13 23:27:00 +02:00
|
|
|
normalizeDistTags(pkg);
|
2020-03-03 23:59:19 +01:00
|
|
|
|
|
|
|
expect(Object.keys(pkg[DIST_TAGS])).toHaveLength(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should define last published version as latest', () => {
|
|
|
|
const pkg = cloneMetadata();
|
|
|
|
pkg[DIST_TAGS] = {};
|
|
|
|
|
2020-08-13 23:27:00 +02:00
|
|
|
normalizeDistTags(pkg);
|
2020-03-03 23:59:19 +01:00
|
|
|
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(pkg[DIST_TAGS]).toEqual({ latest: '1.0.1' });
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should define last published version as latest with a custom dist-tag', () => {
|
|
|
|
const pkg = cloneMetadata();
|
|
|
|
pkg[DIST_TAGS] = {
|
2020-08-13 23:27:00 +02:00
|
|
|
beta: '1.0.1',
|
2020-03-03 23:59:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
normalizeDistTags(pkg);
|
|
|
|
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(pkg[DIST_TAGS]).toEqual({ beta: '1.0.1', latest: '1.0.1' });
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should convert any array of dist-tags to a plain string', () => {
|
|
|
|
const pkg = cloneMetadata();
|
|
|
|
pkg[DIST_TAGS] = {
|
2020-08-13 23:27:00 +02:00
|
|
|
latest: ['1.0.1'],
|
2020-03-03 23:59:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
normalizeDistTags(pkg);
|
|
|
|
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(pkg[DIST_TAGS]).toEqual({ latest: '1.0.1' });
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getVersion', () => {
|
|
|
|
test('should get the right version', () => {
|
|
|
|
expect(getVersion(cloneMetadata(), '1.0.0')).toEqual(metadata.versions['1.0.0']);
|
|
|
|
expect(getVersion(cloneMetadata(), 'v1.0.0')).toEqual(metadata.versions['1.0.0']);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should return nothing on get non existing version', () => {
|
|
|
|
expect(getVersion(cloneMetadata(), '0')).toBeUndefined();
|
|
|
|
expect(getVersion(cloneMetadata(), '2.0.0')).toBeUndefined();
|
|
|
|
expect(getVersion(cloneMetadata(), 'v2.0.0')).toBeUndefined();
|
|
|
|
expect(getVersion(cloneMetadata(), undefined)).toBeUndefined();
|
|
|
|
expect(getVersion(cloneMetadata(), null)).toBeUndefined();
|
|
|
|
expect(getVersion(cloneMetadata(), 2)).toBeUndefined();
|
2020-08-13 23:27:00 +02:00
|
|
|
});
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('combineBaseUrl', () => {
|
|
|
|
test('should create a URI', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(combineBaseUrl('http', 'domain')).toEqual('http://domain');
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should create a base url for registry', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(combineBaseUrl('http', 'domain', '')).toEqual('http://domain');
|
|
|
|
expect(combineBaseUrl('http', 'domain', '/')).toEqual('http://domain');
|
|
|
|
expect(combineBaseUrl('http', 'domain', '/prefix/')).toEqual('http://domain/prefix');
|
2020-09-17 06:48:16 +02:00
|
|
|
expect(combineBaseUrl('http', 'domain', '/prefix/deep')).toEqual(
|
|
|
|
'http://domain/prefix/deep'
|
|
|
|
);
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(combineBaseUrl('http', 'domain', 'only-prefix')).toEqual('only-prefix');
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('validatePackage', () => {
|
|
|
|
test('should validate package names', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(validatePackage('package-name')).toBeTruthy();
|
|
|
|
expect(validatePackage('@scope/package-name')).toBeTruthy();
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should fails on validate package names', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(validatePackage('package-name/test/fake')).toBeFalsy();
|
|
|
|
expect(validatePackage('@/package-name')).toBeFalsy();
|
|
|
|
expect(validatePackage('$%$%#$%$#%#$%$#')).toBeFalsy();
|
|
|
|
expect(validatePackage('node_modules')).toBeFalsy();
|
|
|
|
expect(validatePackage('__proto__')).toBeFalsy();
|
|
|
|
expect(validatePackage('favicon.ico')).toBeFalsy();
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('validateName', () => {
|
|
|
|
test('should fails with no string', () => {
|
|
|
|
// intended to fail with Typescript, do not remove
|
|
|
|
// @ts-ignore
|
|
|
|
expect(validateName(null)).toBeFalsy();
|
|
|
|
// @ts-ignore
|
|
|
|
expect(validateName(undefined)).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('good ones', () => {
|
|
|
|
expect(validateName('verdaccio')).toBeTruthy();
|
|
|
|
expect(validateName('some.weird.package-zzz')).toBeTruthy();
|
|
|
|
expect(validateName('old-package@0.1.2.tgz')).toBeTruthy();
|
|
|
|
// fix https://github.com/verdaccio/verdaccio/issues/1400
|
|
|
|
expect(validateName('-build-infra')).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should be valid using uppercase', () => {
|
|
|
|
expect(validateName('ETE')).toBeTruthy();
|
|
|
|
expect(validateName('JSONStream')).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fails with path seps', () => {
|
|
|
|
expect(validateName('some/thing')).toBeFalsy();
|
|
|
|
expect(validateName('some\\thing')).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fail with no hidden files', () => {
|
|
|
|
expect(validateName('.bin')).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fails with reserved words', () => {
|
|
|
|
expect(validateName('favicon.ico')).toBeFalsy();
|
|
|
|
expect(validateName('node_modules')).toBeFalsy();
|
|
|
|
expect(validateName('__proto__')).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fails with other options', () => {
|
|
|
|
expect(validateName('pk g')).toBeFalsy();
|
|
|
|
expect(validateName('pk\tg')).toBeFalsy();
|
|
|
|
expect(validateName('pk%20g')).toBeFalsy();
|
|
|
|
expect(validateName('pk+g')).toBeFalsy();
|
|
|
|
expect(validateName('pk:g')).toBeFalsy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('validateMetadata', () => {
|
|
|
|
test('should fills an empty metadata object', () => {
|
|
|
|
// intended to fail with flow, do not remove
|
|
|
|
// @ts-ignore
|
|
|
|
expect(Object.keys(validateMetadata({}))).toContain(DIST_TAGS);
|
|
|
|
// @ts-ignore
|
|
|
|
expect(Object.keys(validateMetadata({}))).toContain('versions');
|
|
|
|
// @ts-ignore
|
|
|
|
expect(Object.keys(validateMetadata({}))).toContain('time');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fails the assertions is not an object', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(function () {
|
2020-03-03 23:59:19 +01:00
|
|
|
// @ts-ignore
|
|
|
|
validateMetadata('');
|
|
|
|
// @ts-ignore
|
|
|
|
}).toThrow(expect.hasAssertions());
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should fails the assertions is name does not match', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(function () {
|
2020-03-03 23:59:19 +01:00
|
|
|
// @ts-ignore
|
2020-08-13 23:27:00 +02:00
|
|
|
validateMetadata({}, 'no-name');
|
2020-03-03 23:59:19 +01:00
|
|
|
// @ts-ignore
|
|
|
|
}).toThrow(expect.hasAssertions());
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getVersionFromTarball', () => {
|
|
|
|
test('should get the right version', () => {
|
2020-08-13 23:27:00 +02:00
|
|
|
const simpleName = 'test-name-4.2.12.tgz';
|
|
|
|
const complexName = 'test-5.6.4-beta.2.tgz';
|
|
|
|
const otherComplexName = 'test-3.5.0-6.tgz';
|
|
|
|
expect(getVersionFromTarball(simpleName)).toEqual('4.2.12');
|
|
|
|
expect(getVersionFromTarball(complexName)).toEqual('5.6.4-beta.2');
|
|
|
|
expect(getVersionFromTarball(otherComplexName)).toEqual('3.5.0-6');
|
|
|
|
});
|
|
|
|
|
|
|
|
test("should don'n fall at incorrect tarball name", () => {
|
|
|
|
expect(getVersionFromTarball('incorrectName')).toBeUndefined();
|
|
|
|
});
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('String utilities', () => {
|
|
|
|
test('should check HTTP protocol correctly', () => {
|
|
|
|
expect(isHTTPProtocol('http://domain.com/-/static/logo.png')).toBeTruthy();
|
|
|
|
expect(isHTTPProtocol('https://www.domain.com/-/static/logo.png')).toBeTruthy();
|
|
|
|
expect(isHTTPProtocol('//domain.com/-/static/logo.png')).toBeTruthy();
|
|
|
|
expect(isHTTPProtocol('file:///home/user/logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('file:///F:/home/user/logo.png')).toBeFalsy();
|
|
|
|
// Note that uses ftp protocol in src was deprecated in modern browsers
|
|
|
|
expect(isHTTPProtocol('ftp://1.2.3.4/home/user/logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('./logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('.\\logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('../logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('..\\logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('../../static/logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('..\\..\\static\\logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('.logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('/static/logo.png')).toBeFalsy();
|
|
|
|
expect(isHTTPProtocol('F:\\static\\logo.png')).toBeFalsy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('parseReadme', () => {
|
|
|
|
test('should parse makrdown text to html template', () => {
|
|
|
|
const markdown = '# markdown';
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(parseReadme('testPackage', markdown)).toEqual('<h1 id="markdown">markdown</h1>');
|
|
|
|
expect(parseReadme('testPackage', String(readmeFile('markdown.md')))).toMatchSnapshot();
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should pass for conversion of non-ascii to markdown text', () => {
|
|
|
|
const simpleText = 'simple text';
|
|
|
|
const randomText = '%%%%%**##==';
|
|
|
|
const randomTextMarkdown = 'simple text \n # markdown';
|
|
|
|
|
2020-08-13 23:27:00 +02:00
|
|
|
expect(parseReadme('testPackage', randomText)).toEqual('<p>%%%%%**##==</p>');
|
|
|
|
expect(parseReadme('testPackage', simpleText)).toEqual('<p>simple text</p>');
|
2020-09-17 06:48:16 +02:00
|
|
|
expect(parseReadme('testPackage', randomTextMarkdown)).toEqual(
|
|
|
|
'<p>simple text </p>\n<h1 id="markdown">markdown</h1>'
|
|
|
|
);
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should show error for no readme data', () => {
|
|
|
|
const noData = '';
|
|
|
|
const loggerError = jest.fn();
|
|
|
|
const logger = {
|
2020-08-13 23:27:00 +02:00
|
|
|
error: loggerError,
|
2020-03-03 23:59:19 +01:00
|
|
|
};
|
2020-09-17 06:48:16 +02:00
|
|
|
expect(parseReadme('testPackage', noData, logger)).toEqual(
|
|
|
|
'<p>ERROR: No README data found!</p>'
|
|
|
|
);
|
|
|
|
expect(loggerError).toHaveBeenCalledWith(
|
|
|
|
{ packageName: 'testPackage' },
|
|
|
|
'@{packageName}: No readme found'
|
|
|
|
);
|
2020-03-03 23:59:19 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('formatAuthor', () => {
|
|
|
|
test('should check author field different values', () => {
|
|
|
|
const author = 'verdaccioNpm';
|
|
|
|
expect(formatAuthor(author).name).toEqual(author);
|
|
|
|
});
|
|
|
|
test('should check author field for object value', () => {
|
|
|
|
const user = {
|
|
|
|
name: 'Verdaccion NPM',
|
|
|
|
email: 'verdaccio@verdaccio.org',
|
2020-08-13 23:27:00 +02:00
|
|
|
url: 'https://verdaccio.org',
|
2020-03-03 23:59:19 +01:00
|
|
|
};
|
|
|
|
expect(formatAuthor(user).url).toEqual(user.url);
|
|
|
|
expect(formatAuthor(user).email).toEqual(user.email);
|
|
|
|
expect(formatAuthor(user).name).toEqual(user.name);
|
|
|
|
});
|
|
|
|
test('should check author field for other value', () => {
|
|
|
|
expect(formatAuthor(null).name).toEqual(DEFAULT_USER);
|
|
|
|
expect(formatAuthor({}).name).toEqual(DEFAULT_USER);
|
|
|
|
expect(formatAuthor([]).name).toEqual(DEFAULT_USER);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|