2025-05-15 23:51:53 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { render } from 'ink-testing-library';
|
|
|
|
|
import { DiffRenderer } from './DiffRenderer.js';
|
|
|
|
|
import * as CodeColorizer from '../../utils/CodeColorizer.js';
|
|
|
|
|
import { vi } from 'vitest';
|
|
|
|
|
|
|
|
|
|
describe('<DiffRenderer />', () => {
|
|
|
|
|
const mockColorizeCode = vi.spyOn(CodeColorizer, 'colorizeCode');
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
mockColorizeCode.mockClear();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should call colorizeCode with correct language for new file with known extension', () => {
|
|
|
|
|
const newFileDiffContent = `
|
|
|
|
|
diff --git a/test.py b/test.py
|
|
|
|
|
new file mode 100644
|
|
|
|
|
index 0000000..e69de29
|
|
|
|
|
--- /dev/null
|
|
|
|
|
+++ b/test.py
|
|
|
|
|
@@ -0,0 +1 @@
|
|
|
|
|
+print("hello world")
|
|
|
|
|
`;
|
|
|
|
|
render(
|
|
|
|
|
<DiffRenderer diffContent={newFileDiffContent} filename="test.py" />,
|
|
|
|
|
);
|
|
|
|
|
expect(mockColorizeCode).toHaveBeenCalledWith(
|
|
|
|
|
'print("hello world")',
|
|
|
|
|
'python',
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should call colorizeCode with null language for new file with unknown extension', () => {
|
|
|
|
|
const newFileDiffContent = `
|
|
|
|
|
diff --git a/test.unknown b/test.unknown
|
|
|
|
|
new file mode 100644
|
|
|
|
|
index 0000000..e69de29
|
|
|
|
|
--- /dev/null
|
|
|
|
|
+++ b/test.unknown
|
|
|
|
|
@@ -0,0 +1 @@
|
|
|
|
|
+some content
|
|
|
|
|
`;
|
|
|
|
|
render(
|
|
|
|
|
<DiffRenderer diffContent={newFileDiffContent} filename="test.unknown" />,
|
|
|
|
|
);
|
|
|
|
|
expect(mockColorizeCode).toHaveBeenCalledWith('some content', null);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should call colorizeCode with null language for new file if no filename is provided', () => {
|
|
|
|
|
const newFileDiffContent = `
|
|
|
|
|
diff --git a/test.txt b/test.txt
|
|
|
|
|
new file mode 100644
|
|
|
|
|
index 0000000..e69de29
|
|
|
|
|
--- /dev/null
|
|
|
|
|
+++ b/test.txt
|
|
|
|
|
@@ -0,0 +1 @@
|
|
|
|
|
+some text content
|
|
|
|
|
`;
|
|
|
|
|
render(<DiffRenderer diffContent={newFileDiffContent} />);
|
|
|
|
|
expect(mockColorizeCode).toHaveBeenCalledWith('some text content', null);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should render diff content for existing file (not calling colorizeCode directly for the whole block)', () => {
|
|
|
|
|
const existingFileDiffContent = `
|
|
|
|
|
diff --git a/test.txt b/test.txt
|
|
|
|
|
index 0000001..0000002 100644
|
|
|
|
|
--- a/test.txt
|
|
|
|
|
+++ b/test.txt
|
|
|
|
|
@@ -1 +1 @@
|
|
|
|
|
-old line
|
|
|
|
|
+new line
|
|
|
|
|
`;
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<DiffRenderer
|
|
|
|
|
diffContent={existingFileDiffContent}
|
|
|
|
|
filename="test.txt"
|
|
|
|
|
/>,
|
|
|
|
|
);
|
|
|
|
|
// colorizeCode is used internally by the line-by-line rendering, not for the whole block
|
|
|
|
|
expect(mockColorizeCode).not.toHaveBeenCalledWith(
|
|
|
|
|
expect.stringContaining('old line'),
|
|
|
|
|
expect.anything(),
|
|
|
|
|
);
|
|
|
|
|
expect(mockColorizeCode).not.toHaveBeenCalledWith(
|
|
|
|
|
expect.stringContaining('new line'),
|
|
|
|
|
expect.anything(),
|
|
|
|
|
);
|
|
|
|
|
const output = lastFrame();
|
|
|
|
|
const lines = output!.split('\n');
|
2025-05-19 23:44:24 -07:00
|
|
|
expect(lines[0]).toBe('1 - old line');
|
|
|
|
|
expect(lines[1]).toBe('1 + new line');
|
2025-05-15 23:51:53 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle diff with only header and no changes', () => {
|
|
|
|
|
const noChangeDiff = `diff --git a/file.txt b/file.txt
|
|
|
|
|
index 1234567..1234567 100644
|
|
|
|
|
--- a/file.txt
|
|
|
|
|
+++ b/file.txt
|
|
|
|
|
`;
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<DiffRenderer diffContent={noChangeDiff} filename="file.txt" />,
|
|
|
|
|
);
|
|
|
|
|
expect(lastFrame()).toContain('No changes detected');
|
|
|
|
|
expect(mockColorizeCode).not.toHaveBeenCalled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle empty diff content', () => {
|
|
|
|
|
const { lastFrame } = render(<DiffRenderer diffContent="" />);
|
|
|
|
|
expect(lastFrame()).toContain('No diff content');
|
|
|
|
|
expect(mockColorizeCode).not.toHaveBeenCalled();
|
|
|
|
|
});
|
2025-05-19 23:44:24 -07:00
|
|
|
|
|
|
|
|
it('should render a gap indicator for skipped lines', () => {
|
|
|
|
|
const diffWithGap = `
|
|
|
|
|
diff --git a/file.txt b/file.txt
|
|
|
|
|
index 123..456 100644
|
|
|
|
|
--- a/file.txt
|
|
|
|
|
+++ b/file.txt
|
|
|
|
|
@@ -1,2 +1,2 @@
|
|
|
|
|
context line 1
|
|
|
|
|
-deleted line
|
|
|
|
|
+added line
|
|
|
|
|
@@ -10,2 +10,2 @@
|
|
|
|
|
context line 10
|
|
|
|
|
context line 11
|
|
|
|
|
`;
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<DiffRenderer diffContent={diffWithGap} filename="file.txt" />,
|
|
|
|
|
);
|
|
|
|
|
const output = lastFrame();
|
|
|
|
|
expect(output).toContain('═'); // Check for the border character used in the gap
|
|
|
|
|
|
|
|
|
|
// Verify that lines before and after the gap are rendered
|
|
|
|
|
expect(output).toContain('context line 1');
|
|
|
|
|
expect(output).toContain('added line');
|
|
|
|
|
expect(output).toContain('context line 10');
|
|
|
|
|
});
|
2025-05-25 10:26:51 -07:00
|
|
|
|
|
|
|
|
it('should not render a gap indicator for small gaps (<= MAX_CONTEXT_LINES_WITHOUT_GAP)', () => {
|
|
|
|
|
const diffWithSmallGap = `
|
|
|
|
|
diff --git a/file.txt b/file.txt
|
|
|
|
|
index abc..def 100644
|
|
|
|
|
--- a/file.txt
|
|
|
|
|
+++ b/file.txt
|
|
|
|
|
@@ -1,5 +1,5 @@
|
|
|
|
|
context line 1
|
|
|
|
|
context line 2
|
|
|
|
|
context line 3
|
|
|
|
|
context line 4
|
|
|
|
|
context line 5
|
|
|
|
|
@@ -11,5 +11,5 @@
|
|
|
|
|
context line 11
|
|
|
|
|
context line 12
|
|
|
|
|
context line 13
|
|
|
|
|
context line 14
|
|
|
|
|
context line 15
|
|
|
|
|
`;
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<DiffRenderer diffContent={diffWithSmallGap} filename="file.txt" />,
|
|
|
|
|
);
|
|
|
|
|
const output = lastFrame();
|
|
|
|
|
expect(output).not.toContain('═'); // Ensure no separator is rendered
|
|
|
|
|
|
|
|
|
|
// Verify that lines before and after the gap are rendered
|
|
|
|
|
expect(output).toContain('context line 5');
|
|
|
|
|
expect(output).toContain('context line 11');
|
|
|
|
|
});
|
2025-06-10 18:05:44 +00:00
|
|
|
|
|
|
|
|
it('should correctly render a diff with multiple hunks and a gap indicator', () => {
|
|
|
|
|
const diffWithMultipleHunks = `
|
|
|
|
|
diff --git a/multi.js b/multi.js
|
|
|
|
|
index 123..789 100644
|
|
|
|
|
--- a/multi.js
|
|
|
|
|
+++ b/multi.js
|
|
|
|
|
@@ -1,3 +1,3 @@
|
|
|
|
|
console.log('first hunk');
|
|
|
|
|
-const oldVar = 1;
|
|
|
|
|
+const newVar = 1;
|
|
|
|
|
console.log('end of first hunk');
|
|
|
|
|
@@ -20,3 +20,3 @@
|
|
|
|
|
console.log('second hunk');
|
|
|
|
|
-const anotherOld = 'test';
|
|
|
|
|
+const anotherNew = 'test';
|
|
|
|
|
console.log('end of second hunk');
|
|
|
|
|
`;
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<DiffRenderer diffContent={diffWithMultipleHunks} filename="multi.js" />,
|
|
|
|
|
);
|
|
|
|
|
const output = lastFrame();
|
|
|
|
|
|
|
|
|
|
// Check for content from the first hunk
|
|
|
|
|
expect(output).toContain("1 console.log('first hunk');");
|
|
|
|
|
expect(output).toContain('2 - const oldVar = 1;');
|
|
|
|
|
expect(output).toContain('2 + const newVar = 1;');
|
|
|
|
|
expect(output).toContain("3 console.log('end of first hunk');");
|
|
|
|
|
|
|
|
|
|
// Check for the gap indicator between hunks
|
|
|
|
|
expect(output).toContain('═');
|
|
|
|
|
|
|
|
|
|
// Check for content from the second hunk
|
|
|
|
|
expect(output).toContain("20 console.log('second hunk');");
|
|
|
|
|
expect(output).toContain("21 - const anotherOld = 'test';");
|
|
|
|
|
expect(output).toContain("21 + const anotherNew = 'test';");
|
|
|
|
|
expect(output).toContain("22 console.log('end of second hunk');");
|
|
|
|
|
});
|
2025-06-14 21:27:53 +01:00
|
|
|
|
|
|
|
|
it('should correctly render a diff with a SVN diff format', () => {
|
|
|
|
|
const newFileDiff = `
|
|
|
|
|
fileDiff Index: file.txt
|
|
|
|
|
===================================================================
|
|
|
|
|
--- a/file.txt Current
|
|
|
|
|
+++ b/file.txt Proposed
|
|
|
|
|
--- a/multi.js
|
|
|
|
|
+++ b/multi.js
|
|
|
|
|
@@ -1,1 +1,1 @@
|
|
|
|
|
-const oldVar = 1;
|
|
|
|
|
+const newVar = 1;
|
|
|
|
|
@@ -20,1 +20,1 @@
|
|
|
|
|
-const anotherOld = 'test';
|
|
|
|
|
+const anotherNew = 'test';
|
|
|
|
|
\\ No newline at end of file
|
|
|
|
|
`;
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<DiffRenderer diffContent={newFileDiff} filename="TEST" />,
|
|
|
|
|
);
|
|
|
|
|
const output = lastFrame();
|
|
|
|
|
|
|
|
|
|
expect(output).toContain('1 - const oldVar = 1;');
|
|
|
|
|
expect(output).toContain('1 + const newVar = 1;');
|
|
|
|
|
expect(output).toContain('═');
|
|
|
|
|
expect(output).toContain("20 - const anotherOld = 'test';");
|
|
|
|
|
expect(output).toContain("20 + const anotherNew = 'test';");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should correctly render a new file with no file extension correctly', () => {
|
|
|
|
|
const newFileDiff = `
|
|
|
|
|
fileDiff Index: Dockerfile
|
|
|
|
|
===================================================================
|
|
|
|
|
--- Dockerfile Current
|
|
|
|
|
+++ Dockerfile Proposed
|
|
|
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
+FROM node:14
|
|
|
|
|
+RUN npm install
|
|
|
|
|
+RUN npm run build
|
|
|
|
|
\\ No newline at end of file
|
|
|
|
|
`;
|
|
|
|
|
const { lastFrame } = render(
|
|
|
|
|
<DiffRenderer diffContent={newFileDiff} filename="Dockerfile" />,
|
|
|
|
|
);
|
|
|
|
|
const output = lastFrame();
|
|
|
|
|
|
|
|
|
|
expect(output).toContain('1 FROM node:14');
|
|
|
|
|
expect(output).toContain('2 RUN npm install');
|
|
|
|
|
expect(output).toContain('3 RUN npm run build');
|
|
|
|
|
});
|
2025-05-15 23:51:53 -07:00
|
|
|
});
|