forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquincy-email-sign-up.spec.ts
211 lines (180 loc) · 7.09 KB
/
quincy-email-sign-up.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
import { execSync } from 'child_process';
import { test, expect } from '@playwright/test';
import translations from '../client/i18n/locales/english/translations.json';
const apiLocation = process.env.API_LOCATION || 'http://localhost:3000';
const contents = [
translations.learn['read-this'].heading,
translations.learn['read-this'].p1,
translations.learn['read-this'].p2,
translations.learn['read-this'].p3,
translations.learn['read-this'].p4,
translations.learn['read-this'].p5,
translations.learn['read-this'].p6,
translations.learn['read-this'].p7,
translations.learn['read-this'].p8,
"And if you want to learn more math and computer science theory, we also have thousands of hours of video courses on freeCodeCamp's YouTube channel.",
translations.learn['read-this'].p10,
'You can do this on LinkedIn and GitHub, and also on the freeCodeCamp forum.',
translations.learn['read-this'].p12,
translations.misc.quincy,
translations.misc['email-blast']
];
test.describe('Email sign-up page when user is not signed in', () => {
test.use({ storageState: { cookies: [], origins: [] } });
test.beforeEach(async ({ page }) => {
await page.goto('/email-sign-up');
});
test('should display the content correctly', async ({ page }) => {
for (const content of contents) {
await expect(page.getByText(content)).toBeVisible();
}
const youtubeLink = page.getByRole('link', {
name: "freeCodeCamp's YouTube channel"
});
await expect(youtubeLink).toHaveAttribute(
'href',
'https://youtube.com/freecodecamp'
);
const forumLink = page.getByRole('link', {
name: 'the freeCodeCamp forum'
});
await expect(forumLink).toHaveAttribute(
'href',
'https://forum.freecodecamp.org'
);
});
test("should not enable Quincy's weekly newsletter when the user clicks the sign up button", async ({
page
}) => {
await expect(page).toHaveTitle('Email Sign Up | freeCodeCamp.org');
await expect(
page.getByText(
'freeCodeCamp is a proven path to your first software developer job.'
)
).toBeVisible();
const signupLink = page.getByRole('link', {
name: translations.buttons['sign-up-email-list']
});
await expect(signupLink).toBeVisible();
await expect(signupLink).toHaveAttribute('href', `${apiLocation}/signin`);
await signupLink.click();
// The user is signed in and automatically redirected to /learn after clicking the button.
// We wait for this navigation to complete before moving onto the next.
await page.waitForURL('**/learn');
await expect(
page.getByRole('heading', { name: 'Welcome back, Full Stack User' })
).toBeVisible();
await page.goto('/settings');
await expect(
page.getByRole('group', { name: translations.settings.email.weekly })
).toBeVisible();
await expect(
page.getByRole('button', { name: translations.buttons['yes-please'] })
).toHaveAttribute('aria-pressed', 'false');
await expect(
page.getByRole('button', { name: translations.buttons['no-thanks'] })
).toHaveAttribute('aria-pressed', 'true');
});
});
test.describe('Email sign-up page when user is signed in', () => {
test.beforeEach(async ({ page }) => {
// It's necessary to seed with a user that has not accepted the privacy
// terms, otherwise the user will be redirected away from the email sign-up
// page.
execSync(
'node ./tools/scripts/seed/seed-demo-user --certified-user --set-false acceptedPrivacyTerms'
);
await page.goto('/email-sign-up');
});
test('should display the content correctly', async ({ page }) => {
for (const content of contents) {
await expect(page.getByText(content)).toBeVisible();
}
const youtubeLink = page.getByRole('link', {
name: "freeCodeCamp's YouTube channel"
});
await expect(youtubeLink).toHaveAttribute(
'href',
'https://youtube.com/freecodecamp'
);
const forumLink = page.getByRole('link', {
name: 'the freeCodeCamp forum'
});
await expect(forumLink).toHaveAttribute(
'href',
'https://forum.freecodecamp.org'
);
});
test("should disable Quincy's weekly newsletter if the user clicks No", async ({
page
}) => {
await expect(page).toHaveTitle('Email Sign Up | freeCodeCamp.org');
await expect(
page.getByText(
'freeCodeCamp is a proven path to your first software developer job.'
)
).toBeVisible();
const noThanksButton = page.getByRole('button', {
name: translations.buttons['no-thanks']
});
await expect(noThanksButton).toBeVisible();
await noThanksButton.click();
// The user is signed in and automatically redirected to /learn after clicking the button.
// We wait for the navigation to complete.
await page.waitForURL('**/learn');
await expect(
page.getByRole('heading', { name: 'Welcome back, Full Stack User' })
).toBeVisible();
await page.goto('/settings');
await expect(
page.getByRole('group', { name: translations.settings.email.weekly })
).toBeVisible();
await expect(
page.getByRole('button', { name: translations.buttons['no-thanks'] })
).toHaveAttribute('aria-pressed', 'true');
await expect(
page.getByRole('button', { name: translations.buttons['yes-please'] })
).toHaveAttribute('aria-pressed', 'false');
});
test("should enable Quincy's weekly newsletter if the user clicks Yes", async ({
page
}) => {
await expect(page).toHaveTitle('Email Sign Up | freeCodeCamp.org');
await expect(
page.getByText(
'freeCodeCamp is a proven path to your first software developer job.'
)
).toBeVisible();
const signupButton = page.getByRole('button', {
name: translations.buttons['yes-please']
});
await expect(signupButton).toBeVisible();
await signupButton.click();
// The user is signed in and automatically redirected to /learn after clicking the button.
// We wait for the navigation to complete.
await page.waitForURL('**/learn');
await expect(
page.getByRole('heading', { name: 'Welcome back, Full Stack User' })
).toBeVisible();
// When the user clicks Yes, the /update-privacy-terms API is called
// to update both `acceptedPrivacyTerms` and `sendQuincyEmail`.
// But `sendQuincyEmail` is not set in the DB since the endpoint is mocked,
// so we are overriding the user data once again to mimic the real behavior.
await page.route('*/**/user/get-session-user', async route => {
const response = await route.fetch();
const json = await response.json();
json.user.certifieduser.sendQuincyEmail = true;
await route.fulfill({ json });
});
await page.goto('/settings');
await expect(
page.getByRole('group', { name: translations.settings.email.weekly })
).toBeVisible();
await expect(
page.getByRole('button', { name: translations.buttons['yes-please'] })
).toHaveAttribute('aria-pressed', 'true');
await expect(
page.getByRole('button', { name: translations.buttons['no-thanks'] })
).toHaveAttribute('aria-pressed', 'false');
});
});