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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
|
- import { fetchWithProxy } from '../src/fetch';
- import {
- fetchCsvFromGoogleSheetUnauthenticated,
- fetchCsvFromGoogleSheetAuthenticated,
- checkGoogleSheetAccess,
- writeCsvToGoogleSheet,
- } from '../src/googleSheets';
- import logger from '../src/logger';
- import type { CsvRow } from '../src/types';
- import { createMockResponse } from './util/utils';
- interface MockSpreadsheets {
- get: jest.Mock;
- values: {
- get: jest.Mock;
- update: jest.Mock;
- };
- batchUpdate: jest.Mock;
- }
- jest.mock('../src/fetch', () => ({
- fetchWithProxy: jest.fn(),
- }));
- const mockSpreadsheetsApi = {
- get: jest.fn(),
- values: {
- get: jest.fn(),
- update: jest.fn(),
- },
- batchUpdate: jest.fn(),
- };
- // Update mock setup for better auth handling
- const mockAuthClient = {
- getClient: jest.fn().mockResolvedValue({}),
- };
- // Mock Google Sheets API
- jest.mock('@googleapis/sheets', () => {
- return {
- sheets: jest.fn(() => ({
- spreadsheets: mockSpreadsheetsApi,
- })),
- auth: {
- GoogleAuth: jest.fn(() => mockAuthClient),
- },
- };
- });
- describe('Google Sheets Integration', () => {
- const TEST_SHEET_URL = 'https://docs.google.com/spreadsheets/d/1234567890/edit';
- const TEST_SHEET_URL_WITH_GID =
- 'https://docs.google.com/spreadsheets/d/1234567890/edit?gid=98765';
- beforeEach(() => {
- jest.clearAllMocks();
- });
- describe('checkGoogleSheetAccess', () => {
- it('should return public:true for accessible sheets', async () => {
- const mockFetch = jest.spyOn(global, 'fetch').mockImplementation();
- mockFetch.mockResolvedValue({
- ok: true,
- status: 200,
- } as Response);
- const result = await checkGoogleSheetAccess(TEST_SHEET_URL);
- expect(result).toEqual({ public: true, status: 200 });
- expect(mockFetch).toHaveBeenCalledWith(TEST_SHEET_URL);
- });
- it('should return public:false for inaccessible sheets', async () => {
- const mockFetch = jest.spyOn(global, 'fetch').mockImplementation();
- mockFetch.mockResolvedValue({
- ok: false,
- status: 403,
- } as Response);
- const result = await checkGoogleSheetAccess(TEST_SHEET_URL);
- expect(result).toEqual({ public: false, status: 403 });
- expect(mockFetch).toHaveBeenCalledWith(TEST_SHEET_URL);
- });
- it('should handle network errors gracefully', async () => {
- const mockFetch = jest.spyOn(global, 'fetch').mockImplementation();
- mockFetch.mockRejectedValue(new Error('Network error'));
- const result = await checkGoogleSheetAccess(TEST_SHEET_URL);
- expect(result).toEqual({ public: false });
- expect(logger.error).toHaveBeenCalledWith(
- `Error checking sheet access: ${new Error('Network error')}`,
- );
- });
- });
- describe('fetchCsvFromGoogleSheetUnauthenticated', () => {
- it('should fetch and parse CSV data correctly', async () => {
- const mockCsvData = 'header1,header2\nvalue1,value2';
- const expectedUrl = `${TEST_SHEET_URL.replace(/\/edit.*$/, '/export')}?format=csv`;
- jest.mocked(fetchWithProxy).mockResolvedValue(
- createMockResponse({
- text: () => Promise.resolve(mockCsvData),
- }),
- );
- const result = await fetchCsvFromGoogleSheetUnauthenticated(TEST_SHEET_URL);
- expect(result).toEqual([{ header1: 'value1', header2: 'value2' }]);
- expect(fetchWithProxy).toHaveBeenCalledWith(expectedUrl);
- });
- it('should handle gid parameter correctly', async () => {
- const mockCsvData = 'header1,header2\nvalue1,value2';
- const baseUrl = TEST_SHEET_URL_WITH_GID.replace(/\/edit.*$/, '/export');
- const expectedUrl = `${baseUrl}?format=csv&gid=98765`;
- jest.mocked(fetchWithProxy).mockResolvedValue(
- createMockResponse({
- text: () => Promise.resolve(mockCsvData),
- }),
- );
- await fetchCsvFromGoogleSheetUnauthenticated(TEST_SHEET_URL_WITH_GID);
- expect(fetchWithProxy).toHaveBeenCalledWith(expectedUrl);
- });
- it('should throw error on non-200 response', async () => {
- jest.mocked(fetchWithProxy).mockResolvedValue(createMockResponse({ status: 403 }));
- await expect(fetchCsvFromGoogleSheetUnauthenticated(TEST_SHEET_URL)).rejects.toThrow(
- 'Failed to fetch CSV from Google Sheets URL',
- );
- });
- });
- describe('fetchCsvFromGoogleSheetAuthenticated', () => {
- const spreadsheets = mockSpreadsheetsApi as MockSpreadsheets;
- beforeEach(() => {
- jest.clearAllMocks();
- // Set up default sheet response
- spreadsheets.get.mockResolvedValue({
- data: {
- sheets: [
- {
- properties: {
- sheetId: 98765,
- title: 'TestSheet',
- },
- },
- ],
- },
- });
- });
- it('should fetch and parse authenticated sheet data', async () => {
- const mockResponse = {
- data: {
- values: [
- ['header1', 'header2'],
- ['value1', 'value2'],
- ],
- },
- };
- spreadsheets.values.get.mockResolvedValue(mockResponse);
- const result = await fetchCsvFromGoogleSheetAuthenticated(TEST_SHEET_URL);
- expect(result).toEqual([{ header1: 'value1', header2: 'value2' }]);
- expect(spreadsheets.values.get).toHaveBeenCalledWith({
- spreadsheetId: '1234567890',
- range: 'A1:ZZZ',
- auth: mockAuthClient,
- });
- });
- it('should handle gid parameter correctly', async () => {
- spreadsheets.values.get.mockResolvedValue({
- data: {
- values: [['header'], ['value']],
- },
- });
- await fetchCsvFromGoogleSheetAuthenticated(TEST_SHEET_URL_WITH_GID);
- expect(spreadsheets.get).toHaveBeenCalledWith({
- spreadsheetId: '1234567890',
- auth: mockAuthClient,
- });
- expect(spreadsheets.values.get).toHaveBeenCalledWith({
- spreadsheetId: '1234567890',
- range: 'TestSheet!A1:ZZZ',
- auth: mockAuthClient,
- });
- });
- it('should throw error for invalid sheet URL', async () => {
- await expect(fetchCsvFromGoogleSheetAuthenticated('invalid-url')).rejects.toThrow(
- 'Invalid Google Sheets URL',
- );
- });
- });
- describe('writeCsvToGoogleSheet', () => {
- const spreadsheets = mockSpreadsheetsApi as MockSpreadsheets;
- const testRows: CsvRow[] = [{ header1: 'value1', header2: 'value2' }];
- beforeEach(() => {
- jest.clearAllMocks();
- // Set up default sheet response
- spreadsheets.get.mockResolvedValue({
- data: {
- sheets: [
- {
- properties: {
- sheetId: 98765,
- title: 'TestSheet',
- },
- },
- ],
- },
- });
- });
- it('should write data to existing sheet', async () => {
- const mockDate = 1234567890;
- jest.spyOn(Date, 'now').mockReturnValue(mockDate);
- spreadsheets.values.update.mockResolvedValue({});
- await writeCsvToGoogleSheet(testRows, TEST_SHEET_URL);
- expect(spreadsheets.values.update).toHaveBeenCalledWith({
- spreadsheetId: '1234567890',
- range: `Sheet${mockDate}!A1:ZZZ`,
- valueInputOption: 'USER_ENTERED',
- auth: mockAuthClient,
- requestBody: {
- values: [
- ['header1', 'header2'],
- ['value1', 'value2'],
- ],
- },
- });
- });
- it('should create new sheet when no gid provided', async () => {
- // Mock Date.now() to get consistent sheet names in tests
- const mockDate = 1234567890;
- jest.spyOn(Date, 'now').mockReturnValue(mockDate);
- spreadsheets.batchUpdate.mockResolvedValue({});
- spreadsheets.values.update.mockResolvedValue({});
- await writeCsvToGoogleSheet(testRows, TEST_SHEET_URL);
- expect(spreadsheets.batchUpdate).toHaveBeenCalledWith({
- spreadsheetId: '1234567890',
- auth: mockAuthClient,
- requestBody: {
- requests: [
- {
- addSheet: {
- properties: {
- title: `Sheet${mockDate}`,
- },
- },
- },
- ],
- },
- });
- });
- it('should use existing sheet when gid provided', async () => {
- spreadsheets.values.update.mockResolvedValue({});
- await writeCsvToGoogleSheet(testRows, TEST_SHEET_URL_WITH_GID);
- expect(spreadsheets.batchUpdate).not.toHaveBeenCalled();
- expect(spreadsheets.values.update).toHaveBeenCalledWith({
- spreadsheetId: '1234567890',
- range: 'TestSheet!A1:ZZZ',
- valueInputOption: 'USER_ENTERED',
- auth: mockAuthClient,
- requestBody: {
- values: [
- ['header1', 'header2'],
- ['value1', 'value2'],
- ],
- },
- });
- });
- it('should throw error for invalid sheet URL', async () => {
- await expect(writeCsvToGoogleSheet(testRows, 'invalid-url')).rejects.toThrow(
- 'Invalid Google Sheets URL',
- );
- });
- });
- });
|