mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-29 10:04:36 +02:00
Detect URLs in Actions log output and render them as clickable links, similar to how GitHub Actions handles this. Pre-existing links from ansi_up's OSC 8 parsing are also kept intact. --------- Signed-off-by: silverwind <me@silverwind.io> Co-authored-by: Claude (claude-opus-4-6) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
26 lines
1.7 KiB
TypeScript
26 lines
1.7 KiB
TypeScript
import {renderAnsi} from './ansi.ts';
|
|
|
|
test('renderAnsi', () => {
|
|
expect(renderAnsi('abc')).toEqual('abc');
|
|
expect(renderAnsi('abc\n')).toEqual('abc');
|
|
expect(renderAnsi('abc\r\n')).toEqual('abc');
|
|
expect(renderAnsi('\r')).toEqual('');
|
|
expect(renderAnsi('\rx\rabc')).toEqual('x\nabc');
|
|
expect(renderAnsi('\rabc\rx\r')).toEqual('abc\nx');
|
|
expect(renderAnsi('\x1b[30mblack\x1b[37mwhite')).toEqual('<span class="ansi-black-fg">black</span><span class="ansi-white-fg">white</span>'); // unclosed
|
|
expect(renderAnsi('<script>')).toEqual('<script>');
|
|
expect(renderAnsi('\x1b[1A\x1b[2Ktest\x1b[1B\x1b[1A\x1b[2K')).toEqual('test');
|
|
expect(renderAnsi('\x1b[1A\x1b[2K\rtest\r\x1b[1B\x1b[1A\x1b[2K')).toEqual('test');
|
|
expect(renderAnsi('\x1b[1A\x1b[2Ktest\x1b[1B\x1b[1A\x1b[2K')).toEqual('test');
|
|
expect(renderAnsi('\x1b[1A\x1b[2K\rtest\r\x1b[1B\x1b[1A\x1b[2K')).toEqual('test');
|
|
|
|
// treat "\033[0K" and "\033[0J" (Erase display/line) as "\r", then it will be covered to "\n" finally.
|
|
expect(renderAnsi('a\x1b[Kb\x1b[2Jc')).toEqual('a\nb\nc');
|
|
expect(renderAnsi('\x1b[48;5;88ma\x1b[38;208;48;5;159mb\x1b[m')).toEqual(`<span style="background-color:rgb(135,0,0)">a</span><span style="background-color:rgb(175,255,255)">b</span>`);
|
|
|
|
// URLs in ANSI output become clickable links
|
|
const link = (url: string) => `<a href="${url}" target="_blank">${url}</a>`;
|
|
expect(renderAnsi('Downloading https://github.com/actions/upload-artifact/releases')).toEqual(`Downloading ${link('https://github.com/actions/upload-artifact/releases')}`);
|
|
expect(renderAnsi('\x1b[32mhttps://proxy.golang.org/cached-only\x1b[0m')).toEqual(`<span class="ansi-green-fg">${link('https://proxy.golang.org/cached-only')}</span>`);
|
|
});
|