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

local_storage_cache_spec.js « services « graphql « import_groups « import_entities « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b44a2767ad8d0bc1bde754d9299829fa346a503d (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import {
  KEY,
  LocalStorageCache,
} from '~/import_entities/import_groups/graphql/services/local_storage_cache';

describe('Local storage cache', () => {
  let cache;
  let storage;

  beforeEach(() => {
    storage = {
      getItem: jest.fn(),
      setItem: jest.fn(),
    };

    cache = new LocalStorageCache({ storage });
  });

  describe('storage management', () => {
    const IMPORT_URL = 'http://fake.url';

    it('loads state from storage on creation', () => {
      expect(storage.getItem).toHaveBeenCalledWith(KEY);
    });

    it('saves to storage when set is called', () => {
      const STORAGE_CONTENT = { fake: 'content ' };
      cache.set(IMPORT_URL, STORAGE_CONTENT);
      expect(storage.setItem).toHaveBeenCalledWith(
        KEY,
        JSON.stringify({ [IMPORT_URL]: STORAGE_CONTENT }),
      );
    });

    it('updates status by job id', () => {
      const CHANGED_STATUS = 'changed';
      const JOB_ID = 2;

      cache.set(IMPORT_URL, {
        progress: {
          id: JOB_ID,
          status: 'original',
        },
      });

      cache.updateStatusByJobId(JOB_ID, CHANGED_STATUS);

      expect(storage.setItem).toHaveBeenCalledWith(
        KEY,
        JSON.stringify({
          [IMPORT_URL]: {
            progress: {
              id: JOB_ID,
              status: CHANGED_STATUS,
            },
          },
        }),
      );
    });
  });
});