-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathappdata.test.ts
More file actions
238 lines (206 loc) · 5.95 KB
/
appdata.test.ts
File metadata and controls
238 lines (206 loc) · 5.95 KB
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
import fs from 'fs';
import os from 'os';
import path from 'path';
import { arePathsEqual } from '@studio/common/lib/fs-utils';
import { readFile, writeFile } from 'atomically';
import { vi } from 'vitest';
import {
readAppdata,
saveAppdata,
getAuthToken,
lockAppdata,
unlockAppdata,
} from 'cli/lib/appdata';
import { StatsMetric } from 'cli/lib/types/bump-stats';
vi.mock( 'fs', () => ( {
default: {
existsSync: vi.fn(),
},
} ) );
vi.mock( 'os', () => ( {
default: {
homedir: vi.fn(),
},
} ) );
vi.mock( 'path', () => ( {
default: {
join: vi.fn(),
basename: vi.fn(),
resolve: vi.fn(),
},
} ) );
vi.mock( 'atomically', () => ( {
readFile: vi.fn(),
writeFile: vi.fn(),
} ) );
vi.mock( '@studio/common/lib/fs-utils', () => ( {
arePathsEqual: vi.fn(),
} ) );
vi.mock( 'cli/lib/api', () => ( {
validateAccessToken: vi.fn().mockResolvedValue( undefined ),
} ) );
describe( 'Appdata Module', () => {
const mockHomeDir = '/mock/home';
const mockSiteFolderName = 'folder';
beforeEach( () => {
vi.clearAllMocks();
vi.mocked( os.homedir ).mockReturnValue( mockHomeDir );
vi.mocked( path.join ).mockImplementation( ( ...args ) => args.join( '/' ) );
vi.mocked( path.basename ).mockReturnValue( mockSiteFolderName );
vi.mocked( path.resolve ).mockImplementation( ( path ) => path );
vi.spyOn( Date, 'now' ).mockReturnValue( 1234567890 );
vi.mocked( fs.existsSync ).mockReturnValue( true );
vi.mocked( arePathsEqual ).mockImplementation( ( path1, path2 ) => path1 === path2 );
vi.mocked( readFile ).mockResolvedValue( Buffer.from( '{}' ) );
vi.mocked( writeFile ).mockResolvedValue( undefined );
} );
describe( 'readAppdata', () => {
it( 'should throw LoggerError if appdata file does not exist', async () => {
vi.mocked( fs.existsSync ).mockReturnValue( false );
await expect( readAppdata() ).rejects.toThrow( 'Studio config file not found' );
} );
it( 'should return parsed appdata if it exists and is valid', async () => {
const mockUserData = {
version: 1,
sites: [],
snapshots: [
{
url: 'example.com',
atomicSiteId: 123,
name: 'Example site',
localSiteId: 'site1',
date: 1234567,
},
],
};
vi.mocked( readFile ).mockResolvedValueOnce( Buffer.from( JSON.stringify( mockUserData ) ) );
const result = await readAppdata();
expect( result ).toEqual( mockUserData );
} );
it( 'should correctly validate lastBumpStats with local-environment-launch-uniques key', async () => {
const mockUserData = {
version: 1,
sites: [],
snapshots: [],
lastBumpStats: {
'local-environment-launch-uniques': {
[ StatsMetric.DARWIN ]: 5,
},
},
};
vi.mocked( readFile ).mockResolvedValueOnce( Buffer.from( JSON.stringify( mockUserData ) ) );
const result = await readAppdata();
expect( result ).toEqual( mockUserData );
} );
it( 'should throw LoggerError if there is an error reading the file', async () => {
vi.mocked( readFile ).mockRejectedValue( new Error( 'Read error' ) );
await expect( readAppdata() ).rejects.toThrow( 'Failed to read Studio config file' );
} );
it( 'should throw LoggerError if there is an error parsing the JSON', async () => {
vi.mocked( readFile ).mockResolvedValueOnce( Buffer.from( 'invalid json{' ) );
await expect( readAppdata() ).rejects.toThrow( 'corrupted' );
} );
} );
describe( 'saveAppdata', () => {
it( 'should save the userData to the appdata file', async () => {
const mockUserData = {
version: 1,
sites: [],
snapshots: [],
};
try {
await lockAppdata();
await saveAppdata( mockUserData );
} finally {
await unlockAppdata();
}
expect( writeFile ).toHaveBeenCalledWith(
expect.any( String ),
JSON.stringify( mockUserData, null, 2 ) + '\n',
{ encoding: 'utf8' }
);
} );
it( 'should throw LoggerError if there is an error saving the file', async () => {
const mockUserData = {
version: 1,
sites: [],
snapshots: [],
};
vi.mocked( writeFile ).mockRejectedValue( new Error( 'Write error' ) );
try {
await lockAppdata();
await expect( saveAppdata( mockUserData ) ).rejects.toThrow(
'Failed to save Studio config file'
);
} finally {
await unlockAppdata();
}
} );
it( 'should add version 1 if version is not provided', async () => {
const mockUserData = {
sites: [],
snapshots: [],
};
try {
await lockAppdata();
await saveAppdata( mockUserData );
} finally {
await unlockAppdata();
}
expect( writeFile ).toHaveBeenCalled();
const savedData = JSON.parse( vi.mocked( writeFile ).mock.calls[ 0 ][ 1 ] as string );
expect( savedData.version ).toBe( 1 );
} );
} );
describe( 'getAuthToken', () => {
it( 'should return auth token when it exists', async () => {
const mockAuthToken = {
accessToken: 'valid-token',
displayName: 'User Name',
email: 'user@example.com',
expirationTime: Date.now() + 3600000, // 1 hour in the future
expiresIn: 3600,
id: 123,
};
vi.mocked( readFile ).mockResolvedValueOnce(
Buffer.from(
JSON.stringify( {
version: 1,
authToken: mockAuthToken,
sites: [],
snapshots: [],
} )
)
);
const result = await getAuthToken();
expect( result ).toEqual( mockAuthToken );
} );
it( 'should throw LoggerError when auth token is missing', async () => {
vi.mocked( readFile ).mockResolvedValueOnce(
Buffer.from(
JSON.stringify( {
version: 1,
sites: [],
snapshots: [],
} )
)
);
await expect( getAuthToken() ).rejects.toThrow( 'Authentication required' );
} );
it( 'should throw LoggerError when access token is missing', async () => {
vi.mocked( readFile ).mockResolvedValueOnce(
Buffer.from(
JSON.stringify( {
version: 1,
authToken: {
id: 123,
},
sites: [],
snapshots: [],
} )
)
);
await expect( getAuthToken() ).rejects.toThrow( 'Authentication required' );
} );
} );
} );