-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathProjectInformationCheck.test.js
More file actions
125 lines (106 loc) · 3.53 KB
/
ProjectInformationCheck.test.js
File metadata and controls
125 lines (106 loc) · 3.53 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import React from 'react';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import renderer from 'react-test-renderer';
// components
import ProjectInformationCheck from '../js/components/projectValidation/ProjectInformationCheck';
describe('ProjectInformationCheck', () => {
test('ProjectInformationCheck component should match snapshot with required props', () => {
const props = {
actions: {
setContributorsInProjectInformationReducer: () => {},
setCheckersInProjectInformationReducer: () => {},
setBookIDInProjectInformationReducer: () => {},
setLanguageDirectionInProjectInformationReducer: () => {},
setLanguageNameInProjectInformationReducer: () => {},
setLanguageIdInProjectInformationReducer: () => {},
setAllLanguageInfoInProjectInformationReducer: () => {},
getResourceIdWarning: () => {},
getDuplicateProjectWarning: () => {},
displayOverwriteButton: () => {},
},
reducers: {
projectInformationCheckReducer: {
bookId: 'tit',
resourceId: 'ult',
nickname: 'My Project',
languageId: 'en',
languageName: 'english',
languageDirection: 'ltr',
contributors: ['manny', 'some other guy'],
checkers: ['manny', 'superman'],
},
projectDetailsReducer: { projectSaveLocation: 'dummy' },
settingsReducer: { currentSettings: { developerMode: false } },
},
translate: key => key,
};
const renderedValue = renderer.create(
<MuiThemeProvider>
<ProjectInformationCheck {...props} />
</MuiThemeProvider>,
).toJSON();
expect(renderedValue).toMatchSnapshot();
});
});
describe('ProjectInformationCheck.limitStringLength', () => {
test('short strings not limited', () => {
// given
const text = '123';
const maxLength = 3;
const expectedText = text;
// when
const results = (new ProjectInformationCheck()).limitStringLength(text, maxLength);
// then
expect(results).toEqual(expectedText);
});
test('short strings not limited - 6', () => {
// given
const text = '123456';
const maxLength = 6;
const expectedText = text;
// when
const results = (new ProjectInformationCheck()).limitStringLength(text, maxLength);
// then
expect(results).toEqual(expectedText);
});
test('long strings limited', () => {
// given
const text = '1234';
const maxLength = 3;
const expectedText = '123';
// when
const results = (new ProjectInformationCheck()).limitStringLength(text, maxLength);
// then
expect(results).toEqual(expectedText);
});
test('long strings limited - 5', () => {
// given
const text = '123456';
const maxLength = 5;
const expectedText = '12345';
// when
const results = (new ProjectInformationCheck()).limitStringLength(text, maxLength);
// then
expect(results).toEqual(expectedText);
});
test('empty strings not crash', () => {
// given
const text = '';
const maxLength = 5;
const expectedText = text;
// when
const results = (new ProjectInformationCheck()).limitStringLength(text, maxLength);
// then
expect(results).toEqual(expectedText);
});
test('null strings not crash', () => {
// given
const text = null;
const maxLength = 5;
const expectedText = text;
// when
const results = (new ProjectInformationCheck()).limitStringLength(text, maxLength);
// then
expect(results).toEqual(expectedText);
});
});