astro/packages/integrations/node/test/url-protocol.test.js
2023-08-10 13:14:19 -04:00

88 lines
2.2 KiB
JavaScript

import { expect } from 'chai';
import { getNetworkAddress } from '../dist/get-network-address.js'
import { fetch } from 'undici';
describe('URL protocol', () => {
/** @type {import('./test-utils').Fixture} */
let fixture;
before(async () => {
fixture = await loadFixture({
server: {
host: true
},
root: './fixtures/url-protocol/',
output: 'server',
adapter: nodejs({ mode: 'standalone' }),
});
await fixture.build();
});
describe('test preview when host is true', async () => {
let devPreview;
before(async () => {
devPreview = await fixture.preview();
});
it('test host is true ', async () => {
const address = getNetworkAddress('http', undefined, 3000)
const res = await fetch(address.network[0])
expect(res.status).to.equal(200);
});
})
it('return http when non-secure', async () => {
const { handler } = await import('./fixtures/url-protocol/dist/server/entry.mjs');
let { req, res, text } = createRequestAndResponse({
url: '/',
});
handler(req, res);
req.send();
const html = await text();
expect(html).to.include('http:');
});
it('return https when secure', async () => {
const { handler } = await import('./fixtures/url-protocol/dist/server/entry.mjs');
let { req, res, text } = createRequestAndResponse({
socket: new TLSSocket(),
url: '/',
});
handler(req, res);
req.send();
const html = await text();
expect(html).to.include('https:');
});
it('return http when the X-Forwarded-Proto header is set to http', async () => {
const { handler } = await import('./fixtures/url-protocol/dist/server/entry.mjs');
let { req, res, text } = createRequestAndResponse({
headers: { 'X-Forwarded-Proto': 'http' },
url: '/',
});
handler(req, res);
req.send();
const html = await text();
expect(html).to.include('http:');
});
it('return https when the X-Forwarded-Proto header is set to https', async () => {
const { handler } = await import('./fixtures/url-protocol/dist/server/entry.mjs');
let { req, res, text } = createRequestAndResponse({
headers: { 'X-Forwarded-Proto': 'https' },
url: '/',
});
handler(req, res);
req.send();
const html = await text();
expect(html).to.include('https:');
});
});