mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
2f6d1faa6f
* fix(NodeApp): end with "Internal server error" on mid-stream error * add changeset * add test * Apply suggestions from code review --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
import assert from 'node:assert/strict';
|
|
import { describe, it, before, after } from 'node:test';
|
|
import nodejs from '../dist/index.js';
|
|
import { loadFixture } from './test-utils.js';
|
|
import * as cheerio from 'cheerio';
|
|
|
|
describe('Errors', () => {
|
|
let fixture;
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: './fixtures/errors/',
|
|
output: 'server',
|
|
adapter: nodejs({ mode: 'standalone' }),
|
|
});
|
|
await fixture.build();
|
|
});
|
|
let devPreview;
|
|
|
|
before(async () => {
|
|
devPreview = await fixture.preview();
|
|
});
|
|
after(async () => {
|
|
await devPreview.stop();
|
|
});
|
|
|
|
it('rejected promise in template', async () => {
|
|
const res = await fixture.fetch('/in-stream');
|
|
const html = await res.text();
|
|
const $ = cheerio.load(html);
|
|
|
|
assert.equal($('p').text().trim(), 'Internal server error');
|
|
});
|
|
|
|
it('generator that throws called in template', async () => {
|
|
/** @type {Response} */
|
|
const res = await fixture.fetch('/generator');
|
|
const reader = res.body.getReader();
|
|
const decoder = new TextDecoder();
|
|
const expect = async ({ done, value }) => {
|
|
const result = await reader.read();
|
|
assert.equal(result.done, done);
|
|
if (!done) assert.equal(decoder.decode(result.value), value);
|
|
}
|
|
await expect({ done: false, value: "<!DOCTYPE html><h1>Astro</h1> 1Internal server error" });
|
|
await expect({ done: true });
|
|
});
|
|
});
|