2022-07-22 19:22:31 +00:00
|
|
|
import { EventEmitter } from 'events';
|
2023-01-06 17:01:54 +00:00
|
|
|
import httpMocks from 'node-mocks-http';
|
|
|
|
import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js';
|
2022-07-22 19:22:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {import('../../../astro/test/test-utils').Fixture} Fixture
|
|
|
|
*/
|
|
|
|
|
|
|
|
export function loadFixture(inlineConfig) {
|
2023-07-03 12:59:43 +00:00
|
|
|
if (!inlineConfig?.root) throw new Error("Must provide { root: './fixtures/...' }");
|
2022-07-22 19:22:31 +00:00
|
|
|
|
|
|
|
// resolve the relative root (i.e. "./fixtures/tailwindcss") to a full filepath
|
|
|
|
// without this, the main `loadFixture` helper will resolve relative to `packages/astro/test`
|
|
|
|
return baseLoadFixture({
|
|
|
|
...inlineConfig,
|
|
|
|
root: new URL(inlineConfig.root, import.meta.url).toString(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function createRequestAndResponse(reqOptions) {
|
|
|
|
let req = httpMocks.createRequest(reqOptions);
|
|
|
|
|
|
|
|
let res = httpMocks.createResponse({
|
|
|
|
eventEmitter: EventEmitter,
|
2022-07-22 19:24:58 +00:00
|
|
|
req,
|
2022-07-22 19:22:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
let done = toPromise(res);
|
|
|
|
|
2023-01-12 15:44:18 +00:00
|
|
|
// Get the response as text
|
|
|
|
const text = async () => {
|
|
|
|
let chunks = await done;
|
|
|
|
return buffersToString(chunks);
|
|
|
|
};
|
|
|
|
|
|
|
|
return { req, res, done, text };
|
2022-07-22 19:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function toPromise(res) {
|
2022-07-22 19:24:58 +00:00
|
|
|
return new Promise((resolve) => {
|
2023-01-06 17:01:54 +00:00
|
|
|
// node-mocks-http doesn't correctly handle non-Buffer typed arrays,
|
|
|
|
// so override the write method to fix it.
|
|
|
|
const write = res.write;
|
|
|
|
res.write = function (data, encoding) {
|
|
|
|
if (ArrayBuffer.isView(data) && !Buffer.isBuffer(data)) {
|
|
|
|
data = Buffer.from(data.buffer);
|
|
|
|
}
|
|
|
|
return write.call(this, data, encoding);
|
|
|
|
};
|
2022-07-22 19:22:31 +00:00
|
|
|
res.on('end', () => {
|
|
|
|
let chunks = res._getChunks();
|
|
|
|
resolve(chunks);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2023-01-12 15:44:18 +00:00
|
|
|
|
|
|
|
export function buffersToString(buffers) {
|
|
|
|
let decoder = new TextDecoder();
|
|
|
|
let str = '';
|
|
|
|
for (const buffer of buffers) {
|
|
|
|
str += decoder.decode(buffer);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|