/** * 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 * as React from 'react'; import './attachmentsTab.css'; import { ImageDiffView } from '@web/components/imageDiffView'; import type { TestAttachment } from '@web/components/imageDiffView'; import type { ActionTraceEventInContext, MultiTraceModel } from './modelUtil'; export const AttachmentsTab: React.FunctionComponent<{ model: MultiTraceModel | undefined, }> = ({ model }) => { if (!model) return null; return
{ model.actions.map((action, index) => ) }
; }; export const AttachmentsSection: React.FunctionComponent<{ action: ActionTraceEventInContext | undefined, }> = ({ action }) => { if (!action) return null; const expected = action.attachments?.find(a => a.name.endsWith('-expected.png') && (a.path || a.sha1)) as TestAttachment | undefined; const actual = action.attachments?.find(a => a.name.endsWith('-actual.png') && (a.path || a.sha1)) as TestAttachment | undefined; const diff = action.attachments?.find(a => a.name.endsWith('-diff.png') && (a.path || a.sha1)) as TestAttachment | undefined; const screenshots = new Set(action.attachments?.filter(a => a.contentType.startsWith('image/'))); const otherAttachments = new Set(action.attachments || []); screenshots.forEach(a => otherAttachments.delete(a)); const traceUrl = action.context.traceUrl; return <> {expected && actual &&
Image diff
} {expected && actual && } {screenshots.size ?
Screenshots
: undefined} {[...screenshots].map((a, i) => { return
{a.name}
; })} {otherAttachments.size ?
Attachments
: undefined} {[...otherAttachments].map((a, i) => { return
{a.name}
; })} ; }; function attachmentURL(traceUrl: string, attachment: NonNullable[0]) { if (attachment.sha1) return 'sha1/' + attachment.sha1 + '?trace=' + encodeURIComponent(traceUrl); return 'file?path=' + encodeURIComponent(attachment.path!); }