debian-mirror-gitlab/spec/frontend/runner/graphql/local_state_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

131 lines
4.1 KiB
JavaScript
Raw Normal View History

2022-08-27 11:52:29 +05:30
import { gql } from '@apollo/client/core';
2022-06-21 17:19:12 +05:30
import createApolloClient from '~/lib/graphql';
import { createLocalState } from '~/runner/graphql/list/local_state';
import getCheckedRunnerIdsQuery from '~/runner/graphql/list/checked_runner_ids.query.graphql';
2022-08-27 11:52:29 +05:30
import { RUNNER_TYPENAME } from '~/runner/constants';
2022-06-21 17:19:12 +05:30
describe('~/runner/graphql/list/local_state', () => {
let localState;
let apolloClient;
const createSubject = () => {
if (apolloClient) {
throw new Error('test subject already exists!');
}
localState = createLocalState();
const { cacheConfig, typeDefs } = localState;
apolloClient = createApolloClient({}, { cacheConfig, typeDefs });
};
2022-08-27 11:52:29 +05:30
const addMockRunnerToCache = (id) => {
// mock some runners in the cache to prevent dangling references
apolloClient.writeFragment({
id: `${RUNNER_TYPENAME}:${id}`,
fragment: gql`
fragment DummyRunner on CiRunner {
__typename
}
`,
data: {
__typename: RUNNER_TYPENAME,
},
});
};
2022-06-21 17:19:12 +05:30
const queryCheckedRunnerIds = () => {
const { checkedRunnerIds } = apolloClient.readQuery({
query: getCheckedRunnerIdsQuery,
});
return checkedRunnerIds;
};
beforeEach(() => {
createSubject();
});
afterEach(() => {
localState = null;
apolloClient = null;
});
2022-08-27 11:52:29 +05:30
describe('queryCheckedRunnerIds', () => {
it('has empty checked list by default', () => {
2022-06-21 17:19:12 +05:30
expect(queryCheckedRunnerIds()).toEqual([]);
});
2022-08-27 11:52:29 +05:30
it('returns checked runners that have a reference in the cache', () => {
addMockRunnerToCache('a');
localState.localMutations.setRunnerChecked({ runner: { id: 'a' }, isChecked: true });
expect(queryCheckedRunnerIds()).toEqual(['a']);
});
it('return checked runners that are not dangling references', () => {
addMockRunnerToCache('a'); // 'b' is missing from the cache, perhaps because it was deleted
localState.localMutations.setRunnerChecked({ runner: { id: 'a' }, isChecked: true });
localState.localMutations.setRunnerChecked({ runner: { id: 'b' }, isChecked: true });
expect(queryCheckedRunnerIds()).toEqual(['a']);
});
2022-06-21 17:19:12 +05:30
});
describe.each`
inputs | expected
${[['a', true], ['b', true], ['b', true]]} | ${['a', 'b']}
${[['a', true], ['b', true], ['a', false]]} | ${['b']}
${[['c', true], ['b', true], ['a', true], ['d', false]]} | ${['c', 'b', 'a']}
`('setRunnerChecked', ({ inputs, expected }) => {
beforeEach(() => {
inputs.forEach(([id, isChecked]) => {
2022-08-27 11:52:29 +05:30
addMockRunnerToCache(id);
2022-06-21 17:19:12 +05:30
localState.localMutations.setRunnerChecked({ runner: { id }, isChecked });
});
});
it(`for inputs="${inputs}" has a ids="[${expected}]"`, () => {
expect(queryCheckedRunnerIds()).toEqual(expected);
});
});
2022-08-27 11:52:29 +05:30
describe.each`
inputs | expected
${[[['a', 'b'], true]]} | ${['a', 'b']}
${[[['a', 'b'], false]]} | ${[]}
${[[['a', 'b'], true], [['c', 'd'], true]]} | ${['a', 'b', 'c', 'd']}
${[[['a', 'b'], true], [['a', 'b'], false]]} | ${[]}
${[[['a', 'b'], true], [['b'], false]]} | ${['a']}
`('setRunnersChecked', ({ inputs, expected }) => {
beforeEach(() => {
inputs.forEach(([ids, isChecked]) => {
ids.forEach(addMockRunnerToCache);
localState.localMutations.setRunnersChecked({
runners: ids.map((id) => ({ id })),
isChecked,
});
});
});
it(`for inputs="${inputs}" has a ids="[${expected}]"`, () => {
expect(queryCheckedRunnerIds()).toEqual(expected);
});
});
2022-06-21 17:19:12 +05:30
describe('clearChecked', () => {
it('clears all checked items', () => {
['a', 'b', 'c'].forEach((id) => {
2022-08-27 11:52:29 +05:30
addMockRunnerToCache(id);
2022-06-21 17:19:12 +05:30
localState.localMutations.setRunnerChecked({ runner: { id }, isChecked: true });
});
expect(queryCheckedRunnerIds()).toEqual(['a', 'b', 'c']);
localState.localMutations.clearChecked();
expect(queryCheckedRunnerIds()).toEqual([]);
});
});
});