1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { vi, describe, expect, it, afterEach, beforeEach } from 'vitest';
import * as child_process from 'child_process';
import {
isGitHubRepository,
getGitRepoRoot,
getLatestGitHubRelease,
getGitHubRepoInfo,
} from './gitUtils.js';
vi.mock('child_process');
describe('isGitHubRepository', async () => {
beforeEach(() => {
vi.resetAllMocks();
});
afterEach(() => {
vi.restoreAllMocks();
});
it('returns false if the git command fails', async () => {
vi.mocked(child_process.execSync).mockImplementation((): string => {
throw new Error('oops');
});
expect(isGitHubRepository()).toBe(false);
});
it('returns false if the remote is not github.com', async () => {
vi.mocked(child_process.execSync).mockReturnValueOnce('https://gitlab.com');
expect(isGitHubRepository()).toBe(false);
});
it('returns true if the remote is github.com', async () => {
vi.mocked(child_process.execSync).mockReturnValueOnce(`
origin https://github.com/sethvargo/gemini-cli (fetch)
origin https://github.com/sethvargo/gemini-cli (push)
`);
expect(isGitHubRepository()).toBe(true);
});
});
describe('getGitHubRepoInfo', async () => {
beforeEach(() => {
vi.resetAllMocks();
});
afterEach(() => {
vi.restoreAllMocks();
});
it('throws an error if github repo info cannot be determined', async () => {
vi.mocked(child_process.execSync).mockImplementation((): string => {
throw new Error('oops');
});
expect(() => {
getGitHubRepoInfo();
}).toThrowError(/oops/);
});
it('throws an error if owner/repo could not be determined', async () => {
vi.mocked(child_process.execSync).mockReturnValueOnce('');
expect(() => {
getGitHubRepoInfo();
}).toThrowError(/Owner & repo could not be extracted from remote URL/);
});
it('returns the owner and repo', async () => {
vi.mocked(child_process.execSync).mockReturnValueOnce(
'https://github.com/owner/repo.git ',
);
expect(getGitHubRepoInfo()).toEqual({ owner: 'owner', repo: 'repo' });
});
});
describe('getGitRepoRoot', async () => {
beforeEach(() => {
vi.resetAllMocks();
});
afterEach(() => {
vi.restoreAllMocks();
});
it('throws an error if git root cannot be determined', async () => {
vi.mocked(child_process.execSync).mockImplementation((): string => {
throw new Error('oops');
});
expect(() => {
getGitRepoRoot();
}).toThrowError(/oops/);
});
it('throws an error if git root is empty', async () => {
vi.mocked(child_process.execSync).mockReturnValueOnce('');
expect(() => {
getGitRepoRoot();
}).toThrowError(/Git repo returned empty value/);
});
it('returns the root', async () => {
vi.mocked(child_process.execSync).mockReturnValueOnce('/path/to/git/repo');
expect(getGitRepoRoot()).toBe('/path/to/git/repo');
});
});
describe('getLatestRelease', async () => {
beforeEach(() => {
vi.resetAllMocks();
});
afterEach(() => {
vi.restoreAllMocks();
});
it('throws an error if the fetch fails', async () => {
global.fetch = vi.fn(() => Promise.reject('nope'));
expect(getLatestGitHubRelease()).rejects.toThrowError(
/Unable to determine the latest/,
);
});
it('throws an error if the fetch does not return a json body', async () => {
global.fetch = vi.fn(() =>
Promise.resolve({
ok: true,
json: () => Promise.resolve({ foo: 'bar' }),
} as Response),
);
expect(getLatestGitHubRelease()).rejects.toThrowError(
/Unable to determine the latest/,
);
});
it('returns the release version', async () => {
global.fetch = vi.fn(() =>
Promise.resolve({
ok: true,
json: () => Promise.resolve({ tag_name: 'v1.2.3' }),
} as Response),
);
expect(getLatestGitHubRelease()).resolves.toBe('v1.2.3');
});
});
|