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

vuex_action_helper.js « helpers « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6ab0aeeed7c7bc73f0f7efa102c27e259d5a9a6 (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
62
63
64
65
66
67
68
69
70
71
/**
 * helper for testing action with expected mutations inspired in
 * https://vuex.vuejs.org/en/testing.html
 *
 * @example
 * testAction(
 *   actions.actionName, // action
 *   { }, // mocked response
 *   state, // state
 *   [
 *    { type: types.MUTATION}
 *    { type: types.MUTATION_1, payload: {}}
 *   ], // mutations
 *   [
 *    { type: 'actionName', payload: {}},
 *    { type: 'actionName1', payload: {}}
 *   ] //actions
 *   done,
 * );
 */
export default (action, payload, state, expectedMutations, expectedActions, done) => {
  let mutationsCount = 0;
  let actionsCount = 0;

  // mock commit
  const commit = (type, mutationPayload) => {
    const mutation = expectedMutations[mutationsCount];

    expect(mutation.type).toEqual(type);

    if (mutation.payload) {
      expect(mutation.payload).toEqual(mutationPayload);
    }

    mutationsCount += 1;
    if (mutationsCount >= expectedMutations.length) {
      done();
    }
  };

  // mock dispatch
  const dispatch = (type, actionPayload) => {
    const actionExpected = expectedActions[actionsCount];

    expect(actionExpected.type).toEqual(type);

    if (actionExpected.payload) {
      expect(actionExpected.payload).toEqual(actionPayload);
    }

    actionsCount += 1;
    if (actionsCount >= expectedActions.length) {
      done();
    }
  };

  // call the action with mocked store and arguments
  action({ commit, state, dispatch, rootState: state }, payload);

  // check if no mutations should have been dispatched
  if (expectedMutations.length === 0) {
    expect(mutationsCount).toEqual(0);
    done();
  }

  // check if no mutations should have been dispatched
  if (expectedActions.length === 0) {
    expect(actionsCount).toEqual(0);
    done();
  }
};