0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/unit/modules/search/search.spec.js
Juan Picado @jotadeveloper 8786a3740e
test: relocate api spec test
2019-05-20 08:47:52 +02:00

64 lines
1.3 KiB
JavaScript

import Search from '../../../../src/lib/search';
import Config from '../../../../src/lib/config';
import Storage from '../../../../src/lib/storage';
import buildConfig from '../../partials/config';
require('../../../../src/lib/logger').setup([]);
let packages = [
{
name: 'test1',
description: 'description',
_npmUser: {
name: 'test_user',
},
},
{
name: 'test2',
description: 'description',
_npmUser: {
name: 'test_user',
},
},
{
name: 'test3',
description: 'description',
_npmUser: {
name: 'test_user',
},
},
];
describe('search', () => {
beforeAll(async function() {
let config = new Config(buildConfig());
this.storage = new Storage(config);
await this.storage.init(config);
Search.configureStorage(this.storage);
packages.map(function(item) {
Search.add(item);
});
});
test('search query item', () => {
let result = Search.query('t');
expect(result).toHaveLength(3);
});
test('search remove item', () => {
let item = {
name: 'test6',
description: 'description',
_npmUser: {
name: 'test_user',
},
};
Search.add(item);
let result = Search.query('test6');
expect(result).toHaveLength(1);
Search.remove(item.name);
result = Search.query('test6');
expect(result).toHaveLength(0);
});
});