forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.spec.ts
272 lines (231 loc) · 7.25 KB
/
output.spec.ts
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import { test, expect, type Page } from '@playwright/test';
import translations from '../client/i18n/locales/english/translations.json';
import { clearEditor, focusEditor, getEditors } from './utils/editor';
const outputTexts = {
default: `
/**
* Your test output will go here
*/`,
syntaxError: `SyntaxError: unknown: Unexpected token (1:3)
> 1 | var
| ^`,
empty: `// running tests
1. You should declare myName with the var keyword, ending with a semicolon
// tests completed`,
passed: `// running tests
// tests completed`
};
interface InsertTextParameters {
page: Page;
isMobile: boolean;
text: string;
}
const insertTextInCodeEditor = async ({ page, text }: InsertTextParameters) => {
await getEditors(page).fill(text);
};
const runChallengeTest = async (page: Page, isMobile: boolean) => {
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
await page.getByText('Run').click();
} else {
await page.getByText('Run the Tests (Ctrl + Enter)').click();
}
};
test.describe('For classic challenges', () => {
test.beforeEach(async ({ page }) => {
await page.goto(
'/learn/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements'
);
});
test('it renders the default output', async ({ page, isMobile }) => {
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
}
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(outputTexts.default);
});
test('shows test output when the tests are run', async ({
page,
isMobile,
browserName
}) => {
const closeButton = page.getByRole('button', { name: 'Close' });
await expect(page).toHaveTitle(
'Basic HTML and HTML5: Say Hello to HTML Elements |' + ' freeCodeCamp.org'
);
await focusEditor({ page, isMobile });
await clearEditor({ browserName, page, isMobile });
await insertTextInCodeEditor({
page,
isMobile,
text: '<h1>Hello World</h1>'
});
await runChallengeTest(page, isMobile);
await closeButton.click();
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(outputTexts.passed);
});
test('shows test output when the tests are triggered by the keyboard', async ({
page,
isMobile
}) => {
test.skip(isMobile);
const closeButton = page.getByRole('button', { name: 'Close' });
await insertTextInCodeEditor({
page,
isMobile,
text: '<h1>Hello World</h1>'
});
await page.keyboard.press('Control+Enter');
await closeButton.click();
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(outputTexts.passed);
});
});
test.describe('Challenge Output Component Tests', () => {
test.beforeEach(async ({ page }) => {
await page.goto(
'/learn/javascript-algorithms-and-data-structures/basic-javascript/declare-javascript-variables'
);
});
test('should render with default output', async ({ page, isMobile }) => {
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
}
const outputConsole = page.getByRole('region', {
name: translations.learn['editor-tabs'].console
});
await expect(outputConsole).toBeVisible();
await expect(outputConsole).toHaveText(outputTexts.default);
});
test('should contain syntax error output when var is entered in editor', async ({
page,
isMobile
}) => {
await focusEditor({ page, isMobile });
await insertTextInCodeEditor({ page, isMobile, text: 'var' });
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
}
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(outputTexts.syntaxError);
});
test('should contain reference error output when var is entered in editor', async ({
page,
isMobile
}) => {
const referenceErrorRegex =
/ReferenceError: (myName is not defined|Can't find variable: myName)/;
await focusEditor({ page, isMobile });
await insertTextInCodeEditor({ page, isMobile, text: 'myName' });
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
}
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(referenceErrorRegex);
});
test('should contain final output after test fail', async ({
page,
isMobile
}) => {
await runChallengeTest(page, isMobile);
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(outputTexts.empty);
});
test('should contain final output after test pass', async ({
page,
isMobile
}) => {
const closeButton = page.getByRole('button', { name: 'Close' });
await focusEditor({ page, isMobile });
await insertTextInCodeEditor({ page, isMobile, text: 'var myName;' });
await runChallengeTest(page, isMobile);
await closeButton.click();
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(outputTexts.passed);
});
});
test.describe('Jquery challenges', () => {
test('Jquery challenge should render with default output', async ({
page,
isMobile
}) => {
await page.goto(
'/learn/front-end-development-libraries/jquery/target-html-elements-with-selectors-using-jquery'
);
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
}
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toHaveText(outputTexts.default);
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).not.toHaveText('ReferenceError: $ is not defined');
});
});
test.describe('Custom output for Set and Map', () => {
test('Custom output for JavaScript Objects Set and Map', async ({
page,
isMobile,
browserName
}) => {
await page.goto(
'/learn/javascript-algorithms-and-data-structures/basic-javascript/comment-your-javascript-code'
);
await focusEditor({ page, isMobile });
await insertTextInCodeEditor({
page,
isMobile,
text: 'const set = new Set(); set.add(1); set.add("set"); set.add(10); console.log(set);'
});
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
}
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toContainText('Set(3) {1, set, 10}');
await focusEditor({ page, isMobile });
await clearEditor({ browserName, page });
await insertTextInCodeEditor({
page,
isMobile,
text: 'const map = new Map(); map.set(1, "one"); map.set("two", 2); console.log(map);'
});
if (isMobile) {
await page.getByRole('tab', { name: 'Console' }).click();
}
await expect(
page.getByRole('region', {
name: translations.learn['editor-tabs'].console
})
).toContainText('Map(2) {1 => one, two => 2}');
});
});