mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
66f4197236
* chore: test * chore: add * chore: more progress * chore: progress in migration, fix prettier parser * chore: reduce tsc errors * chore: refactor storage utils types * chore: refactor utils types * chore: refactor local storage types * chore: refactor config utils types * chore: refactor tsc types * refactor: apply eslint fix, tabs etc * chore: fix lint errors * test: update unit test conf to typescript setup few test refactored to typescript * chore: enable more unit test migrate to typescript * chore: migrate storage test to tsc * chore: migrate up storage test to tsc * refactor: enable plugin and auth test * chore: migrate plugin loader test * chore: update dependencies * chore: migrate functional test to typescript * chore: add codecove * chore: update express * chore: downgrade puppeteer The latest version does not seems to work properly fine. * chore: update dependencies
79 lines
2.5 KiB
TypeScript
79 lines
2.5 KiB
TypeScript
import path from 'path';
|
|
import loadPlugin from '../../../../src/lib/plugin-loader';
|
|
import { setup } from '../../../../src/lib/logger';
|
|
|
|
setup([]);
|
|
|
|
describe('plugin loader', () => {
|
|
const relativePath = path.join(__dirname, './partials/test-plugin-storage');
|
|
const buildConf = name => {
|
|
return {
|
|
self_path: path.join(__dirname, './'),
|
|
max_users: 0,
|
|
auth: {
|
|
[`${relativePath}/${name}`]: {}
|
|
}
|
|
};
|
|
};
|
|
|
|
describe('auth plugins', () => {
|
|
test('testing auth valid plugin loader', () => {
|
|
const _config = buildConf('verdaccio-plugin');
|
|
const plugins = loadPlugin(_config, _config.auth, {}, function (plugin) {
|
|
return plugin.authenticate || plugin.allow_access || plugin.allow_publish;
|
|
});
|
|
|
|
expect(plugins).toHaveLength(1);
|
|
});
|
|
|
|
test('testing storage valid plugin loader', () => {
|
|
const _config = buildConf('verdaccio-es6-plugin');
|
|
const plugins = loadPlugin(_config, _config.auth, {}, function (p) {
|
|
return p.getPackageStorage;
|
|
});
|
|
|
|
expect(plugins).toHaveLength(1);
|
|
});
|
|
|
|
test('testing auth plugin invalid plugin', () => {
|
|
const _config = buildConf('invalid-plugin');
|
|
try {
|
|
// @ts-ignore
|
|
loadPlugin(_config, _config.auth, {}, function (p) {
|
|
return p.authenticate || p.allow_access || p.allow_publish;
|
|
});
|
|
} catch(e) {
|
|
expect(e.message).toEqual(`"${relativePath}/invalid-plugin" plugin does not have the right code structure`);
|
|
}
|
|
});
|
|
|
|
test('testing auth plugin invalid plugin sanityCheck', () => {
|
|
const _config = buildConf('invalid-plugin-sanity');
|
|
try {
|
|
// @ts-ignore
|
|
loadPlugin(_config, _config.auth, {}, function (plugin) {
|
|
return plugin.authenticate || plugin.allow_access || plugin.allow_publish;
|
|
});
|
|
} catch(err) {
|
|
expect(err.message).toEqual(`sanity check has failed, "${relativePath}/invalid-plugin-sanity" is not a valid plugin`);
|
|
}
|
|
});
|
|
|
|
test('testing auth plugin no plugins', () => {
|
|
const _config = buildConf('invalid-package');
|
|
try {
|
|
// @ts-ignore
|
|
loadPlugin(_config, _config.auth, {}, function (plugin) {
|
|
return plugin.authenticate || plugin.allow_access || plugin.allow_publish;
|
|
});
|
|
} catch(e) {
|
|
expect(e.message).toMatch('plugin not found');
|
|
expect(e.message).toMatch('/partials/test-plugin-storage/invalid-package');
|
|
}
|
|
});
|
|
|
|
test.todo('test middleware plugins');
|
|
test.todo('test storage plugins');
|
|
});
|
|
|
|
});
|