feat: commit push/pull/fetch and others
This commit is contained in:
@@ -98,6 +98,11 @@ export interface GitLfsPruneResult {
|
|||||||
error?: string;
|
error?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface GitActionResult {
|
||||||
|
success: boolean;
|
||||||
|
error?: string;
|
||||||
|
}
|
||||||
|
|
||||||
let gitEngineInstance: GitEngine | null = null;
|
let gitEngineInstance: GitEngine | null = null;
|
||||||
|
|
||||||
export function getGitEngine(): GitEngine {
|
export function getGitEngine(): GitEngine {
|
||||||
@@ -274,6 +279,67 @@ export class GitEngine {
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fetch(projectPath: string): Promise<GitActionResult> {
|
||||||
|
const git = simpleGit(projectPath);
|
||||||
|
try {
|
||||||
|
await git.fetch(['--prune']);
|
||||||
|
return { success: true };
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
error: error instanceof Error ? error.message : 'Failed to fetch remote updates.',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async pull(projectPath: string): Promise<GitActionResult> {
|
||||||
|
const git = simpleGit(projectPath);
|
||||||
|
try {
|
||||||
|
await git.pull();
|
||||||
|
return { success: true };
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
error: error instanceof Error ? error.message : 'Failed to pull remote changes.',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async push(projectPath: string): Promise<GitActionResult> {
|
||||||
|
const git = simpleGit(projectPath);
|
||||||
|
try {
|
||||||
|
await git.push();
|
||||||
|
return { success: true };
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
error: error instanceof Error ? error.message : 'Failed to push local commits.',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async commitAll(projectPath: string, message: string): Promise<GitActionResult> {
|
||||||
|
const normalizedMessage = message.trim();
|
||||||
|
if (!normalizedMessage) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
error: 'Commit message is required.',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const git = simpleGit(projectPath);
|
||||||
|
try {
|
||||||
|
await git.add(['-A']);
|
||||||
|
await git.commit(normalizedMessage);
|
||||||
|
return { success: true };
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
error: error instanceof Error ? error.message : 'Failed to create commit.',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async ensureGitignore(projectPath: string): Promise<GitIgnoreEnsureResult> {
|
async ensureGitignore(projectPath: string): Promise<GitIgnoreEnsureResult> {
|
||||||
const gitignorePath = path.join(projectPath, '.gitignore');
|
const gitignorePath = path.join(projectPath, '.gitignore');
|
||||||
|
|
||||||
|
|||||||
@@ -63,6 +63,26 @@ export function registerIpcHandlers(): void {
|
|||||||
return engine.getHistory(projectPath, limit);
|
return engine.getHistory(projectPath, limit);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
safeHandle('git:fetch', async (_, projectPath: string) => {
|
||||||
|
const engine = getGitEngine();
|
||||||
|
return engine.fetch(projectPath);
|
||||||
|
});
|
||||||
|
|
||||||
|
safeHandle('git:pull', async (_, projectPath: string) => {
|
||||||
|
const engine = getGitEngine();
|
||||||
|
return engine.pull(projectPath);
|
||||||
|
});
|
||||||
|
|
||||||
|
safeHandle('git:push', async (_, projectPath: string) => {
|
||||||
|
const engine = getGitEngine();
|
||||||
|
return engine.push(projectPath);
|
||||||
|
});
|
||||||
|
|
||||||
|
safeHandle('git:commitAll', async (_, projectPath: string, message: string) => {
|
||||||
|
const engine = getGitEngine();
|
||||||
|
return engine.commitAll(projectPath, message);
|
||||||
|
});
|
||||||
|
|
||||||
safeHandle('git:init', async (event, projectPath: string, remoteUrl?: string) => {
|
safeHandle('git:init', async (event, projectPath: string, remoteUrl?: string) => {
|
||||||
const engine = getGitEngine();
|
const engine = getGitEngine();
|
||||||
return engine.initializeRepo(projectPath, remoteUrl, (progress) => {
|
return engine.initializeRepo(projectPath, remoteUrl, (progress) => {
|
||||||
|
|||||||
@@ -13,6 +13,10 @@ export const electronAPI: ElectronAPI = {
|
|||||||
getDiff: (projectPath: string, filePath: string) => ipcRenderer.invoke('git:diff', projectPath, filePath),
|
getDiff: (projectPath: string, filePath: string) => ipcRenderer.invoke('git:diff', projectPath, filePath),
|
||||||
getDiffContent: (projectPath: string, filePath: string) => ipcRenderer.invoke('git:diffContent', projectPath, filePath),
|
getDiffContent: (projectPath: string, filePath: string) => ipcRenderer.invoke('git:diffContent', projectPath, filePath),
|
||||||
getHistory: (projectPath: string, limit?: number) => ipcRenderer.invoke('git:history', projectPath, limit),
|
getHistory: (projectPath: string, limit?: number) => ipcRenderer.invoke('git:history', projectPath, limit),
|
||||||
|
fetch: (projectPath: string) => ipcRenderer.invoke('git:fetch', projectPath),
|
||||||
|
pull: (projectPath: string) => ipcRenderer.invoke('git:pull', projectPath),
|
||||||
|
push: (projectPath: string) => ipcRenderer.invoke('git:push', projectPath),
|
||||||
|
commitAll: (projectPath: string, message: string) => ipcRenderer.invoke('git:commitAll', projectPath, message),
|
||||||
ensureGitignore: (projectPath: string) => ipcRenderer.invoke('git:ensureGitignore', projectPath),
|
ensureGitignore: (projectPath: string) => ipcRenderer.invoke('git:ensureGitignore', projectPath),
|
||||||
pruneLfs: (projectPath: string, options?: { dryRun?: boolean; verifyRemote?: boolean }) => ipcRenderer.invoke('git:pruneLfs', projectPath, options),
|
pruneLfs: (projectPath: string, options?: { dryRun?: boolean; verifyRemote?: boolean }) => ipcRenderer.invoke('git:pruneLfs', projectPath, options),
|
||||||
init: (projectPath: string, remoteUrl?: string) => {
|
init: (projectPath: string, remoteUrl?: string) => {
|
||||||
|
|||||||
@@ -293,6 +293,11 @@ export interface GitLfsPruneResult {
|
|||||||
error?: string;
|
error?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface GitActionResult {
|
||||||
|
success: boolean;
|
||||||
|
error?: string;
|
||||||
|
}
|
||||||
|
|
||||||
// Post-Media Link types
|
// Post-Media Link types
|
||||||
export interface MediaLinkData {
|
export interface MediaLinkData {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -370,6 +375,10 @@ export interface ElectronAPI {
|
|||||||
getDiff: (projectPath: string, filePath: string) => Promise<GitDiffDto>;
|
getDiff: (projectPath: string, filePath: string) => Promise<GitDiffDto>;
|
||||||
getDiffContent: (projectPath: string, filePath: string) => Promise<GitDiffContentDto>;
|
getDiffContent: (projectPath: string, filePath: string) => Promise<GitDiffContentDto>;
|
||||||
getHistory: (projectPath: string, limit?: number) => Promise<GitHistoryEntry[]>;
|
getHistory: (projectPath: string, limit?: number) => Promise<GitHistoryEntry[]>;
|
||||||
|
fetch: (projectPath: string) => Promise<GitActionResult>;
|
||||||
|
pull: (projectPath: string) => Promise<GitActionResult>;
|
||||||
|
push: (projectPath: string) => Promise<GitActionResult>;
|
||||||
|
commitAll: (projectPath: string, message: string) => Promise<GitActionResult>;
|
||||||
ensureGitignore: (projectPath: string) => Promise<GitIgnoreEnsureResult>;
|
ensureGitignore: (projectPath: string) => Promise<GitIgnoreEnsureResult>;
|
||||||
pruneLfs: (projectPath: string, options?: { dryRun?: boolean; verifyRemote?: boolean }) => Promise<GitLfsPruneResult>;
|
pruneLfs: (projectPath: string, options?: { dryRun?: boolean; verifyRemote?: boolean }) => Promise<GitLfsPruneResult>;
|
||||||
init: (projectPath: string, remoteUrl?: string) => Promise<GitInitResult>;
|
init: (projectPath: string, remoteUrl?: string) => Promise<GitInitResult>;
|
||||||
|
|||||||
@@ -35,6 +35,11 @@ function detectLanguage(filePath: string): string {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function toModelPath(filePath: string, side: 'original' | 'modified'): string {
|
||||||
|
const normalized = filePath.replace(/^\/+/, '');
|
||||||
|
return `inmemory://model/git-diff/${side}/${normalized}`;
|
||||||
|
}
|
||||||
|
|
||||||
export const GitDiffView: React.FC<GitDiffViewProps> = ({ filePath }) => {
|
export const GitDiffView: React.FC<GitDiffViewProps> = ({ filePath }) => {
|
||||||
const { activeProject, gitDiffPreferences } = useAppStore();
|
const { activeProject, gitDiffPreferences } = useAppStore();
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
@@ -100,6 +105,10 @@ export const GitDiffView: React.FC<GitDiffViewProps> = ({ filePath }) => {
|
|||||||
<DiffEditor
|
<DiffEditor
|
||||||
original={original}
|
original={original}
|
||||||
modified={modified}
|
modified={modified}
|
||||||
|
originalModelPath={toModelPath(filePath, 'original')}
|
||||||
|
modifiedModelPath={toModelPath(filePath, 'modified')}
|
||||||
|
keepCurrentOriginalModel
|
||||||
|
keepCurrentModifiedModel
|
||||||
language={detectLanguage(filePath)}
|
language={detectLanguage(filePath)}
|
||||||
theme="vs-dark"
|
theme="vs-dark"
|
||||||
height="100%"
|
height="100%"
|
||||||
|
|||||||
@@ -30,6 +30,12 @@
|
|||||||
padding: 8px 0 0;
|
padding: 8px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.git-sidebar-actions {
|
||||||
|
display: flex;
|
||||||
|
gap: 6px;
|
||||||
|
padding: 0 12px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.git-sidebar-section {
|
.git-sidebar-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -54,6 +60,17 @@
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.git-sidebar-commit-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 6px;
|
||||||
|
padding: 0 12px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.git-sidebar-commit-row .git-sidebar-input {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.git-sidebar-file-item {
|
.git-sidebar-file-item {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: none;
|
border: none;
|
||||||
|
|||||||
@@ -5,21 +5,24 @@ import './GitSidebar.css';
|
|||||||
import '../Sidebar/Sidebar.css';
|
import '../Sidebar/Sidebar.css';
|
||||||
|
|
||||||
export const GitSidebar: React.FC = () => {
|
export const GitSidebar: React.FC = () => {
|
||||||
const { activeProject, openTab } = useAppStore();
|
const { activeProject, openTab, tabs, closeTab } = useAppStore();
|
||||||
const [projectPath, setProjectPath] = useState<string | null>(null);
|
const [projectPath, setProjectPath] = useState<string | null>(null);
|
||||||
const [loading, setLoading] = useState(true);
|
const [loading, setLoading] = useState(true);
|
||||||
const [initializing, setInitializing] = useState(false);
|
const [initializing, setInitializing] = useState(false);
|
||||||
const [statusLoading, setStatusLoading] = useState(false);
|
const [statusLoading, setStatusLoading] = useState(false);
|
||||||
|
const [actionLoading, setActionLoading] = useState<'fetch' | 'pull' | 'push' | 'commit' | null>(null);
|
||||||
const [error, setError] = useState<string | null>(null);
|
const [error, setError] = useState<string | null>(null);
|
||||||
const [isRepo, setIsRepo] = useState(false);
|
const [isRepo, setIsRepo] = useState(false);
|
||||||
const [currentBranch, setCurrentBranch] = useState<string | null>(null);
|
const [currentBranch, setCurrentBranch] = useState<string | null>(null);
|
||||||
const [statusFiles, setStatusFiles] = useState<Array<{ path: string; status: string }>>([]);
|
const [statusFiles, setStatusFiles] = useState<Array<{ path: string; status: string }>>([]);
|
||||||
|
const [commitMessage, setCommitMessage] = useState('');
|
||||||
const [historyLoading, setHistoryLoading] = useState(false);
|
const [historyLoading, setHistoryLoading] = useState(false);
|
||||||
const [historyEntries, setHistoryEntries] = useState<GitHistoryEntry[]>([]);
|
const [historyEntries, setHistoryEntries] = useState<GitHistoryEntry[]>([]);
|
||||||
const [initProgress, setInitProgress] = useState<GitInitProgress | null>(null);
|
const [initProgress, setInitProgress] = useState<GitInitProgress | null>(null);
|
||||||
const [initTranscript, setInitTranscript] = useState<GitInitProgress[]>([]);
|
const [initTranscript, setInitTranscript] = useState<GitInitProgress[]>([]);
|
||||||
const [isTranscriptExpanded, setIsTranscriptExpanded] = useState(false);
|
const [isTranscriptExpanded, setIsTranscriptExpanded] = useState(false);
|
||||||
const remoteUrlInputRef = useRef<HTMLInputElement | null>(null);
|
const remoteUrlInputRef = useRef<HTMLInputElement | null>(null);
|
||||||
|
const commitMessageInputRef = useRef<HTMLInputElement | null>(null);
|
||||||
|
|
||||||
const getDiffTabId = (filePath: string): string => `git-diff:${filePath}`;
|
const getDiffTabId = (filePath: string): string => `git-diff:${filePath}`;
|
||||||
|
|
||||||
@@ -149,6 +152,78 @@ export const GitSidebar: React.FC = () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleRepoAction = async (action: 'fetch' | 'pull' | 'push') => {
|
||||||
|
if (actionLoading) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const effectiveProjectPath = projectPath ?? (await resolveProjectPath());
|
||||||
|
if (!effectiveProjectPath) {
|
||||||
|
setError('No active project selected.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!projectPath) {
|
||||||
|
setProjectPath(effectiveProjectPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
setActionLoading(action);
|
||||||
|
setError(null);
|
||||||
|
try {
|
||||||
|
const result =
|
||||||
|
action === 'fetch'
|
||||||
|
? await window.electronAPI.git.fetch(effectiveProjectPath)
|
||||||
|
: action === 'pull'
|
||||||
|
? await window.electronAPI.git.pull(effectiveProjectPath)
|
||||||
|
: await window.electronAPI.git.push(effectiveProjectPath);
|
||||||
|
if (!result.success) {
|
||||||
|
setError(result.error || `Failed to ${action}.`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await loadRepoState();
|
||||||
|
} catch {
|
||||||
|
setError(`Failed to ${action}.`);
|
||||||
|
} finally {
|
||||||
|
setActionLoading(null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCommit = async () => {
|
||||||
|
if (actionLoading) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const effectiveProjectPath = projectPath ?? (await resolveProjectPath());
|
||||||
|
if (!effectiveProjectPath) {
|
||||||
|
setError('No active project selected.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!projectPath) {
|
||||||
|
setProjectPath(effectiveProjectPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
setActionLoading('commit');
|
||||||
|
setError(null);
|
||||||
|
try {
|
||||||
|
const messageToCommit = commitMessageInputRef.current?.value ?? commitMessage;
|
||||||
|
const result = await window.electronAPI.git.commitAll(effectiveProjectPath, messageToCommit);
|
||||||
|
if (!result.success) {
|
||||||
|
setError(result.error || 'Failed to commit changes.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
tabs
|
||||||
|
.filter((tab) => tab.type === 'git-diff')
|
||||||
|
.forEach((tab) => closeTab(tab.id));
|
||||||
|
|
||||||
|
setCommitMessage('');
|
||||||
|
await loadRepoState();
|
||||||
|
} catch {
|
||||||
|
setError('Failed to commit changes.');
|
||||||
|
} finally {
|
||||||
|
setActionLoading(null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return (
|
return (
|
||||||
<div className="git-sidebar">
|
<div className="git-sidebar">
|
||||||
@@ -186,8 +261,56 @@ export const GitSidebar: React.FC = () => {
|
|||||||
<div className="git-sidebar">
|
<div className="git-sidebar">
|
||||||
<div className="git-sidebar-header">SOURCE CONTROL</div>
|
<div className="git-sidebar-header">SOURCE CONTROL</div>
|
||||||
<div className="git-sidebar-content">
|
<div className="git-sidebar-content">
|
||||||
|
<div className="git-sidebar-actions" role="group" aria-label="Repository actions">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="git-sidebar-button"
|
||||||
|
onClick={() => handleRepoAction('fetch')}
|
||||||
|
disabled={actionLoading !== null}
|
||||||
|
>
|
||||||
|
Fetch
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="git-sidebar-button"
|
||||||
|
onClick={() => handleRepoAction('pull')}
|
||||||
|
disabled={actionLoading !== null}
|
||||||
|
>
|
||||||
|
Pull
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="git-sidebar-button"
|
||||||
|
onClick={() => handleRepoAction('push')}
|
||||||
|
disabled={actionLoading !== null}
|
||||||
|
>
|
||||||
|
Push
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div className="git-sidebar-section">
|
<div className="git-sidebar-section">
|
||||||
<div className="sidebar-section-title">Open Changes ({statusFiles.length})</div>
|
<div className="sidebar-section-title">Open Changes ({statusFiles.length})</div>
|
||||||
|
|
||||||
|
<div className="git-sidebar-commit-row">
|
||||||
|
<input
|
||||||
|
ref={commitMessageInputRef}
|
||||||
|
className="git-sidebar-input"
|
||||||
|
type="text"
|
||||||
|
placeholder="Commit message"
|
||||||
|
value={commitMessage}
|
||||||
|
onChange={(event) => setCommitMessage(event.target.value)}
|
||||||
|
disabled={actionLoading !== null}
|
||||||
|
/>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="git-sidebar-button"
|
||||||
|
onClick={handleCommit}
|
||||||
|
disabled={actionLoading !== null}
|
||||||
|
>
|
||||||
|
Commit
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
{statusLoading ? (
|
{statusLoading ? (
|
||||||
<div className="git-sidebar-empty-state">Loading changes...</div>
|
<div className="git-sidebar-empty-state">Loading changes...</div>
|
||||||
) : statusFiles.length === 0 ? (
|
) : statusFiles.length === 0 ? (
|
||||||
@@ -233,6 +356,7 @@ export const GitSidebar: React.FC = () => {
|
|||||||
)}
|
)}
|
||||||
{currentBranch && <div className="git-sidebar-empty-state">Branch: {currentBranch}</div>}
|
{currentBranch && <div className="git-sidebar-empty-state">Branch: {currentBranch}</div>}
|
||||||
</div>
|
</div>
|
||||||
|
{error && <div className="git-sidebar-empty-state git-sidebar-error">{error}</div>}
|
||||||
{transcriptSection}
|
{transcriptSection}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -11,6 +11,9 @@ const mockInit = vi.fn();
|
|||||||
const mockRaw = vi.fn();
|
const mockRaw = vi.fn();
|
||||||
const mockAdd = vi.fn();
|
const mockAdd = vi.fn();
|
||||||
const mockCommit = vi.fn();
|
const mockCommit = vi.fn();
|
||||||
|
const mockFetch = vi.fn();
|
||||||
|
const mockPull = vi.fn();
|
||||||
|
const mockPush = vi.fn();
|
||||||
const mockGetRemotes = vi.fn();
|
const mockGetRemotes = vi.fn();
|
||||||
const mockAddRemote = vi.fn();
|
const mockAddRemote = vi.fn();
|
||||||
const mockRemote = vi.fn();
|
const mockRemote = vi.fn();
|
||||||
@@ -40,6 +43,9 @@ vi.mock('simple-git', () => ({
|
|||||||
raw: mockRaw,
|
raw: mockRaw,
|
||||||
add: mockAdd,
|
add: mockAdd,
|
||||||
commit: mockCommit,
|
commit: mockCommit,
|
||||||
|
fetch: mockFetch,
|
||||||
|
pull: mockPull,
|
||||||
|
push: mockPush,
|
||||||
getRemotes: mockGetRemotes,
|
getRemotes: mockGetRemotes,
|
||||||
addRemote: mockAddRemote,
|
addRemote: mockAddRemote,
|
||||||
remote: mockRemote,
|
remote: mockRemote,
|
||||||
@@ -451,4 +457,52 @@ describe('GitEngine', () => {
|
|||||||
expect(result.error).toContain('prune failed');
|
expect(result.error).toContain('prune failed');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('repo actions', () => {
|
||||||
|
it('should run fetch with prune and return success', async () => {
|
||||||
|
mockFetch.mockResolvedValue(undefined);
|
||||||
|
|
||||||
|
const result = await gitEngine.fetch('/tmp/project');
|
||||||
|
|
||||||
|
expect(mockFetch).toHaveBeenCalledWith(['--prune']);
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should run pull and return success', async () => {
|
||||||
|
mockPull.mockResolvedValue(undefined);
|
||||||
|
|
||||||
|
const result = await gitEngine.pull('/tmp/project');
|
||||||
|
|
||||||
|
expect(mockPull).toHaveBeenCalled();
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should run push and return success', async () => {
|
||||||
|
mockPush.mockResolvedValue(undefined);
|
||||||
|
|
||||||
|
const result = await gitEngine.push('/tmp/project');
|
||||||
|
|
||||||
|
expect(mockPush).toHaveBeenCalled();
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should stage all files and commit with message', async () => {
|
||||||
|
mockAdd.mockResolvedValue(undefined);
|
||||||
|
mockCommit.mockResolvedValue(undefined);
|
||||||
|
|
||||||
|
const result = await gitEngine.commitAll('/tmp/project', 'feat: commit changes');
|
||||||
|
|
||||||
|
expect(mockAdd).toHaveBeenCalledWith(['-A']);
|
||||||
|
expect(mockCommit).toHaveBeenCalledWith('feat: commit changes');
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject empty commit messages', async () => {
|
||||||
|
const result = await gitEngine.commitAll('/tmp/project', ' ');
|
||||||
|
|
||||||
|
expect(mockAdd).not.toHaveBeenCalled();
|
||||||
|
expect(mockCommit).not.toHaveBeenCalled();
|
||||||
|
expect(result).toEqual({ success: false, error: 'Commit message is required.' });
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -147,6 +147,10 @@ const mockGitEngine = {
|
|||||||
getDiff: vi.fn(),
|
getDiff: vi.fn(),
|
||||||
getDiffContent: vi.fn(),
|
getDiffContent: vi.fn(),
|
||||||
getHistory: vi.fn(),
|
getHistory: vi.fn(),
|
||||||
|
fetch: vi.fn(),
|
||||||
|
pull: vi.fn(),
|
||||||
|
push: vi.fn(),
|
||||||
|
commitAll: vi.fn(),
|
||||||
initializeRepo: vi.fn(),
|
initializeRepo: vi.fn(),
|
||||||
ensureGitignore: vi.fn(),
|
ensureGitignore: vi.fn(),
|
||||||
pruneLfsCache: vi.fn(),
|
pruneLfsCache: vi.fn(),
|
||||||
@@ -454,6 +458,50 @@ describe('IPC Handlers', () => {
|
|||||||
expect(result.success).toBe(true);
|
expect(result.success).toBe(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('git:fetch', () => {
|
||||||
|
it('should pass project path to GitEngine.fetch', async () => {
|
||||||
|
mockGitEngine.fetch.mockResolvedValue({ success: true });
|
||||||
|
|
||||||
|
const result = await invokeHandler('git:fetch', '/repo');
|
||||||
|
|
||||||
|
expect(mockGitEngine.fetch).toHaveBeenCalledWith('/repo');
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('git:pull', () => {
|
||||||
|
it('should pass project path to GitEngine.pull', async () => {
|
||||||
|
mockGitEngine.pull.mockResolvedValue({ success: true });
|
||||||
|
|
||||||
|
const result = await invokeHandler('git:pull', '/repo');
|
||||||
|
|
||||||
|
expect(mockGitEngine.pull).toHaveBeenCalledWith('/repo');
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('git:push', () => {
|
||||||
|
it('should pass project path to GitEngine.push', async () => {
|
||||||
|
mockGitEngine.push.mockResolvedValue({ success: true });
|
||||||
|
|
||||||
|
const result = await invokeHandler('git:push', '/repo');
|
||||||
|
|
||||||
|
expect(mockGitEngine.push).toHaveBeenCalledWith('/repo');
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('git:commitAll', () => {
|
||||||
|
it('should pass project path and message to GitEngine.commitAll', async () => {
|
||||||
|
mockGitEngine.commitAll.mockResolvedValue({ success: true });
|
||||||
|
|
||||||
|
const result = await invokeHandler('git:commitAll', '/repo', 'feat: commit');
|
||||||
|
|
||||||
|
expect(mockGitEngine.commitAll).toHaveBeenCalledWith('/repo', 'feat: commit');
|
||||||
|
expect(result).toEqual({ success: true });
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// ============ Project Handlers ============
|
// ============ Project Handlers ============
|
||||||
|
|||||||
@@ -7,7 +7,14 @@ import { useAppStore } from '../../../src/renderer/store';
|
|||||||
vi.mock('@monaco-editor/react', () => ({
|
vi.mock('@monaco-editor/react', () => ({
|
||||||
__esModule: true,
|
__esModule: true,
|
||||||
default: (_props: unknown) => null,
|
default: (_props: unknown) => null,
|
||||||
DiffEditor: (props: { original: string; modified: string; language?: string; options?: Record<string, unknown> }) => (
|
DiffEditor: (props: {
|
||||||
|
original: string;
|
||||||
|
modified: string;
|
||||||
|
language?: string;
|
||||||
|
options?: Record<string, unknown>;
|
||||||
|
keepCurrentOriginalModel?: boolean;
|
||||||
|
keepCurrentModifiedModel?: boolean;
|
||||||
|
}) => (
|
||||||
<div data-testid="monaco-diff-editor">
|
<div data-testid="monaco-diff-editor">
|
||||||
<div>original:{props.original}</div>
|
<div>original:{props.original}</div>
|
||||||
<div>modified:{props.modified}</div>
|
<div>modified:{props.modified}</div>
|
||||||
@@ -15,6 +22,8 @@ vi.mock('@monaco-editor/react', () => ({
|
|||||||
<div>renderSideBySide:{String(props.options?.renderSideBySide)}</div>
|
<div>renderSideBySide:{String(props.options?.renderSideBySide)}</div>
|
||||||
<div>wordWrap:{String(props.options?.wordWrap)}</div>
|
<div>wordWrap:{String(props.options?.wordWrap)}</div>
|
||||||
<div>hideUnchanged:{String((props.options?.hideUnchangedRegions as { enabled?: boolean } | undefined)?.enabled)}</div>
|
<div>hideUnchanged:{String((props.options?.hideUnchangedRegions as { enabled?: boolean } | undefined)?.enabled)}</div>
|
||||||
|
<div>keepOriginal:{String(props.keepCurrentOriginalModel)}</div>
|
||||||
|
<div>keepModified:{String(props.keepCurrentModifiedModel)}</div>
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
}));
|
}));
|
||||||
@@ -67,5 +76,7 @@ describe('GitDiffView', () => {
|
|||||||
expect(screen.getByText('renderSideBySide:false')).toBeInTheDocument();
|
expect(screen.getByText('renderSideBySide:false')).toBeInTheDocument();
|
||||||
expect(screen.getByText('wordWrap:on')).toBeInTheDocument();
|
expect(screen.getByText('wordWrap:on')).toBeInTheDocument();
|
||||||
expect(screen.getByText('hideUnchanged:false')).toBeInTheDocument();
|
expect(screen.getByText('hideUnchanged:false')).toBeInTheDocument();
|
||||||
|
expect(screen.getByText('keepOriginal:true')).toBeInTheDocument();
|
||||||
|
expect(screen.getByText('keepModified:true')).toBeInTheDocument();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -34,7 +34,12 @@ describe('GitSidebar', () => {
|
|||||||
getRepoState: vi.fn().mockResolvedValue({ isRepo: false, hasRemote: false }),
|
getRepoState: vi.fn().mockResolvedValue({ isRepo: false, hasRemote: false }),
|
||||||
getStatus: vi.fn().mockResolvedValue({ files: [], counts: { untracked: 0, modified: 0, deleted: 0, renamed: 0, staged: 0, total: 0 } }),
|
getStatus: vi.fn().mockResolvedValue({ files: [], counts: { untracked: 0, modified: 0, deleted: 0, renamed: 0, staged: 0, total: 0 } }),
|
||||||
getDiff: vi.fn().mockResolvedValue({ filePath: 'posts/a.md', patch: 'diff --git a/posts/a.md b/posts/a.md' }),
|
getDiff: vi.fn().mockResolvedValue({ filePath: 'posts/a.md', patch: 'diff --git a/posts/a.md b/posts/a.md' }),
|
||||||
|
getDiffContent: vi.fn().mockResolvedValue({ filePath: 'posts/a.md', original: '', modified: '' }),
|
||||||
getHistory: vi.fn().mockResolvedValue([]),
|
getHistory: vi.fn().mockResolvedValue([]),
|
||||||
|
fetch: vi.fn().mockResolvedValue({ success: true }),
|
||||||
|
pull: vi.fn().mockResolvedValue({ success: true }),
|
||||||
|
push: vi.fn().mockResolvedValue({ success: true }),
|
||||||
|
commitAll: vi.fn().mockResolvedValue({ success: true }),
|
||||||
init: vi.fn().mockResolvedValue({ success: true }),
|
init: vi.fn().mockResolvedValue({ success: true }),
|
||||||
ensureGitignore: vi.fn().mockResolvedValue({ updated: false, created: false, addedEntries: [] }),
|
ensureGitignore: vi.fn().mockResolvedValue({ updated: false, created: false, addedEntries: [] }),
|
||||||
onInitProgress: vi.fn().mockImplementation(() => () => {}),
|
onInitProgress: vi.fn().mockImplementation(() => () => {}),
|
||||||
@@ -328,4 +333,64 @@ describe('GitSidebar', () => {
|
|||||||
expect(transcriptToggle).toHaveAttribute('aria-expanded', 'true');
|
expect(transcriptToggle).toHaveAttribute('aria-expanded', 'true');
|
||||||
expect(screen.getByText(/100% — failed to configure remote repository/i)).toBeInTheDocument();
|
expect(screen.getByText(/100% — failed to configure remote repository/i)).toBeInTheDocument();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('wires fetch, pull, and push buttons', async () => {
|
||||||
|
(window as any).electronAPI.git.getRepoState = vi.fn().mockResolvedValue({
|
||||||
|
isRepo: true,
|
||||||
|
rootPath: '/repo/path',
|
||||||
|
currentBranch: 'main',
|
||||||
|
hasRemote: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
render(<GitSidebar />);
|
||||||
|
|
||||||
|
const fetchButton = await screen.findByRole('button', { name: /fetch/i });
|
||||||
|
const pullButton = screen.getByRole('button', { name: /pull/i });
|
||||||
|
const pushButton = screen.getByRole('button', { name: /push/i });
|
||||||
|
|
||||||
|
await act(async () => {
|
||||||
|
fireEvent.click(fetchButton);
|
||||||
|
fireEvent.click(pullButton);
|
||||||
|
fireEvent.click(pushButton);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect((window as any).electronAPI.git.fetch).toHaveBeenCalledWith('/repo/path');
|
||||||
|
expect((window as any).electronAPI.git.pull).toHaveBeenCalledWith('/repo/path');
|
||||||
|
expect((window as any).electronAPI.git.push).toHaveBeenCalledWith('/repo/path');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('commits all changes and closes open git-diff tabs', async () => {
|
||||||
|
(window as any).electronAPI.git.getRepoState = vi.fn().mockResolvedValue({
|
||||||
|
isRepo: true,
|
||||||
|
rootPath: '/repo/path',
|
||||||
|
currentBranch: 'main',
|
||||||
|
hasRemote: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
useAppStore.setState({
|
||||||
|
tabs: [
|
||||||
|
{ type: 'git-diff', id: 'git-diff:posts/first.md', isTransient: false },
|
||||||
|
{ type: 'post', id: 'post-1', isTransient: false },
|
||||||
|
{ type: 'git-diff', id: 'git-diff:posts/second.md', isTransient: true },
|
||||||
|
],
|
||||||
|
activeTabId: 'git-diff:posts/first.md',
|
||||||
|
});
|
||||||
|
|
||||||
|
render(<GitSidebar />);
|
||||||
|
|
||||||
|
const commitInput = await screen.findByPlaceholderText(/commit message/i);
|
||||||
|
await act(async () => {
|
||||||
|
fireEvent.change(commitInput, { target: { value: 'feat: commit from sidebar' } });
|
||||||
|
});
|
||||||
|
|
||||||
|
const commitButton = screen.getByRole('button', { name: /^commit$/i });
|
||||||
|
await act(async () => {
|
||||||
|
fireEvent.click(commitButton);
|
||||||
|
});
|
||||||
|
|
||||||
|
expect((window as any).electronAPI.git.commitAll).toHaveBeenCalledWith('/repo/path', 'feat: commit from sidebar');
|
||||||
|
expect(getStore().tabs).toEqual([
|
||||||
|
{ type: 'post', id: 'post-1', isTransient: false },
|
||||||
|
]);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user