2021-08-18 10:04:28 -04:00
|
|
|
// these tests do not sign in as a user
|
|
|
|
|
2020-10-02 16:53:52 -04:00
|
|
|
const SeleniumHelper = require('./selenium-helpers.js');
|
|
|
|
|
|
|
|
const {
|
|
|
|
clickText,
|
2023-04-11 09:05:06 -04:00
|
|
|
buildDriver,
|
|
|
|
findText
|
2020-10-02 16:53:52 -04:00
|
|
|
} = new SeleniumHelper();
|
|
|
|
|
|
|
|
let rootUrl = process.env.ROOT_URL || 'https://scratch.ly';
|
|
|
|
|
2021-12-03 09:14:25 -05:00
|
|
|
jest.setTimeout(60000);
|
2020-10-02 16:53:52 -04:00
|
|
|
|
|
|
|
let driver;
|
|
|
|
|
|
|
|
describe('www-integration footer links', () => {
|
|
|
|
beforeAll(async () => {
|
|
|
|
driver = await buildDriver('www-integration footer links');
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
await driver.get(rootUrl);
|
2023-04-11 09:05:06 -04:00
|
|
|
await findText('Create stories, games, and animations');
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async () => await driver.quit());
|
|
|
|
|
|
|
|
// ==== About Scratch column ====
|
|
|
|
|
|
|
|
test('click About Scratch link', async () => {
|
|
|
|
await clickText('About Scratch');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
|
|
|
expect(pathname).toMatch(/^\/about\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click For Parents link', async () => {
|
|
|
|
await clickText('For Parents');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/parents\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click For Educators link', async () => {
|
|
|
|
await clickText('For Educators');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/educators\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click For Developers link', async () => {
|
|
|
|
await clickText('For Developers');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/developers\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ==== COMMUNITY column ====
|
|
|
|
|
|
|
|
test('click Community Guidelines link', async () => {
|
|
|
|
await clickText('Community Guidelines');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/community_guidelines\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click Discussion Forums link', async () => {
|
|
|
|
await clickText('Discussion Forums');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/discuss\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click Statistics link', async () => {
|
|
|
|
await clickText('Statistics');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/statistics\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ==== SUPPORT column ====
|
|
|
|
|
|
|
|
test('click Ideas link', async () => {
|
|
|
|
await clickText('Ideas');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/ideas\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click FAQ link', async () => {
|
|
|
|
await clickText('FAQ');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2021-08-05 13:55:11 -04:00
|
|
|
expect(pathname).toMatch(/^\/faq\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click Download link', async () => {
|
|
|
|
await clickText('Download');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/download\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click Contact Us link', async () => {
|
|
|
|
await clickText('Contact Us');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/contact-us\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ==== LEGAL column ====
|
|
|
|
|
|
|
|
test('click Terms of Use link', async () => {
|
|
|
|
await clickText('Terms of Use');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/terms_of_use\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('click Privacy Policy link', async () => {
|
|
|
|
await clickText('Privacy Policy');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/privacy_policy\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
2023-06-05 09:00:19 -04:00
|
|
|
test('click Cookies link', async () => {
|
|
|
|
await clickText('Cookies');
|
|
|
|
let url = await driver.getCurrentUrl();
|
|
|
|
let pathname = (new URL(url)).pathname;
|
|
|
|
expect(pathname).toMatch(/^\/cookies\/?$/);
|
|
|
|
|
|
|
|
// Verify localization of last updated message
|
|
|
|
let lastUpdated = await findText('The Scratch Cookie Policy was last updated June 28, 2023');
|
|
|
|
let lastUpdatedVisible = await lastUpdated.isDisplayed();
|
|
|
|
await expect(lastUpdatedVisible).toBe(true);
|
|
|
|
});
|
|
|
|
|
2020-10-02 16:53:52 -04:00
|
|
|
test('click DMCA link', async () => {
|
|
|
|
await clickText('DMCA');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2020-10-06 16:42:57 -04:00
|
|
|
expect(pathname).toMatch(/^\/DMCA\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ==== SCRATCH FAMILY column ====
|
|
|
|
|
|
|
|
test('click Scratch Conference link', async () => {
|
|
|
|
await clickText('Scratch Conference');
|
|
|
|
let url = await driver.getCurrentUrl();
|
2020-10-06 15:42:59 -04:00
|
|
|
let pathname = (new URL(url)).pathname;
|
2022-06-29 12:17:08 -04:00
|
|
|
expect(pathname).toMatch(/^\/scratch-conference\/?$/);
|
2020-10-02 16:53:52 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
// The following links in are skipped because they are not on scratch.mit.edu
|
|
|
|
|
|
|
|
// Jobs
|
|
|
|
// Press
|
|
|
|
// SCRATCH STORE
|
|
|
|
// DONATE
|
|
|
|
// SCRATCH WIKI
|
|
|
|
// SCRATCH ED (SCRATCHED)
|
|
|
|
// SCRATCH JR (SCRATCHJR)
|
|
|
|
// SCRATCH DAY
|
|
|
|
// SCRATCH FOUNDATION
|