0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/functional/search/simple.search.ts
Juan Picado 558fcafc71
build: format code prettier, enable ci (#2886)
* fix: format code prettier, enable ci

* chore: add trivago import prettier pluggin
2022-01-09 20:51:50 +01:00

58 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);
});
});
});
}