mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 15:31:13 -05:00
Make test results copyable
Add Markdown formatting utilities for test results, wire up clipboard copy in IntegrationTestRunner, and export new formatters. Introduce formatters.ts, extend index.ts exports, and implement copy all / copy failed / per-test copy functionality with updated UI.
This commit is contained in:
@@ -14,8 +14,8 @@ import { ScrollArea } from '@/components/ui/scroll-area';
|
||||
import { Badge } from '@/components/ui/badge';
|
||||
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from '@/components/ui/collapsible';
|
||||
import { useSuperuserGuard } from '@/hooks/useSuperuserGuard';
|
||||
import { IntegrationTestRunner as TestRunner, allTestSuites, type TestResult } from '@/lib/integrationTests';
|
||||
import { Play, Square, Download, ChevronDown, CheckCircle2, XCircle, Clock, SkipForward } from 'lucide-react';
|
||||
import { IntegrationTestRunner as TestRunner, allTestSuites, type TestResult, formatResultsAsMarkdown, formatSingleTestAsMarkdown } from '@/lib/integrationTests';
|
||||
import { Play, Square, Download, ChevronDown, CheckCircle2, XCircle, Clock, SkipForward, Copy, ClipboardX } from 'lucide-react';
|
||||
import { toast } from 'sonner';
|
||||
import { handleError } from '@/lib/errorHandler';
|
||||
|
||||
@@ -105,6 +105,38 @@ export function IntegrationTestRunner() {
|
||||
toast.success('Test results exported');
|
||||
}, [runner]);
|
||||
|
||||
const copyAllResults = useCallback(async () => {
|
||||
const summary = runner.getSummary();
|
||||
const results = runner.getResults();
|
||||
|
||||
const markdown = formatResultsAsMarkdown(results, summary);
|
||||
|
||||
await navigator.clipboard.writeText(markdown);
|
||||
toast.success('All test results copied to clipboard');
|
||||
}, [runner]);
|
||||
|
||||
const copyFailedTests = useCallback(async () => {
|
||||
const summary = runner.getSummary();
|
||||
const failedResults = runner.getResults().filter(r => r.status === 'fail');
|
||||
|
||||
if (failedResults.length === 0) {
|
||||
toast.info('No failed tests to copy');
|
||||
return;
|
||||
}
|
||||
|
||||
const markdown = formatResultsAsMarkdown(failedResults, summary, true);
|
||||
|
||||
await navigator.clipboard.writeText(markdown);
|
||||
toast.success(`${failedResults.length} failed test(s) copied to clipboard`);
|
||||
}, [runner]);
|
||||
|
||||
const copyTestResult = useCallback(async (result: TestResult) => {
|
||||
const markdown = formatSingleTestAsMarkdown(result);
|
||||
|
||||
await navigator.clipboard.writeText(markdown);
|
||||
toast.success('Test result copied to clipboard');
|
||||
}, []);
|
||||
|
||||
// Guard is handled by the route/page, no loading state needed here
|
||||
|
||||
const summary = runner.getSummary();
|
||||
@@ -166,10 +198,22 @@ export function IntegrationTestRunner() {
|
||||
</Button>
|
||||
)}
|
||||
{results.length > 0 && !isRunning && (
|
||||
<Button onClick={exportResults} variant="outline">
|
||||
<Download className="w-4 h-4 mr-2" />
|
||||
Export Results
|
||||
</Button>
|
||||
<>
|
||||
<Button onClick={exportResults} variant="outline">
|
||||
<Download className="w-4 h-4 mr-2" />
|
||||
Export JSON
|
||||
</Button>
|
||||
<Button onClick={copyAllResults} variant="outline">
|
||||
<Copy className="w-4 h-4 mr-2" />
|
||||
Copy All
|
||||
</Button>
|
||||
{summary.failed > 0 && (
|
||||
<Button onClick={copyFailedTests} variant="outline">
|
||||
<ClipboardX className="w-4 h-4 mr-2" />
|
||||
Copy Failed ({summary.failed})
|
||||
</Button>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
|
||||
@@ -236,6 +280,14 @@ export function IntegrationTestRunner() {
|
||||
<Badge variant="outline" className="text-xs">
|
||||
{result.duration}ms
|
||||
</Badge>
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
className="h-6 w-6 p-0"
|
||||
onClick={() => copyTestResult(result)}
|
||||
>
|
||||
<Copy className="h-3 w-3" />
|
||||
</Button>
|
||||
{(result.error || result.details) && (
|
||||
<CollapsibleTrigger asChild>
|
||||
<Button variant="ghost" size="sm" className="h-6 w-6 p-0">
|
||||
|
||||
Reference in New Issue
Block a user