fluxer/packages/api/src/message/tests/MessageEditEmbedReferenceMissingAttachment.test.tsx
2026-02-17 12:22:36 +00:00

72 lines
2.1 KiB
TypeScript

/*
* Copyright (C) 2026 Fluxer Contributors
*
* This file is part of Fluxer.
*
* Fluxer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Fluxer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
*/
import {
createGuild,
createMessageHarness,
createTestAccount,
ensureSessionStarted,
sendMessage,
} from '@fluxer/api/src/message/tests/MessageTestUtils';
import type {ApiTestHarness} from '@fluxer/api/src/test/ApiTestHarness';
import {HTTP_STATUS} from '@fluxer/api/src/test/TestConstants';
import {createBuilder} from '@fluxer/api/src/test/TestRequestBuilder';
import {afterAll, beforeAll, beforeEach, describe, it} from 'vitest';
describe('Message edit embed reference missing attachment', () => {
let harness: ApiTestHarness;
beforeAll(async () => {
harness = await createMessageHarness();
});
beforeEach(async () => {
await harness.reset();
});
afterAll(async () => {
await harness?.shutdown();
});
it('rejects edit with embed referencing non-existent attachment', async () => {
const account = await createTestAccount(harness);
await ensureSessionStarted(harness, account.token);
const guild = await createGuild(harness, account.token, 'Test Guild');
const channelId = guild.system_channel_id!;
const msg = await sendMessage(harness, account.token, channelId, 'Original message');
await createBuilder(harness, account.token)
.patch(`/channels/${channelId}/messages/${msg.id}`)
.body({
content: 'Edited',
embeds: [
{
title: 'Non-existent',
image: {
url: 'attachment://missing.png',
},
},
],
})
.expect(HTTP_STATUS.BAD_REQUEST)
.execute();
});
});