-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathChecklistSection.test.jsx
More file actions
221 lines (171 loc) · 6.49 KB
/
ChecklistSection.test.jsx
File metadata and controls
221 lines (171 loc) · 6.49 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import { camelCaseObject } from '@edx/frontend-platform';
import {
initializeMocks,
render,
screen,
within,
} from '@src/testUtils';
import { getApiWaffleFlagsUrl } from '@src/data/api';
import { generateCourseLaunchData } from '../factories/mockApiResponses';
import { checklistItems } from './utils/courseChecklistData';
import messages from './messages';
import ChecklistSection from '.';
const testData = camelCaseObject(generateCourseLaunchData());
const courseId = '123';
const defaultProps = {
courseId,
data: testData,
dataHeading: 'Test checklist',
idPrefix: 'launchChecklist',
isLoading: false,
};
const testChecklistData = checklistItems[defaultProps.idPrefix];
const completedItemIds = ['welcomeMessage', 'courseDates'];
const renderComponent = (props) => {
render(<ChecklistSection {...props} />);
};
describe('ChecklistSection', () => {
beforeEach(async () => {
const { axiosMock } = initializeMocks();
axiosMock
.onGet(getApiWaffleFlagsUrl(courseId))
.reply(200, {});
});
it('a heading using the dataHeading prop', () => {
renderComponent(defaultProps);
expect(screen.getByText(defaultProps.dataHeading)).toBeVisible();
});
it('completion count text', () => {
renderComponent(defaultProps);
const completionText = `${completedItemIds.length}/6 completed`;
expect(screen.getByTestId('completion-subheader').textContent).toEqual(completionText);
});
it('a loading spinner when isLoading prop is true', () => {
renderComponent({ ...defaultProps, isLoading: true });
const completionSubheader = screen.queryByTestId('completion-subheader');
expect(completionSubheader).toBeNull();
const loadingSpinner = screen.getByTestId('loading-spinner');
expect(loadingSpinner).toBeVisible();
});
it('the correct number of checks', () => {
renderComponent(defaultProps);
const listItems = screen.getAllByTestId('checklist-item', { exact: false });
expect(listItems).toHaveLength(6);
});
it('welcomeMessage comment section should be null', () => {
renderComponent(defaultProps);
const comment = screen.getByTestId('comment-section-welcomeMessage');
expect(comment.children).toHaveLength(0);
});
it('certificate comment section should be null', () => {
renderComponent(defaultProps);
const comment = screen.getByTestId('comment-section-certificate');
expect(comment.children).toHaveLength(0);
});
it('courseDates comment section should be null', () => {
renderComponent(defaultProps);
const comment = screen.getByTestId('comment-section-courseDates');
expect(comment.children).toHaveLength(0);
});
it('proctoringEmail comment section should be null', () => {
renderComponent(defaultProps);
const comment = screen.getByTestId('comment-section-proctoringEmail');
expect(comment.children).toHaveLength(0);
});
describe('gradingPolicy comment section', () => {
it('should be null if sum of weights is equal to 1', () => {
const props = {
...defaultProps,
data: {
...defaultProps.data,
grades: {
...defaultProps.data.grades,
sumOfWeights: 1,
},
},
};
renderComponent(props);
const comment = screen.getByTestId('comment-section-gradingPolicy');
expect(comment.children).toHaveLength(0);
});
it('should have comment section', () => {
renderComponent(defaultProps);
const comment = screen.getByTestId('comment-section-gradingPolicy');
expect(comment.children).toHaveLength(1);
expect(screen.getByText(
'Your current grading policy adds up to',
{ exact: false },
)).toBeVisible();
});
});
describe('assignmentDeadlines comment section', () => {
it('should be null if assignments with dates before start and after end are empty', () => {
const props = {
...defaultProps,
data: {
...defaultProps.data,
assignments: {
...defaultProps.data.assignments,
assignmentsWithDatesAfterEnd: [],
assignmentsWithOraDatesBeforeStart: [],
},
},
};
renderComponent(props);
const comment = screen.getByTestId('comment-section-assignmentDeadlines');
expect(comment.children).toHaveLength(0);
});
it('should have comment section', () => {
renderComponent(defaultProps);
const comment = screen.getByTestId('comment-section-assignmentDeadlines');
const assigmentLinks = within(comment).getAllByRole('link');
expect(comment.children).toHaveLength(1);
expect(screen.getByText(
messages.assignmentDeadlinesComment.defaultMessage,
{ exact: false },
)).toBeVisible();
expect(assigmentLinks).toHaveLength(2);
expect(assigmentLinks[0].textContent).toEqual('Subsection');
expect(assigmentLinks[1].textContent).toEqual('ORA subsection');
});
});
describe('Checklist Component', () => {
let checklistData;
let updateLinks;
beforeEach(() => {
renderComponent(defaultProps);
checklistData = testChecklistData.map((item) => ({
itemId: item.id,
checklistItem: screen.getAllByTestId(`checklist-item-${item.id}`),
icon: screen.getAllByTestId(`icon-${item.id}`),
shortDescription: messages[`${item.id}ShortDescription`].defaultMessage,
longDescription: messages[`${item.id}LongDescription`].defaultMessage,
}));
updateLinks = screen.getAllByTestId('update-link');
});
it('should display the correct icons based on completion status', () => {
checklistData.forEach(({ itemId, icon }) => {
const { queryByTestId } = within(icon[0]);
if (completedItemIds.includes(itemId)) {
expect(queryByTestId('completed-icon')).not.toBeNull();
} else {
expect(queryByTestId('uncompleted-icon')).not.toBeNull();
}
});
});
it('should display short and long descriptions for each checklist item', () => {
checklistData.forEach(({ checklistItem, shortDescription, longDescription }) => {
const { getByText } = within(checklistItem[0]);
expect(getByText(shortDescription)).toBeVisible();
expect(getByText(longDescription)).toBeVisible();
});
});
it('should have valid update links for each checklist item', () => {
checklistData.forEach(({ itemId }) => {
updateLinks.forEach((link) => {
expect(link).toHaveAttribute('href', updateLinks[itemId]);
});
});
});
});
});