2022-06-27 18:26:21 +00:00
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
import { testFactory } from './test-utils.js';
|
|
|
|
import prefetch from '../dist/index.js';
|
|
|
|
|
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"]',
|
|
|
|
];
|
|
|
|
|
2022-06-27 18:26:21 +00:00
|
|
|
const test = testFactory({
|
2023-08-01 15:05:36 +00:00
|
|
|
// pass custom prefetch configuration
|
|
|
|
configFile: false,
|
2022-06-27 18:26:21 +00:00
|
|
|
root: './fixtures/basic-prefetch/',
|
|
|
|
integrations: [
|
|
|
|
prefetch({
|
2023-07-07 20:01:23 +00:00
|
|
|
selector: customSelector,
|
|
|
|
intentSelector: customIntentSelector,
|
2022-06-27 18:26:21 +00:00
|
|
|
}),
|
2022-06-27 18:28:16 +00:00
|
|
|
],
|
2022-06-27 18:26:21 +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 }) => {
|
2022-10-07 14:13:51 +00:00
|
|
|
const requests = [];
|
2022-06-27 18:26:21 +00:00
|
|
|
|
2023-01-09 17:14:07 +00:00
|
|
|
page.on('request', (request) => requests.push(request.url()));
|
2022-06-27 18:26:21 +00:00
|
|
|
|
|
|
|
await page.goto(astro.resolveUrl('/'));
|
|
|
|
|
|
|
|
await page.waitForLoadState('networkidle');
|
|
|
|
|
2022-10-07 14:13:51 +00:00
|
|
|
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();
|
2022-10-07 14:13:51 +00:00
|
|
|
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();
|
2022-06-27 18:26:21 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test.describe('build', () => {
|
|
|
|
let previewServer;
|
|
|
|
|
2023-07-07 20:01:23 +00:00
|
|
|
test.beforeEach(async ({ astro }) => {
|
2022-06-27 18:26:21 +00:00
|
|
|
await astro.build();
|
|
|
|
previewServer = await astro.preview();
|
|
|
|
});
|
|
|
|
|
|
|
|
// important: close preview server (free up port and connection)
|
2023-07-07 20:01:23 +00:00
|
|
|
test.afterEach(async () => {
|
2022-06-27 18:26:21 +00:00
|
|
|
await previewServer.stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
test.describe('prefetches links by custom selector', () => {
|
|
|
|
test('only prefetches /contact', async ({ page, astro }) => {
|
2022-10-07 14:13:51 +00:00
|
|
|
const requests = [];
|
2022-06-27 18:26:21 +00:00
|
|
|
|
2023-01-09 17:14:07 +00:00
|
|
|
page.on('request', (request) => requests.push(request.url()));
|
2022-06-27 18:26:21 +00:00
|
|
|
|
|
|
|
await page.goto(astro.resolveUrl('/'));
|
|
|
|
|
|
|
|
await page.waitForLoadState('networkidle');
|
|
|
|
|
2022-10-07 14:13:51 +00:00
|
|
|
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();
|
2022-10-07 14:13:51 +00:00
|
|
|
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();
|
2022-06-27 18:26:21 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
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();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|