mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
bee9973839
* Quick Switch matching for Request URL and Method Previously only Request Name was searched for in Quick Switch window. This adds support for searching Request URL and Method as well. A fuzzyMatchAll function has been added to be able to search different fields in any order, space delimited. * Include request parameters in searchable fields * Allow searching requests by folder paths * More descriptive placeholder for Quick Switch modal search input * Update sidebar filter to match Quick Switch, allowing URL and Query String matching * More descriptive placeholder for sidebar search * Unit tests for fuzzyMatch and fuzzyMatchAll * More unit tests for fuzzyMatch and fuzzyMatchAll * minor refactorings
143 lines
4.1 KiB
JavaScript
143 lines
4.1 KiB
JavaScript
import * as misc from '../misc';
|
|
import {globalBeforeEach} from '../../__jest__/before-each';
|
|
|
|
describe('hasAuthHeader()', () => {
|
|
beforeEach(globalBeforeEach);
|
|
it('finds valid header', () => {
|
|
const yes = misc.hasAuthHeader([
|
|
{name: 'foo', value: 'bar'},
|
|
{name: 'authorization', value: 'foo'}
|
|
]);
|
|
|
|
expect(yes).toEqual(true);
|
|
});
|
|
|
|
it('finds valid header case insensitive', () => {
|
|
const yes = misc.hasAuthHeader([
|
|
{name: 'foo', value: 'bar'},
|
|
{name: 'AuthOrizAtiOn', value: 'foo'}
|
|
]);
|
|
|
|
expect(yes).toEqual(true);
|
|
});
|
|
});
|
|
|
|
describe('generateId()', () => {
|
|
beforeEach(globalBeforeEach);
|
|
it('generates a valid ID', () => {
|
|
const id = misc.generateId('foo');
|
|
expect(id).toMatch(/^foo_[a-z0-9]{32}$/);
|
|
});
|
|
|
|
it('generates without prefix', () => {
|
|
const id = misc.generateId();
|
|
expect(id).toMatch(/^[a-z0-9]{32}$/);
|
|
});
|
|
});
|
|
|
|
describe('filterHeaders()', () => {
|
|
beforeEach(globalBeforeEach);
|
|
it('handles bad headers', () => {
|
|
expect(misc.filterHeaders(null, null)).toEqual([]);
|
|
expect(misc.filterHeaders([], null)).toEqual([]);
|
|
expect(misc.filterHeaders(['bad'], null)).toEqual([]);
|
|
expect(misc.filterHeaders(['bad'], 'good')).toEqual([]);
|
|
expect(misc.filterHeaders(null, 'good')).toEqual([]);
|
|
expect(misc.filterHeaders([{name: 'good', value: 'valid'}], null)).toEqual([]);
|
|
expect(misc.filterHeaders([{name: 'good', value: 'valid'}], 'good'))
|
|
.toEqual([{name: 'good', value: 'valid'}]);
|
|
});
|
|
});
|
|
|
|
describe('keyedDebounce()', () => {
|
|
beforeEach(async () => {
|
|
await globalBeforeEach();
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
it('debounces correctly', () => {
|
|
const resultsList = [];
|
|
const fn = misc.keyedDebounce(results => {
|
|
resultsList.push(results);
|
|
}, 100);
|
|
|
|
fn('foo', 'bar');
|
|
fn('baz', 'bar');
|
|
fn('foo', 'bar2');
|
|
fn('foo', 'bar3');
|
|
fn('multi', 'foo', 'bar', 'baz');
|
|
|
|
expect(setTimeout.mock.calls.length).toBe(5);
|
|
expect(resultsList).toEqual([]);
|
|
|
|
jest.runAllTimers();
|
|
|
|
expect(resultsList).toEqual([{
|
|
foo: ['bar3'],
|
|
baz: ['bar'],
|
|
multi: ['foo', 'bar', 'baz']
|
|
}]);
|
|
});
|
|
});
|
|
|
|
describe('debounce()', () => {
|
|
beforeEach(async () => {
|
|
await globalBeforeEach();
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
it('debounces correctly', () => {
|
|
const resultList = [];
|
|
const fn = misc.debounce((...args) => {
|
|
resultList.push(args);
|
|
}, 100);
|
|
|
|
fn('foo');
|
|
fn('foo');
|
|
fn('multi', 'foo', 'bar', 'baz');
|
|
fn('baz', 'bar');
|
|
fn('foo', 'bar3');
|
|
|
|
expect(setTimeout.mock.calls.length).toBe(5);
|
|
expect(resultList).toEqual([]);
|
|
|
|
jest.runAllTimers();
|
|
|
|
expect(resultList).toEqual([['foo', 'bar3']]);
|
|
});
|
|
});
|
|
|
|
describe('fuzzyMatch()', () => {
|
|
beforeEach(globalBeforeEach);
|
|
it('can get a positive fuzzy match on a single field', () => {
|
|
expect(misc.fuzzyMatch('', undefined)).toEqual(true);
|
|
expect(misc.fuzzyMatch('', 'testing')).toEqual(true);
|
|
expect(misc.fuzzyMatch('test', 'testing')).toEqual(true);
|
|
expect(misc.fuzzyMatch('tstg', 'testing')).toEqual(true);
|
|
});
|
|
|
|
it('can get a negative fuzzy match on a single field', () => {
|
|
expect(misc.fuzzyMatch('foo', undefined)).toEqual(false);
|
|
expect(misc.fuzzyMatch('foo', 'bar')).toEqual(false);
|
|
});
|
|
});
|
|
|
|
describe('fuzzyMatchAll()', () => {
|
|
beforeEach(globalBeforeEach);
|
|
it('can get a positive fuzzy match on multiple fields', () => {
|
|
expect(misc.fuzzyMatchAll('', [undefined])).toEqual(true);
|
|
expect(misc.fuzzyMatchAll('', ['testing'])).toEqual(true);
|
|
expect(misc.fuzzyMatchAll(' ', ['testing'])).toEqual(true);
|
|
expect(misc.fuzzyMatchAll('test', ['testing'])).toEqual(true);
|
|
expect(misc.fuzzyMatchAll('tstg', ['testing'])).toEqual(true);
|
|
expect(misc.fuzzyMatchAll('tstg this ou', ['testing', 'this', 'out'])).toEqual(true);
|
|
});
|
|
|
|
it('can get a negative fuzzy match on multiple fields', () => {
|
|
expect(misc.fuzzyMatchAll('foo', [undefined])).toEqual(false);
|
|
expect(misc.fuzzyMatchAll('foo', ['bar'])).toEqual(false);
|
|
expect(misc.fuzzyMatchAll('wrong this ou', ['testing', 'this', 'out'])).toEqual(false);
|
|
});
|
|
});
|
|
|