mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
28 lines
808 B
TypeScript
28 lines
808 B
TypeScript
import { ROLES, createAnonymousRemoteUser, createRemoteUser } from '../src';
|
|
|
|
describe('createRemoteUser and createAnonymousRemoteUser', () => {
|
|
test('should create a remote user with default groups', () => {
|
|
expect(createRemoteUser('12345', ['foo', 'bar'])).toEqual({
|
|
groups: [
|
|
'foo',
|
|
'bar',
|
|
ROLES.$ALL,
|
|
ROLES.$AUTH,
|
|
ROLES.DEPRECATED_ALL,
|
|
ROLES.DEPRECATED_AUTH,
|
|
ROLES.ALL,
|
|
],
|
|
name: '12345',
|
|
real_groups: ['foo', 'bar'],
|
|
});
|
|
});
|
|
|
|
test('should create a anonymous remote user with default groups', () => {
|
|
expect(createAnonymousRemoteUser()).toEqual({
|
|
groups: [ROLES.$ALL, ROLES.$ANONYMOUS, ROLES.DEPRECATED_ALL, ROLES.DEPRECATED_ANONYMOUS],
|
|
name: undefined,
|
|
real_groups: [],
|
|
});
|
|
});
|
|
});
|