mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
fix: Do not reuse the same error in StaticThrowHandler
This commit is contained in:
@@ -506,7 +506,11 @@ describe.each(stores)('An LDP handler allowing all requests %s', (name, { storeC
|
||||
});
|
||||
|
||||
it('returns 405 for unsupported methods.', async(): Promise<void> => {
|
||||
const response = await fetch(baseUrl, { method: 'TRACE' });
|
||||
let response = await fetch(baseUrl, { method: 'TRACE' });
|
||||
expect(response.status).toBe(405);
|
||||
|
||||
// Testing two different URLs as there used to be a problem with this
|
||||
response = await fetch(joinUrl(baseUrl, 'foo'), { method: 'TRACE' });
|
||||
expect(response.status).toBe(405);
|
||||
});
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { BadRequestHttpError } from '../../../../src/util/errors/BadRequestHttpError';
|
||||
import { StaticThrowHandler } from '../../../../src/util/handlers/StaticThrowHandler';
|
||||
import { SOLID_ERROR } from '../../../../src/util/Vocabularies';
|
||||
|
||||
describe('A StaticThrowHandler', (): void => {
|
||||
const error = new BadRequestHttpError();
|
||||
@@ -9,7 +10,26 @@ describe('A StaticThrowHandler', (): void => {
|
||||
await expect(handler.canHandle({})).resolves.toBeUndefined();
|
||||
});
|
||||
|
||||
it('always throws the given error.', async(): Promise<void> => {
|
||||
it('always throws an instance of the given error.', async(): Promise<void> => {
|
||||
await expect(handler.handle()).rejects.toThrow(error);
|
||||
});
|
||||
|
||||
it('creates a new instance every time.', async(): Promise<void> => {
|
||||
/* eslint-disable jest/no-conditional-expect */
|
||||
try {
|
||||
await handler.handle();
|
||||
} catch (error: unknown) {
|
||||
expect(BadRequestHttpError.isInstance(error)).toBe(true);
|
||||
// Change the metadata
|
||||
(error as BadRequestHttpError).metadata.add(SOLID_ERROR.terms.target, 'http://example.com/foo');
|
||||
}
|
||||
try {
|
||||
await handler.handle();
|
||||
} catch (error: unknown) {
|
||||
expect(BadRequestHttpError.isInstance(error)).toBe(true);
|
||||
// Metadata should not have the change
|
||||
expect((error as BadRequestHttpError).metadata.has(SOLID_ERROR.terms.target)).toBe(false);
|
||||
}
|
||||
/* eslint-enable jest/no-conditional-expect */
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user