/* Copyright (c) Microsoft Corporation. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import type { TestAttachment, TestCase, TestResult, TestStep } from '@playwright/test/src/reporters/html'; import ansi2html from 'ansi-to-html'; import * as React from 'react'; import { TreeItem } from './treeItem'; import { TabbedPane } from './tabbedPane'; import { msToString } from './uiUtils'; import { AutoChip } from './chip'; import { traceImage } from './images'; import { AttachmentLink } from './links'; import { statusIcon } from './statusIcon'; import './testResultView.css'; const imageDiffNames = ['expected', 'actual', 'diff']; export const TestResultView: React.FC<{ test: TestCase, result: TestResult, }> = ({ result }) => { const { screenshots, videos, traces, otherAttachments, attachmentsMap } = React.useMemo(() => { const attachmentsMap = new Map(); const attachments = result?.attachments || []; const otherAttachments = new Set(attachments); const screenshots = attachments.filter(a => a.contentType.startsWith('image/') && !imageDiffNames.includes(a.name)); const videos = attachments.filter(a => a.name === 'video'); const traces = attachments.filter(a => a.name === 'trace'); for (const a of attachments) attachmentsMap.set(a.name, a); [...screenshots, ...videos, ...traces].forEach(a => otherAttachments.delete(a)); return { attachmentsMap, screenshots, videos, otherAttachments, traces }; }, [ result ]); const expected = attachmentsMap.get('expected'); const actual = attachmentsMap.get('actual'); const diff = attachmentsMap.get('diff'); const hasImages = [actual?.contentType, expected?.contentType, diff?.contentType].some(v => v && /^image\//i.test(v)); return
{result.error && } {!!result.steps.length && {result.steps.map((step, i) => )} } {expected && actual && {hasImages && } {diff && } } {!!screenshots.length && {screenshots.map((a, i) => { return
; })}
} {!!traces.length && {traces.map((a, i) =>
)}
} {!!videos.length && {videos.map((a, i) =>
)}
} {!!otherAttachments.size && {[...otherAttachments].map((a, i) => )} }
; }; const StepTreeItem: React.FC<{ step: TestStep; depth: number, }> = ({ step, depth }) => { return {msToString(step.duration)} {statusIcon(step.error || step.duration === -1 ? 'failed' : 'passed')} {step.title} {step.count > 1 && <> ✕ {step.count}} {step.location && — {step.location.file}:{step.location.line}} } loadChildren={step.steps.length + (step.snippet ? 1 : 0) ? () => { const children = step.steps.map((s, i) => ); if (step.snippet) children.unshift(); return children; } : undefined} depth={depth}>; }; const ImageDiff: React.FunctionComponent<{ actual: TestAttachment, expected: TestAttachment, diff?: TestAttachment, }> = ({ actual, expected, diff }) => { const [selectedTab, setSelectedTab] = React.useState('actual'); const tabs = []; tabs.push({ id: 'actual', title: 'Actual', render: () => }); tabs.push({ id: 'expected', title: 'Expected', render: () => }); if (diff) { tabs.push({ id: 'diff', title: 'Diff', render: () => }); } return
; }; const ErrorMessage: React.FC<{ error: string; }> = ({ error }) => { const html = React.useMemo(() => { const config: any = { bg: 'var(--color-canvas-subtle)', fg: 'var(--color-fg-default)', }; config.colors = ansiColors; return new ansi2html(config).toHtml(escapeHTML(error)); }, [error]); return
; }; const ansiColors = { 0: '#000', 1: '#C00', 2: '#0C0', 3: '#C50', 4: '#00C', 5: '#C0C', 6: '#0CC', 7: '#CCC', 8: '#555', 9: '#F55', 10: '#5F5', 11: '#FF5', 12: '#55F', 13: '#F5F', 14: '#5FF', 15: '#FFF' }; function escapeHTML(text: string): string { return text.replace(/[&"<>]/g, c => ({ '&': '&', '"': '"', '<': '<', '>': '>' }[c]!)); }