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

getters_spec.js « store « error_tracking « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 371dfae373bd3ead52042d37d0324f953058b757 (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
32
33
import * as getters from '~/error_tracking/store/getters';

describe('Error Tracking getters', () => {
  let state;

  const mockErrors = [
    { title: 'ActiveModel::MissingAttributeError: missing attribute: encrypted_password' },
    { title: 'Grape::Exceptions::MethodNotAllowed: Grape::Exceptions::MethodNotAllowed' },
    { title: 'NoMethodError: undefined method `sanitize_http_headers=' },
    { title: 'NoMethodError: undefined method `pry' },
  ];

  beforeEach(() => {
    state = {
      errors: mockErrors,
    };
  });

  describe('search results', () => {
    it('should return errors filtered by words in title matching the query', () => {
      const filteredErrors = getters.filterErrorsByTitle(state)('NoMethod');

      expect(filteredErrors).not.toContainEqual(mockErrors[0]);
      expect(filteredErrors.length).toBe(2);
    });

    it('should not return results if there is no matching query', () => {
      const filteredErrors = getters.filterErrorsByTitle(state)('GitLab');

      expect(filteredErrors.length).toBe(0);
    });
  });
});