astro/packages/integrations/prefetch/test/custom-selectors.test.js

259 lines
6.5 KiB
JavaScript
Raw Normal View History

import { expect } from '@playwright/test';
import { testFactory } from './test-utils.js';
import prefetch from '../dist/index.js';
Updates prefetch integration to add "only prefetch link on hover/mouseover/focus" option (#6585) * modifies prefetch to add the option to only prefetch certain pages on hover * adds new pages to the test website to showcase prefetch-intent functionality * adds tests to verify prefetch-intent behavior * adds changelog * waits until networkidle to check if the prefetching worked instead of waiting on a specific url load * allows intentSelector to be either a string or array of strings * Revert "allows intentSelector to be either a string or array of strings" This reverts commit b0268eb0d5220ad2b08b0b7aee23f43e4caf879f. * fixes the multiple selector logic and adds tests * updates docs to include new prefetch-intent integration * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update .changeset/little-cars-exist.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2023-07-07 20:01:23 +00:00
const customSelector = 'a[href="/contact"]';
const customIntentSelector = [
'a[href][rel~="custom-intent"]',
'a[href][rel~="customer-intent"]',
'a[href][rel~="customest-intent"]',
];
const test = testFactory({
root: './fixtures/basic-prefetch/',
integrations: [
prefetch({
Updates prefetch integration to add "only prefetch link on hover/mouseover/focus" option (#6585) * modifies prefetch to add the option to only prefetch certain pages on hover * adds new pages to the test website to showcase prefetch-intent functionality * adds tests to verify prefetch-intent behavior * adds changelog * waits until networkidle to check if the prefetching worked instead of waiting on a specific url load * allows intentSelector to be either a string or array of strings * Revert "allows intentSelector to be either a string or array of strings" This reverts commit b0268eb0d5220ad2b08b0b7aee23f43e4caf879f. * fixes the multiple selector logic and adds tests * updates docs to include new prefetch-intent integration * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update .changeset/little-cars-exist.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2023-07-07 20:01:23 +00:00
selector: customSelector,
intentSelector: customIntentSelector,
}),
2022-06-27 18:28:16 +00:00
],
});
test.describe('Custom prefetch selectors', () => {
test.describe('dev', () => {
let devServer;
test.beforeEach(async ({ astro }) => {
devServer = await astro.startDevServer();
});
test.afterEach(async () => {
await devServer.stop();
});
test.describe('prefetches links by custom selector', () => {
test('only prefetches /contact', async ({ page, astro }) => {
const requests = [];
page.on('request', (request) => requests.push(request.url()));
await page.goto(astro.resolveUrl('/'));
await page.waitForLoadState('networkidle');
expect(requests.includes(astro.resolveUrl('/about')), '/about was skipped').toBeFalsy();
expect(
requests.includes(astro.resolveUrl('/contact')),
2022-06-27 18:28:16 +00:00
'/contact was prefetched'
).toBeTruthy();
expect(requests.includes(astro.resolveUrl('/admin')), '/admin was skipped').toBeFalsy();
expect(
requests.filter((r) => r === astro.resolveUrl('/')).length === 1,
'/ was skipped by prefetch and only queried once'
).toBeTruthy();
});
});
});
test.describe('build', () => {
let previewServer;
Updates prefetch integration to add "only prefetch link on hover/mouseover/focus" option (#6585) * modifies prefetch to add the option to only prefetch certain pages on hover * adds new pages to the test website to showcase prefetch-intent functionality * adds tests to verify prefetch-intent behavior * adds changelog * waits until networkidle to check if the prefetching worked instead of waiting on a specific url load * allows intentSelector to be either a string or array of strings * Revert "allows intentSelector to be either a string or array of strings" This reverts commit b0268eb0d5220ad2b08b0b7aee23f43e4caf879f. * fixes the multiple selector logic and adds tests * updates docs to include new prefetch-intent integration * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update .changeset/little-cars-exist.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2023-07-07 20:01:23 +00:00
test.beforeEach(async ({ astro }) => {
await astro.build();
previewServer = await astro.preview();
});
// important: close preview server (free up port and connection)
Updates prefetch integration to add "only prefetch link on hover/mouseover/focus" option (#6585) * modifies prefetch to add the option to only prefetch certain pages on hover * adds new pages to the test website to showcase prefetch-intent functionality * adds tests to verify prefetch-intent behavior * adds changelog * waits until networkidle to check if the prefetching worked instead of waiting on a specific url load * allows intentSelector to be either a string or array of strings * Revert "allows intentSelector to be either a string or array of strings" This reverts commit b0268eb0d5220ad2b08b0b7aee23f43e4caf879f. * fixes the multiple selector logic and adds tests * updates docs to include new prefetch-intent integration * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update .changeset/little-cars-exist.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2023-07-07 20:01:23 +00:00
test.afterEach(async () => {
await previewServer.stop();
});
test.describe('prefetches links by custom selector', () => {
test('only prefetches /contact', async ({ page, astro }) => {
const requests = [];
page.on('request', (request) => requests.push(request.url()));
await page.goto(astro.resolveUrl('/'));
await page.waitForLoadState('networkidle');
expect(requests.includes(astro.resolveUrl('/about')), '/about was skipped').toBeFalsy();
expect(
requests.includes(astro.resolveUrl('/contact')),
2022-06-27 18:28:16 +00:00
'/contact was prefetched'
).toBeTruthy();
expect(requests.includes(astro.resolveUrl('/admin')), '/admin was skipped').toBeFalsy();
expect(
requests.filter((r) => r === astro.resolveUrl('/')).length === 1,
'/ was skipped by prefetch and only queried once'
).toBeTruthy();
});
});
});
});
Updates prefetch integration to add "only prefetch link on hover/mouseover/focus" option (#6585) * modifies prefetch to add the option to only prefetch certain pages on hover * adds new pages to the test website to showcase prefetch-intent functionality * adds tests to verify prefetch-intent behavior * adds changelog * waits until networkidle to check if the prefetching worked instead of waiting on a specific url load * allows intentSelector to be either a string or array of strings * Revert "allows intentSelector to be either a string or array of strings" This reverts commit b0268eb0d5220ad2b08b0b7aee23f43e4caf879f. * fixes the multiple selector logic and adds tests * updates docs to include new prefetch-intent integration * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update .changeset/little-cars-exist.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/prefetch/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2023-07-07 20:01:23 +00:00
test.describe('Custom prefetch intent selectors', () => {
test.describe('dev', () => {
let devServer;
test.beforeEach(async ({ astro }) => {
devServer = await astro.startDevServer();
});
test.afterEach(async () => {
await devServer.stop();
});
test('prefetches custom intent links only on hover if provided an array', async ({
page,
astro,
}) => {
const requests = [];
page.on('request', (request) => requests.push(request.url()));
await page.goto(astro.resolveUrl('/'));
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was not prefetched initially'
).toBeFalsy();
expect(
requests.includes(astro.resolveUrl('/conditions')),
'/conditions was not prefetched initially'
).toBeFalsy();
const combinedIntentSelectors = customIntentSelector.join(',');
const intentElements = await page.$$(combinedIntentSelectors);
for (const element of intentElements) {
await element.hover();
}
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was prefetched on hover'
).toBeTruthy();
expect(
requests.includes(astro.resolveUrl('/conditions')),
'/conditions was prefetched on hover'
).toBeTruthy();
});
test('prefetches custom intent links only on hover if provided a string', async ({
page,
astro,
}) => {
const requests = [];
page.on('request', (request) => requests.push(request.url()));
await page.goto(astro.resolveUrl('/'));
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was not prefetched initially'
).toBeFalsy();
await page.hover(customIntentSelector[0]);
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was prefetched on hover'
).toBeTruthy();
});
});
test.describe('build', () => {
let previewServer;
test.beforeEach(async ({ astro }) => {
await astro.build();
previewServer = await astro.preview();
});
// important: close preview server (free up port and connection)
test.afterEach(async () => {
await previewServer.stop();
});
test('prefetches custom intent links only on hover if provided an array', async ({
page,
astro,
}) => {
const requests = [];
page.on('request', (request) => requests.push(request.url()));
await page.goto(astro.resolveUrl('/'));
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was not prefetched initially'
).toBeFalsy();
expect(
requests.includes(astro.resolveUrl('/conditions')),
'/conditions was not prefetched initially'
).toBeFalsy();
const combinedIntentSelectors = customIntentSelector.join(',');
const intentElements = await page.$$(combinedIntentSelectors);
for (const element of intentElements) {
await element.hover();
}
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was prefetched on hover'
).toBeTruthy();
expect(
requests.includes(astro.resolveUrl('/conditions')),
'/conditions was prefetched on hover'
).toBeTruthy();
});
test('prefetches custom intent links only on hover if provided a string', async ({
page,
astro,
}) => {
const requests = [];
page.on('request', (request) => requests.push(request.url()));
await page.goto(astro.resolveUrl('/'));
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was not prefetched initially'
).toBeFalsy();
await page.hover(customIntentSelector[0]);
await page.waitForLoadState('networkidle');
expect(
requests.includes(astro.resolveUrl('/terms')),
'/terms was prefetched on hover'
).toBeTruthy();
});
});
});