Spaces:
Running
Running
File size: 13,805 Bytes
e4e0afe e445b51 e4e0afe e445b51 96bdf6c e445b51 e4e0afe e445b51 96bdf6c e445b51 96bdf6c e445b51 b1cfe1b e445b51 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | import { buildImageActionTarget, formatLogTime, ImageOutput } from './image-output';
import { I18nProvider } from '@/lib/i18n';
import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { renderToStaticMarkup } from 'react-dom/server';
const noop = () => {};
const buttonContentPattern = '[\\s\\S]*?';
function renderImageOutput(viewMode: 'grid' | number): string {
return renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={[
{ path: '/api/image/first.png', filename: 'first.png' },
{ path: '/api/image/second.png', filename: 'second.png' }
]}
viewMode={viewMode}
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
canCreateVariant
canReusePrompt
currentMode='generate'
baseImagePreviewUrl={null}
clientPasswordHash={null}
canOpenLogs={false}
/>
</I18nProvider>
);
}
describe('ImageOutput result actions', () => {
it('does not show fixed preview timing or dimensions before real image metadata is known', () => {
const html = renderImageOutput(0);
assert.match(html, /第 1 张 \/ 共 2 张/);
assert.doesNotMatch(html, /预计 8-12 秒/);
assert.doesNotMatch(html, /1024 x 768/);
});
it('uses the localized generated-image alt text when a caller does not override it', () => {
const html = renderImageOutput(0);
assert.match(html, /alt="生成图片输出"/);
assert.doesNotMatch(html, /Generated image output/);
});
it('formats activity timestamps with the selected app locale and preserves invalid diagnostic values', () => {
const timestamp = '2026-05-31T12:15:30.000Z';
assert.equal(formatLogTime(timestamp, 'zh-CN'), new Date(timestamp).toLocaleTimeString('zh-CN'));
assert.equal(formatLogTime(timestamp, 'en-US'), new Date(timestamp).toLocaleTimeString('en-US'));
assert.equal(formatLogTime('not-a-timestamp', 'zh-CN'), 'not-a-timestamp');
});
it('uses the no-image state in the preview header before generation', () => {
const html = renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={null}
viewMode='grid'
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
canCreateVariant={false}
canReusePrompt={false}
currentMode='generate'
baseImagePreviewUrl={null}
clientPasswordHash={null}
canOpenLogs={false}
/>
</I18nProvider>
);
assert.match(html, /还没有生成图像/);
assert.match(html, /写下灵感后点击生成/);
assert.match(html, /workbench-panel[^"]*h-fit xl:h-full[\s\S]*preview-gallery-board/);
assert.match(html, /min-h-\[220px\] shrink-0 sm:min-h-\[248px\] lg:min-h-\[272px\] xl:min-h-0 xl:flex-1/);
assert.doesNotMatch(html, /min-h-\[20rem\]/);
assert.match(html, /max-w-\[30rem\]/);
assert.match(html, /items-center justify-center/);
assert.match(html, /text-center/);
assert.doesNotMatch(html, /2xl:max-w-\[34rem\]/);
assert.doesNotMatch(html, /photo-paper relative flex aspect-\[8\/5\]/);
assert.doesNotMatch(html, /max-w-\[780px\] flex-col justify-between/);
assert.doesNotMatch(html, /<img/);
assert.doesNotMatch(html, /workbench-sample/);
assert.doesNotMatch(html, /灵感样张/);
assert.doesNotMatch(html, /1024 x 768/);
for (const action of ['继续编辑', '按相同参数再次生成', '复用提示词', '对比', '下载']) {
assert.match(
html,
new RegExp(
`<button[^>]*disabled=""[^>]*>${buttonContentPattern}${action}${buttonContentPattern}</button>`
)
);
}
});
it('keeps the full preview stage height after images exist', () => {
const html = renderImageOutput(0);
assert.match(html, /workbench-panel[^"]*h-full[\s\S]*preview-gallery-board/);
assert.match(html, /min-h-\[300px\] flex-1 sm:min-h-\[420px\] lg:min-h-\[520px\]/);
assert.doesNotMatch(html, /min-h-\[220px\] shrink-0 sm:min-h-\[248px\] lg:min-h-\[272px\]/);
});
it('uses an edit reference placeholder instead of the sample image in edit mode', () => {
const html = renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={null}
viewMode='grid'
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
canCreateVariant={false}
canReusePrompt={false}
currentMode='edit'
baseImagePreviewUrl={null}
clientPasswordHash={null}
canOpenLogs={false}
/>
</I18nProvider>
);
assert.match(html, /先放入参考图/);
assert.match(html, /等待参考图/);
assert.doesNotMatch(html, /min-h-\[18rem\]/);
assert.match(html, /max-w-\[30rem\]/);
assert.doesNotMatch(html, /photo-paper relative flex aspect-\[4\/3\]/);
assert.doesNotMatch(html, /灵感样张/);
});
it('shows the edit reference image before an edit result exists', () => {
const html = renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={null}
viewMode='grid'
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
canCreateVariant={false}
canReusePrompt={false}
currentMode='edit'
baseImagePreviewUrl='data:image/png;base64,reference'
clientPasswordHash={null}
canOpenLogs={false}
/>
</I18nProvider>
);
assert.match(html, /参考图已就绪/);
assert.match(html, /图生图参考图预览/);
assert.match(html, /参考图/);
assert.doesNotMatch(html, /灵感样张/);
});
it('requires an explicit selection before single-image actions in the multi-image grid view', () => {
const html = renderImageOutput('grid');
assert.match(html, /aria-label="选择第 1 张图片"/);
assert.match(html, /aria-label="选择第 2 张图片"/);
assert.match(html, /请选择一张图片/);
assert.doesNotMatch(html, /第 1 张 \/ 共 2 张/);
for (const action of ['继续编辑', '对比', '下载', '分享']) {
assert.match(
html,
new RegExp(
`<button[^>]*disabled=""[^>]*>${buttonContentPattern}${action}${buttonContentPattern}</button>`
)
);
}
});
it('keeps single-image actions available after selecting a multi-image result', () => {
const html = renderImageOutput(1);
assert.match(html, /第 2 张 \/ 共 2 张/);
for (const action of ['继续编辑', '对比', '下载', '分享']) {
assert.match(
html,
new RegExp(`<button[^>]*>${buttonContentPattern}${action}${buttonContentPattern}</button>`)
);
assert.doesNotMatch(
html,
new RegExp(
`<button[^>]*disabled=""[^>]*>${buttonContentPattern}${action}${buttonContentPattern}</button>`
)
);
}
});
it('builds selected image action targets with storage mode', () => {
assert.deepEqual(
buildImageActionTarget({
path: 'data:image/png;base64,selected',
filename: 'selected.png',
storageMode: 'indexeddb'
}),
{ filename: 'selected.png', storageMode: 'indexeddb' }
);
assert.deepEqual(
buildImageActionTarget({
path: '/api/image/fs.png',
filename: 'fs.png'
}),
{ filename: 'fs.png' }
);
assert.equal(buildImageActionTarget(null), null);
});
it('keeps compare disabled for single-image results', () => {
const html = renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={[{ path: '/api/image/only.png', filename: 'only.png' }]}
viewMode={0}
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
canCreateVariant
canReusePrompt
currentMode='generate'
baseImagePreviewUrl={null}
clientPasswordHash={null}
canOpenLogs={false}
/>
</I18nProvider>
);
assert.match(
html,
new RegExp(`<button[^>]*disabled=""[^>]*>${buttonContentPattern}对比${buttonContentPattern}</button>`)
);
});
it('enables compare for single-image results with a previous history image', () => {
const html = renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={[{ path: '/api/image/only.png', filename: 'only.png' }]}
compareImage={{ path: '/api/image/previous.png', filename: 'previous.png' }}
viewMode={0}
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
canCreateVariant
canReusePrompt
currentMode='generate'
baseImagePreviewUrl={null}
clientPasswordHash={null}
canOpenLogs={false}
/>
</I18nProvider>
);
assert.match(
html,
new RegExp(`<button(?![^>]*disabled="")[^>]*>${buttonContentPattern}对比${buttonContentPattern}</button>`)
);
});
it('uses user-facing generation activity copy for the activity entry', () => {
const html = renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={[{ path: '/api/image/only.png', filename: 'only.png' }]}
viewMode={0}
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
canCreateVariant
canReusePrompt
currentMode='generate'
baseImagePreviewUrl={null}
clientPasswordHash='test-hash'
canOpenLogs
/>
</I18nProvider>
);
assert.match(html, /查看动态/);
assert.doesNotMatch(html, /查看日志/);
});
it('shows an explicit failure state with retry near the canvas', () => {
const html = renderToStaticMarkup(
<I18nProvider>
<ImageOutput
imageBatch={null}
viewMode='grid'
onViewChange={noop}
isLoading={false}
onSendToEdit={noop}
onDownloadImage={noop}
onShareImage={noop}
onCreateVariant={noop}
onReusePrompt={noop}
failureMessage='上游或 API 中转站异常。请稍后重试。'
onRetry={noop}
canCreateVariant={false}
canReusePrompt={false}
currentMode='generate'
baseImagePreviewUrl={null}
clientPasswordHash={null}
canOpenLogs={false}
/>
</I18nProvider>
);
assert.match(html, /生成失败/);
assert.match(html, /上游或 API 中转站异常。请稍后重试。/);
assert.match(html, new RegExp(`<button[^>]*>${buttonContentPattern}重试生成${buttonContentPattern}</button>`));
assert.doesNotMatch(html, /灵感样张/);
});
});
|