2018-03-17 18:28:54 +01:00
|
|
|
// @flow
|
|
|
|
import assert from 'assert';
|
2018-07-29 00:45:02 +02:00
|
|
|
import { generateGravatarUrl, GRAVATAR_DEFAULT } from '../../../src/utils/user';
|
|
|
|
import { spliceURL } from '../../../src/utils/string';
|
|
|
|
import Package from '../../../src/webui/components/Package/index';
|
|
|
|
import {
|
|
|
|
validateName as validate,
|
|
|
|
convertDistRemoteToLocalTarballUrls,
|
|
|
|
parseReadme,
|
|
|
|
addGravatarSupport
|
|
|
|
} from '../../../src/lib/utils';
|
|
|
|
import Logger, { setup } from '../../../src/lib/logger';
|
2018-06-17 13:34:59 +02:00
|
|
|
import { readFile } from '../../functional/lib/test.utils';
|
2018-06-23 17:51:20 +02:00
|
|
|
|
2018-07-29 00:45:02 +02:00
|
|
|
const readmeFile = (fileName: string = 'markdown.md') =>
|
|
|
|
readFile(`../../unit/partials/readme/${fileName}`);
|
2018-06-20 00:15:25 +02:00
|
|
|
|
|
|
|
setup([]);
|
2013-12-15 21:54:50 +01:00
|
|
|
|
2018-03-17 18:28:54 +01:00
|
|
|
describe('Utilities', () => {
|
|
|
|
describe('String utilities', () => {
|
|
|
|
test('should splice two strings and generate a url', () => {
|
|
|
|
const url: string = spliceURL('http://domain.com', '/-/static/logo.png');
|
2015-03-28 19:25:53 +01:00
|
|
|
|
2018-03-17 18:28:54 +01:00
|
|
|
expect(url).toMatch('http://domain.com/-/static/logo.png');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should splice a empty strings and generate a url', () => {
|
|
|
|
const url: string = spliceURL('', '/-/static/logo.png');
|
|
|
|
|
|
|
|
expect(url).toMatch('/-/static/logo.png');
|
|
|
|
});
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|
2015-03-28 19:25:53 +01:00
|
|
|
|
2018-03-17 18:28:54 +01:00
|
|
|
describe('User utilities', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
test('should generate gravatar url with email', () => {
|
|
|
|
const gravatarUrl: string = generateGravatarUrl('user@verdaccio.org');
|
2018-03-17 18:28:54 +01:00
|
|
|
|
2018-07-29 00:45:02 +02:00
|
|
|
expect(gravatarUrl).toMatch('https://www.gravatar.com/avatar/');
|
|
|
|
expect(gravatarUrl).not.toMatch('000000000');
|
|
|
|
});
|
2018-03-17 18:28:54 +01:00
|
|
|
|
2018-07-29 00:45:02 +02:00
|
|
|
test('should generate generic gravatar url', () => {
|
|
|
|
const gravatarUrl: string = generateGravatarUrl();
|
2018-03-17 18:28:54 +01:00
|
|
|
|
2018-07-29 00:45:02 +02:00
|
|
|
expect(gravatarUrl).toMatch(GRAVATAR_DEFAULT);
|
|
|
|
});
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|
2013-12-15 21:54:50 +01:00
|
|
|
|
2018-03-17 18:28:54 +01:00
|
|
|
describe('Validations', () => {
|
|
|
|
test('good ones', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
assert(validate('verdaccio'));
|
|
|
|
assert(validate('some.weird.package-zzz'));
|
|
|
|
assert(validate('old-package@0.1.2.tgz'));
|
2018-03-17 18:28:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('uppercase', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
assert(validate('EVE'));
|
|
|
|
assert(validate('JSONStream'));
|
2018-03-17 18:28:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('no package.json', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
assert(!validate('package.json'));
|
2018-03-17 18:28:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('no path seps', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
assert(!validate('some/thing'));
|
|
|
|
assert(!validate('some\\thing'));
|
2018-03-17 18:28:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('no hidden', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
assert(!validate('.bin'));
|
2018-03-17 18:28:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('no reserved', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
assert(!validate('favicon.ico'));
|
|
|
|
assert(!validate('node_modules'));
|
|
|
|
assert(!validate('__proto__'));
|
2018-03-17 18:28:54 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
test('other', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
assert(!validate('pk g'));
|
|
|
|
assert(!validate('pk\tg'));
|
|
|
|
assert(!validate('pk%20g'));
|
|
|
|
assert(!validate('pk+g'));
|
|
|
|
assert(!validate('pk:g'));
|
2018-03-17 18:28:54 +01:00
|
|
|
});
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|
2018-06-05 21:03:27 +02:00
|
|
|
|
|
|
|
describe('Packages utilities', () => {
|
|
|
|
const metadata: Package = {
|
2018-07-29 00:45:02 +02:00
|
|
|
name: 'npm_test',
|
|
|
|
versions: {
|
|
|
|
'1.0.0': {
|
|
|
|
dist: {
|
|
|
|
tarball: 'http://registry.org/npm_test/-/npm_test-1.0.0.tgz'
|
2018-06-05 21:03:27 +02:00
|
|
|
}
|
|
|
|
},
|
2018-07-29 00:45:02 +02:00
|
|
|
'1.0.1': {
|
|
|
|
dist: {
|
|
|
|
tarball: 'http://registry.org/npm_test/-/npm_test-1.0.1.tgz'
|
2018-06-05 21:03:27 +02:00
|
|
|
}
|
|
|
|
}
|
2018-07-29 00:45:02 +02:00
|
|
|
}
|
2018-06-05 21:03:27 +02:00
|
|
|
};
|
|
|
|
|
2018-07-29 00:45:02 +02:00
|
|
|
const buildURI = (host, version) =>
|
|
|
|
`http://${host}/npm_test/-/npm_test-${version}.tgz`;
|
2018-06-05 21:03:27 +02:00
|
|
|
const host = 'fake.com';
|
|
|
|
|
|
|
|
test('convertDistRemoteToLocalTarballUrls', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
const convertDist = convertDistRemoteToLocalTarballUrls(
|
|
|
|
Object.assign({}, metadata),
|
|
|
|
// $FlowFixMe
|
|
|
|
{
|
|
|
|
headers: {
|
|
|
|
host
|
|
|
|
},
|
|
|
|
get: () => 'http',
|
|
|
|
protocol: 'http'
|
2018-06-05 21:03:27 +02:00
|
|
|
},
|
2018-07-29 00:45:02 +02:00
|
|
|
''
|
|
|
|
);
|
2018-06-05 21:03:27 +02:00
|
|
|
|
2018-07-29 00:45:02 +02:00
|
|
|
expect(convertDist.versions['1.0.0'].dist.tarball).toEqual(
|
|
|
|
buildURI(host, '1.0.0')
|
|
|
|
);
|
|
|
|
expect(convertDist.versions['1.0.1'].dist.tarball).toEqual(
|
|
|
|
buildURI(host, '1.0.1')
|
|
|
|
);
|
2018-06-05 21:03:27 +02:00
|
|
|
});
|
|
|
|
});
|
2018-06-20 00:15:25 +02:00
|
|
|
|
|
|
|
describe('parseReadme', () => {
|
2018-07-27 20:59:51 +02:00
|
|
|
test('should pass for ascii text to html template', () => {
|
2018-07-29 00:45:02 +02:00
|
|
|
const ascii = '= AsciiDoc';
|
2018-06-23 17:51:20 +02:00
|
|
|
|
2018-06-20 00:15:25 +02:00
|
|
|
expect(parseReadme('testPackage', ascii)).toEqual('<h1>AsciiDoc</h1>\n');
|
2018-07-29 00:45:02 +02:00
|
|
|
expect(
|
|
|
|
parseReadme('testPackage', String(readmeFile('ascii.adoc')))
|
|
|
|
).toMatchSnapshot();
|
2018-06-20 00:15:25 +02:00
|
|
|
});
|
|
|
|
|
2018-07-27 20:59:51 +02:00
|
|
|
test('should pass for makrdown text to html template', () => {
|
|
|
|
const markdown = '# markdown';
|
2018-07-29 00:45:02 +02:00
|
|
|
expect(parseReadme('testPackage', markdown)).toEqual(
|
|
|
|
'<h1 id="markdown">markdown</h1>\n'
|
|
|
|
);
|
|
|
|
expect(
|
|
|
|
parseReadme('testPackage', String(readmeFile('markdown.md')))
|
|
|
|
).toMatchSnapshot();
|
2018-07-27 20:59:51 +02:00
|
|
|
});
|
|
|
|
|
2018-06-20 00:15:25 +02:00
|
|
|
test('should pass for conversion of non-ascii to markdown text', () => {
|
|
|
|
const simpleText = 'simple text';
|
|
|
|
const randomText = '%%%%%**##==';
|
|
|
|
const randomTextNonAscii = 'simple text \n = ascii';
|
|
|
|
const randomTextMarkdown = 'simple text \n # markdown';
|
2018-06-17 13:34:59 +02:00
|
|
|
|
2018-07-29 00:45:02 +02:00
|
|
|
expect(parseReadme('testPackage', randomText)).toEqual(
|
|
|
|
'<p>%%%%%**##==</p>\n'
|
|
|
|
);
|
|
|
|
expect(parseReadme('testPackage', simpleText)).toEqual(
|
|
|
|
'<p>simple text</p>\n'
|
|
|
|
);
|
|
|
|
expect(parseReadme('testPackage', randomTextNonAscii)).toEqual(
|
|
|
|
'<p>simple text \n = ascii</p>\n'
|
|
|
|
);
|
|
|
|
expect(parseReadme('testPackage', randomTextMarkdown)).toEqual(
|
|
|
|
'<p>simple text </p>\n<h1 id="markdown">markdown</h1>\n'
|
|
|
|
);
|
2018-06-20 00:15:25 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
test('should show error for no readme data', () => {
|
|
|
|
const noData = '';
|
2018-07-29 00:45:02 +02:00
|
|
|
const spy = jest.spyOn(Logger.logger, 'error');
|
|
|
|
expect(parseReadme('testPackage', noData)).toEqual(
|
|
|
|
'<p>ERROR: No README data found!</p>\n'
|
|
|
|
);
|
|
|
|
expect(spy).toHaveBeenCalledWith(
|
|
|
|
{ packageName: 'testPackage' },
|
|
|
|
'@{packageName}: No readme found'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('addGravatarSupport', () => {
|
|
|
|
test('check for blank object', () => {
|
|
|
|
expect(addGravatarSupport({})).toEqual({});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('author, contributors and maintainers fields are not present', () => {
|
|
|
|
const packageInfo = {
|
|
|
|
latest: {}
|
|
|
|
};
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(packageInfo);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('author field is a blank object', () => {
|
|
|
|
const packageInfo = { latest: { author: {} } };
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(packageInfo);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('author field is a string type', () => {
|
|
|
|
const packageInfo = {
|
|
|
|
latest: { author: 'user@verdccio.org' }
|
|
|
|
};
|
|
|
|
const result = {
|
|
|
|
latest: {
|
|
|
|
author: {
|
|
|
|
author: 'user@verdccio.org',
|
|
|
|
avatar:
|
|
|
|
'https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mm',
|
|
|
|
email: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(result);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('author field is an object type with author information', () => {
|
|
|
|
const packageInfo = {
|
|
|
|
latest: { author: { name: 'verdaccio', email: 'user@verdccio.org' } }
|
|
|
|
};
|
|
|
|
const result = {
|
|
|
|
latest: {
|
|
|
|
author: {
|
|
|
|
avatar:
|
|
|
|
'https://www.gravatar.com/avatar/794d7f6ef93d0689437de3c3e48fadc7',
|
|
|
|
email: 'user@verdccio.org',
|
|
|
|
name: 'verdaccio'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(result);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('contributor field is a blank array', () => {
|
|
|
|
const packageInfo = {
|
|
|
|
latest: {
|
|
|
|
contributors: []
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(packageInfo);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('contributors field has contributors', () => {
|
|
|
|
const packageInfo = {
|
|
|
|
latest: {
|
|
|
|
contributors: [
|
|
|
|
{ name: 'user', email: 'user@verdccio.org' },
|
|
|
|
{ name: 'user1', email: 'user1@verdccio.org' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const result = {
|
|
|
|
latest: {
|
|
|
|
contributors: [
|
|
|
|
{
|
|
|
|
avatar:
|
|
|
|
'https://www.gravatar.com/avatar/794d7f6ef93d0689437de3c3e48fadc7',
|
|
|
|
email: 'user@verdccio.org',
|
|
|
|
name: 'user'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
avatar:
|
|
|
|
'https://www.gravatar.com/avatar/51105a49ce4a9c2bfabf0f6a2cba3762',
|
|
|
|
email: 'user1@verdccio.org',
|
|
|
|
name: 'user1'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(result);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('maintainers field is a blank array', () => {
|
|
|
|
const packageInfo = {
|
|
|
|
latest: {
|
|
|
|
maintainers: []
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(packageInfo);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('maintainers field has maintainers', () => {
|
|
|
|
const packageInfo = {
|
|
|
|
latest: {
|
|
|
|
maintainers: [
|
|
|
|
{ name: 'user', email: 'user@verdccio.org' },
|
|
|
|
{ name: 'user1', email: 'user1@verdccio.org' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const result = {
|
|
|
|
latest: {
|
|
|
|
maintainers: [
|
|
|
|
{
|
|
|
|
avatar:
|
|
|
|
'https://www.gravatar.com/avatar/794d7f6ef93d0689437de3c3e48fadc7',
|
|
|
|
email: 'user@verdccio.org',
|
|
|
|
name: 'user'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
avatar:
|
|
|
|
'https://www.gravatar.com/avatar/51105a49ce4a9c2bfabf0f6a2cba3762',
|
|
|
|
email: 'user1@verdccio.org',
|
|
|
|
name: 'user1'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expect(addGravatarSupport(packageInfo)).toEqual(result);
|
2018-06-20 00:15:25 +02:00
|
|
|
});
|
|
|
|
});
|
2017-04-19 21:15:28 +02:00
|
|
|
});
|