Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 13s
Build & Deploy / 🧪 QA (push) Successful in 2m51s
Build & Deploy / 🏗️ Build (push) Successful in 5m32s
Build & Deploy / 🚀 Deploy (push) Successful in 16s
Build & Deploy / 🔔 Notify (push) Successful in 1s
Build & Deploy / 🧪 Post-Deploy Verification (push) Failing after 5m12s
This commit reapplies fixes directly to main after reverting an accidental feature branch merge. chore(release): bump version to 2.2.6
95 lines
3.3 KiB
TypeScript
95 lines
3.3 KiB
TypeScript
import { describe, it, expect, beforeAll } from 'vitest';
|
||
|
||
const BASE_URL =
|
||
process.env.TEST_URL || process.env.NEXT_PUBLIC_BASE_URL || 'http://localhost:3000';
|
||
|
||
describe('OG Image Generation', () => {
|
||
const locales = ['de', 'en'];
|
||
const productSlugs = ['nay2y'];
|
||
|
||
let isServerUp = false;
|
||
|
||
beforeAll(async () => {
|
||
try {
|
||
const response = await fetch(`${BASE_URL}/health`).catch(() => null);
|
||
if (response && response.ok) {
|
||
const text = await response.text();
|
||
if (text.includes('OK')) {
|
||
isServerUp = true;
|
||
return;
|
||
}
|
||
}
|
||
console.log(
|
||
`\n⚠️ KLZ Application not detected at ${BASE_URL}. Skipping integration tests.\n`,
|
||
);
|
||
} catch (e) {
|
||
isServerUp = false;
|
||
}
|
||
});
|
||
async function verifyImageResponse(response: Response) {
|
||
expect(response.status, `Failed to fetch OG image: ${response.url}`).toBe(200);
|
||
const contentType = response.headers.get('content-type');
|
||
expect(contentType, `Incorrect content type: ${contentType}`).toContain('image/png');
|
||
|
||
const buffer = await response.arrayBuffer();
|
||
const bytes = new Uint8Array(buffer);
|
||
|
||
// Check for PNG signature: 89 50 4E 47 0D 0A 1A 0A
|
||
expect(bytes[0]).toBe(0x89);
|
||
expect(bytes[1]).toBe(0x50);
|
||
expect(bytes[2]).toBe(0x4e);
|
||
expect(bytes[3]).toBe(0x47);
|
||
|
||
// Check that the image is not empty and has a reasonable size
|
||
expect(bytes.length, `Image size too small: ${bytes.length} bytes`).toBeGreaterThan(4000);
|
||
}
|
||
|
||
locales.forEach((locale) => {
|
||
it(`should generate main OG image for ${locale}`, async ({ skip }) => {
|
||
if (!isServerUp) skip();
|
||
const url = `${BASE_URL}/${locale}/opengraph-image`;
|
||
const response = await fetch(url);
|
||
await verifyImageResponse(response);
|
||
}, 30000);
|
||
|
||
it(`should generate product OG image for ${locale} with slug ${productSlugs[0]}`, async ({
|
||
skip,
|
||
}) => {
|
||
if (!isServerUp) skip();
|
||
const url = `${BASE_URL}/${locale}/api/og/product?slug=${productSlugs[0]}`;
|
||
const response = await fetch(url);
|
||
await verifyImageResponse(response);
|
||
}, 30000);
|
||
|
||
it(`should return 400 for product OG image without slug in ${locale}`, async ({ skip }) => {
|
||
if (!isServerUp) skip();
|
||
const url = `${BASE_URL}/${locale}/api/og/product`;
|
||
const response = await fetch(url);
|
||
expect(response.status).toBe(400);
|
||
}, 30000);
|
||
});
|
||
|
||
it('should generate static blog overview OG image', async ({ skip }) => {
|
||
if (!isServerUp) skip();
|
||
const url = `${BASE_URL}/de/blog/opengraph-image`;
|
||
const response = await fetch(url);
|
||
await verifyImageResponse(response);
|
||
}, 30000);
|
||
|
||
it('should generate dynamic blog post OG image', async ({ skip }) => {
|
||
if (!isServerUp) skip();
|
||
// Assuming 'hello-world' or a newly created post slug.
|
||
// If it 404s, it still tests the routing, though 200 is expected for an actual post.
|
||
const url = `${BASE_URL}/de/blog/hello-world/opengraph-image`;
|
||
const response = await fetch(url);
|
||
// Even if the post "hello-world" doesn't exist and returns 404 in some environments,
|
||
// we should at least check it doesn't 500. We'll accept 200 or 404 as valid "working" states
|
||
// vs a 500 compilation/satori error.
|
||
expect([200, 404]).toContain(response.status);
|
||
|
||
if (response.status === 200) {
|
||
await verifyImageResponse(response);
|
||
}
|
||
}, 30000);
|
||
});
|