Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils_spec.js « abuse_reports « admin « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3908edd3fdde56d9976e6895c9e3de902f8015b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import {
  FILTERED_SEARCH_TOKEN_CATEGORY,
  FILTERED_SEARCH_TOKEN_STATUS,
} from '~/admin/abuse_reports/constants';
import { buildFilteredSearchCategoryToken, isValidStatus } from '~/admin/abuse_reports/utils';

describe('buildFilteredSearchCategoryToken', () => {
  it('adds correctly formatted options to FILTERED_SEARCH_TOKEN_CATEGORY', () => {
    const categories = ['tuxedo', 'tabby'];

    expect(buildFilteredSearchCategoryToken(categories)).toMatchObject({
      ...FILTERED_SEARCH_TOKEN_CATEGORY,
      options: categories.map((c) => ({ value: c, title: c })),
    });
  });
});

describe('isValidStatus', () => {
  const validStatuses = FILTERED_SEARCH_TOKEN_STATUS.options.map((o) => o.value);

  it.each(validStatuses)(
    'returns true when status is an option value of FILTERED_SEARCH_TOKEN_STATUS',
    (status) => {
      expect(isValidStatus(status)).toBe(true);
    },
  );

  it('return false when status is not an option value of FILTERED_SEARCH_TOKEN_STATUS', () => {
    expect(isValidStatus('invalid')).toBe(false);
  });
});