mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-17 07:45:52 +01:00
8c730c0694
* refactor: max-len and printWidth to 100 * chore: ci specific pnpm version * fix: add types peer package literally get rid of types package
87 lines
2.6 KiB
TypeScript
87 lines
2.6 KiB
TypeScript
import supertest from 'supertest';
|
|
|
|
import { HTTP_STATUS } from '@verdaccio/commons-api';
|
|
import { HEADER_TYPE, HEADERS } from '@verdaccio/dev-commons';
|
|
import { $ResponseExtend, $RequestExtend } from '../../types/custom';
|
|
import { initializeServer, publishTaggedVersion, publishVersion } from './_helper';
|
|
|
|
const mockApiJWTmiddleware = jest.fn(
|
|
() => (req: $RequestExtend, res: $ResponseExtend, _next): void => {
|
|
req.remote_user = { name: 'foo', groups: [], real_groups: [] };
|
|
_next();
|
|
}
|
|
);
|
|
|
|
jest.mock('@verdaccio/auth', () => ({
|
|
Auth: class {
|
|
apiJWTmiddleware() {
|
|
return mockApiJWTmiddleware();
|
|
}
|
|
allow_access(_d, _f, cb) {
|
|
// always allow access
|
|
cb(null, true);
|
|
}
|
|
allow_publish(_d, _f, cb) {
|
|
// always allow publish
|
|
cb(null, true);
|
|
}
|
|
},
|
|
}));
|
|
|
|
describe('package', () => {
|
|
let app;
|
|
beforeEach(async () => {
|
|
app = await initializeServer('package.yaml');
|
|
});
|
|
|
|
test('should return a package', async (done) => {
|
|
await publishVersion(app, 'package.yaml', 'foo', '1.0.0');
|
|
return supertest(app)
|
|
.get('/foo')
|
|
.set('Accept', HEADERS.JSON)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(HTTP_STATUS.OK)
|
|
.then((response) => {
|
|
expect(response.body.name).toEqual('foo');
|
|
done();
|
|
});
|
|
});
|
|
|
|
test('should return a package by version', async (done) => {
|
|
await publishVersion(app, 'package.yaml', 'foo2', '1.0.0');
|
|
return supertest(app)
|
|
.get('/foo2/1.0.0')
|
|
.set('Accept', HEADERS.JSON)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(HTTP_STATUS.OK)
|
|
.then((response) => {
|
|
expect(response.body.name).toEqual('foo2');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// TODO: investigate the 404
|
|
test.skip('should return a package by dist-tag', async (done) => {
|
|
// await publishVersion(app, 'package.yaml', 'foo3', '1.0.0');
|
|
await publishVersion(app, 'package.yaml', 'foo-tagged', '1.0.0');
|
|
await publishTaggedVersion(app, 'package.yaml', 'foo-tagged', '1.0.1', 'test');
|
|
return supertest(app)
|
|
.get('/foo-tagged/1.0.1')
|
|
.set('Accept', HEADERS.JSON)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(HTTP_STATUS.CREATED)
|
|
.then((response) => {
|
|
expect(response.body.name).toEqual('foo3');
|
|
done();
|
|
});
|
|
});
|
|
|
|
test.skip('should return 404', async () => {
|
|
return supertest(app)
|
|
.get('/404-not-found')
|
|
.set('Accept', HEADERS.JSON)
|
|
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
|
|
.expect(HTTP_STATUS.NOT_FOUND);
|
|
});
|
|
});
|