2019-07-16 08:40:01 +02:00
|
|
|
import Search from '../../../../src/lib/search';
|
|
|
|
import Config from '../../../../src/lib/config';
|
|
|
|
import Storage from '../../../../src/lib/storage';
|
|
|
|
import buildConfig from '../../partials/config';
|
|
|
|
import { setup } from '../../../../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());
|
2019-08-16 21:20:18 +02:00
|
|
|
const storage = new Storage(config);
|
|
|
|
await storage.init(config);
|
|
|
|
Search.configureStorage(storage);
|
2019-07-16 08:40:01 +02:00
|
|
|
packages.map(function(item) {
|
|
|
|
// @ts-ignore
|
|
|
|
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',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
// @ts-ignore
|
|
|
|
Search.add(item);
|
|
|
|
let result = Search.query('test6');
|
|
|
|
expect(result).toHaveLength(1);
|
|
|
|
Search.remove(item.name);
|
|
|
|
result = Search.query('test6');
|
|
|
|
expect(result).toHaveLength(0);
|
|
|
|
});
|
|
|
|
});
|