1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/unit/utils.spec.js

79 lines
2.2 KiB
JavaScript
Raw Normal View History

2018-03-17 18:28:54 +01:00
// @flow
2013-12-15 21:54:50 +01:00
2018-03-17 18:28:54 +01:00
import assert from 'assert';
import {validate_name as validate} from '../../src/lib/utils';
import {generateGravatarUrl, GRAVATAR_DEFAULT} from '../../src/utils/user';
import {spliceURL} from '../../src/utils/string';
2013-12-15 21:54:50 +01:00
2018-03-17 18:28:54 +01:00
describe('Utilities', () => {
2013-12-15 21:54:50 +01:00
2018-03-17 18:28:54 +01:00
describe('String utilities', () => {
test('should splice two strings and generate a url', () => {
const url: string = spliceURL('http://domain.com', '/-/static/logo.png');
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
});
2018-03-17 18:28:54 +01:00
describe('User utilities', () => {
test('should generate gravatar url with email', () => {
const gravatarUrl: string = generateGravatarUrl('user@verdaccio.org');
expect(gravatarUrl).toMatch('https://www.gravatar.com/avatar/');
expect(gravatarUrl).not.toMatch('000000000');
});
test('should generate generic gravatar url', () => {
const gravatarUrl: string = generateGravatarUrl();
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', () => {
assert( validate('verdaccio') );
assert( validate('some.weird.package-zzz') );
assert( validate('old-package@0.1.2.tgz') );
});
test('uppercase', () => {
assert( validate('EVE') );
assert( validate('JSONStream') );
});
test('no package.json', () => {
assert( !validate('package.json') );
});
test('no path seps', () => {
assert( !validate('some/thing') );
assert( !validate('some\\thing') );
});
test('no hidden', () => {
assert( !validate('.bin') );
});
test('no reserved', () => {
assert( !validate('favicon.ico') );
assert( !validate('node_modules') );
assert( !validate('__proto__') );
});
test('other', () => {
assert( !validate('pk g') );
assert( !validate('pk\tg') );
assert( !validate('pk%20g') );
assert( !validate('pk+g') );
assert( !validate('pk:g') );
});
2017-04-19 21:15:28 +02:00
});
});