mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
93468211d6
* chore: update eslint * chore: update rules and style * chore: aling formatting * chore: update ci rules * chore: aling formatting * chore: aling formatting
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import { API_MESSAGE, HTTP_STATUS } from '../../../src/lib/constants';
|
|
import pkgExample from './search.json';
|
|
|
|
export default function (server, server2, express) {
|
|
describe('should test search a published package', () => {
|
|
const PKG_NAME = 'testpkg-search';
|
|
|
|
beforeAll(function () {
|
|
return server
|
|
.putPackage(PKG_NAME, pkgExample)
|
|
.status(HTTP_STATUS.CREATED)
|
|
.body_ok(API_MESSAGE.PKG_CREATED);
|
|
});
|
|
|
|
describe('should test simple search', () => {
|
|
const check = (medatada) => {
|
|
medatada[PKG_NAME].time.modified = '2014-10-02T07:07:51.000Z';
|
|
expect(medatada[PKG_NAME]).toEqual({
|
|
name: PKG_NAME,
|
|
description: '',
|
|
author: '',
|
|
license: 'ISC',
|
|
'dist-tags': {
|
|
latest: '0.0.1'
|
|
},
|
|
maintainers: [
|
|
{
|
|
name: 'alex',
|
|
email: 'user@domain.com'
|
|
}
|
|
],
|
|
readmeFilename: '',
|
|
time: {
|
|
modified: '2014-10-02T07:07:51.000Z'
|
|
},
|
|
versions: {
|
|
'0.0.1': 'latest'
|
|
},
|
|
repository: {
|
|
type: 'git',
|
|
url: ''
|
|
}
|
|
});
|
|
};
|
|
|
|
beforeAll(function () {
|
|
express.get('/-/all', (req, res) => {
|
|
res.send({});
|
|
});
|
|
});
|
|
|
|
test('server1 - search', () => {
|
|
return server.request({ uri: '/-/all' }).status(HTTP_STATUS.OK).then(check);
|
|
});
|
|
|
|
test('server2 - search', () => {
|
|
return server2.request({ uri: '/-/all' }).status(HTTP_STATUS.OK).then(check);
|
|
});
|
|
});
|
|
});
|
|
}
|