Fix name convention issue
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-ui / src / main / frontend / src / features / catalog / __tests__ / catalogActions-test.js
1 /*
2 * Copyright © 2018 European Support Limited
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 'use strict';
18
19 import {
20     FETCH_WORKFLOW,
21     UPDATE_WORKFLOW,
22     LIMIT,
23     NAME,
24     ASC
25 } from 'features/catalog/catalogConstants';
26 import { WORKFLOW_STATUS } from 'features/workflow/workflowConstants';
27 import { fetchWorkflow, updateWorkflow } from 'features/catalog/catalogActions';
28
29 describe('Catalog Actions', () => {
30     it('should have `fetchWorkflow` action', () => {
31         const sort = { [NAME]: ASC };
32         const offset = 0;
33         const status = WORKFLOW_STATUS.ACTIVE;
34         expect(fetchWorkflow({ sort, offset, status })).toEqual({
35             type: FETCH_WORKFLOW,
36             payload: {
37                 sort,
38                 limit: LIMIT,
39                 status,
40                 offset
41             }
42         });
43     });
44
45     it('should have `updateWorkflow` action', () => {
46         const payload = {
47             paging: {
48                 offset: 1,
49                 limit: 1,
50                 count: 1,
51                 hasMore: false,
52                 total: 2
53             },
54             items: [],
55             sort: {
56                 name: 'asc'
57             }
58         };
59
60         expect(updateWorkflow(payload)).toEqual({
61             type: UPDATE_WORKFLOW,
62             payload
63         });
64     });
65 });