2024-01-25 11:17:31 -05:00
|
|
|
import * as assert from 'node:assert/strict';
|
|
|
|
import { after, before, describe, it } from 'node:test';
|
2023-01-11 04:52:51 -05:00
|
|
|
import nodejs from '../dist/index.js';
|
|
|
|
import { loadFixture } from './test-utils.js';
|
|
|
|
|
|
|
|
describe('test URIs beginning with a dot', () => {
|
|
|
|
/** @type {import('./test-utils').Fixture} */
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/well-known-locations/',
|
|
|
|
output: 'server',
|
|
|
|
adapter: nodejs({ mode: 'standalone' }),
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('can load well-known URIs', async () => {
|
|
|
|
let devPreview;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
devPreview = await fixture.preview();
|
|
|
|
});
|
|
|
|
|
|
|
|
after(async () => {
|
|
|
|
await devPreview.stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can load a valid well-known URI', async () => {
|
|
|
|
const res = await fixture.fetch('/.well-known/apple-app-site-association');
|
|
|
|
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(res.status, 200);
|
2023-01-11 04:52:51 -05:00
|
|
|
|
|
|
|
const json = await res.json();
|
|
|
|
|
2024-02-16 06:41:16 -05:00
|
|
|
assert.notEqual(json.applinks, {});
|
2023-01-11 04:52:51 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('cannot load a dot folder that is not a well-known URI', async () => {
|
|
|
|
const res = await fixture.fetch('/.hidden/file.json');
|
|
|
|
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(res.status, 404);
|
2023-01-11 04:52:51 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|