forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
772 B
25 lines
772 B
import { getApiKeys } from './selectors';
|
|
import { getMultipleMockKeys } from '../__mocks__/apiKeysMock';
|
|
import { ApiKeysState } from 'app/types';
|
|
|
|
describe('API Keys selectors', () => {
|
|
describe('Get API Keys', () => {
|
|
const mockKeys = getMultipleMockKeys(5);
|
|
|
|
it('should return all keys if no search query', () => {
|
|
const mockState: ApiKeysState = { keys: mockKeys, searchQuery: '', hasFetched: false };
|
|
|
|
const keys = getApiKeys(mockState);
|
|
|
|
expect(keys).toEqual(mockKeys);
|
|
});
|
|
|
|
it('should filter keys if search query exists', () => {
|
|
const mockState: ApiKeysState = { keys: mockKeys, searchQuery: '5', hasFetched: false };
|
|
|
|
const keys = getApiKeys(mockState);
|
|
|
|
expect(keys.length).toEqual(1);
|
|
});
|
|
});
|
|
});
|
|
|