0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00
verdaccio/test/unit/api/search.spec.js

65 lines
1.3 KiB
JavaScript
Raw Normal View History

import Search from '../../../src/lib/search';
2018-07-02 01:24:45 -05:00
import Config from '../../../src/lib/config';
import Storage from '../../../src/lib/storage';
import buildConfig from '../partials/config/index';
2018-07-02 01:24:45 -05:00
2017-04-10 15:00:41 -05:00
require('../../../src/lib/logger').setup([]);
2017-04-10 15:00:41 -05:00
2017-04-19 14:15:28 -05:00
let packages = [
2017-04-10 15:00:41 -05:00
{
name: 'test1',
description: 'description',
_npmUser: {
name: 'test_user',
2017-04-19 14:15:28 -05:00
},
2017-04-10 15:00:41 -05:00
},
{
name: 'test2',
description: 'description',
_npmUser: {
name: 'test_user',
2017-04-19 14:15:28 -05:00
},
2017-04-10 15:00:41 -05:00
},
{
name: 'test3',
description: 'description',
_npmUser: {
name: 'test_user',
2017-04-19 14:15:28 -05:00
},
2017-04-17 09:10:21 -05:00
},
2017-04-19 14:15:28 -05:00
];
2017-04-10 15:00:41 -05:00
2017-11-01 11:47:20 -05:00
describe('search', () => {
beforeAll(async function() {
let config = new Config(buildConfig());
2017-04-10 15:00:41 -05:00
this.storage = new Storage(config);
await this.storage.init(config);
2017-04-10 15:00:41 -05:00
Search.configureStorage(this.storage);
packages.map(function(item) {
Search.add(item);
});
});
2017-11-01 11:47:20 -05:00
test('search query item', () => {
2017-04-19 14:15:28 -05:00
let result = Search.query('t');
expect(result).toHaveLength(3);
});
2017-04-10 15:00:41 -05:00
2017-11-01 11:47:20 -05:00
test('search remove item', () => {
2017-04-19 14:15:28 -05:00
let item = {
2017-04-10 15:00:41 -05:00
name: 'test6',
description: 'description',
_npmUser: {
name: 'test_user',
2017-04-19 14:15:28 -05:00
},
2017-04-10 15:00:41 -05:00
};
Search.add(item);
let result = Search.query('test6');
expect(result).toHaveLength(1);
Search.remove(item.name);
result = Search.query('test6');
expect(result).toHaveLength(0);
});
});