-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathservices.test.ts
More file actions
437 lines (343 loc) · 15.3 KB
/
services.test.ts
File metadata and controls
437 lines (343 loc) · 15.3 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
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/*
* Copyright (c) 2025, Salesforce, Inc.
* SPDX-License-Identifier: Apache-2
* For full license text, see the license.txt file in the repo root or http://www.apache.org/licenses/LICENSE-2.0
*/
import {expect} from 'chai';
import {describe, it, beforeEach, afterEach} from 'mocha';
import {stub, restore} from 'sinon';
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import {Services} from '../src/services.js';
import {createMockResolvedConfig} from './test-helpers.js';
import type {B2CInstance} from '@salesforce/b2c-tooling-sdk';
import type {AuthStrategy} from '@salesforce/b2c-tooling-sdk/auth';
import {toOrganizationId, type WebDavClient, type OcapiClient} from '@salesforce/b2c-tooling-sdk/clients';
describe('services', () => {
let mockB2CInstance: B2CInstance;
let mockOAuthStrategy: AuthStrategy;
let tmpDir: string;
beforeEach(() => {
mockB2CInstance = {
config: {codeVersion: 'version1'},
webdav: {} as WebDavClient,
ocapi: {} as OcapiClient,
} as B2CInstance;
mockOAuthStrategy = {
fetch: stub().resolves({} as Response),
} as unknown as AuthStrategy;
tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'services-test-'));
});
afterEach(() => {
restore();
if (fs.existsSync(tmpDir)) {
fs.rmSync(tmpDir, {recursive: true, force: true});
}
});
describe('constructor', () => {
it('should initialize with provided options', () => {
const config = createMockResolvedConfig();
const services = new Services({
b2cInstance: mockB2CInstance,
mrtConfig: {auth: mockOAuthStrategy, project: 'test-project'},
resolvedConfig: config,
});
expect(services.b2cInstance).to.equal(mockB2CInstance);
expect(services.mrtConfig.auth).to.equal(mockOAuthStrategy);
expect(services.mrtConfig.project).to.equal('test-project');
});
it('should initialize with empty mrtConfig when not provided', () => {
const config = createMockResolvedConfig();
const services = new Services({
resolvedConfig: config,
});
expect(services.mrtConfig).to.deep.equal({});
});
});
describe('fromResolvedConfig', () => {
it('should create Services with B2C instance when config has instance', () => {
const config = createMockResolvedConfig();
stub(config, 'hasB2CInstanceConfig').returns(true);
stub(config, 'createB2CInstance').returns(mockB2CInstance);
stub(config, 'hasMrtConfig').returns(false);
const services = Services.fromResolvedConfig(config);
expect(services.b2cInstance).to.equal(mockB2CInstance);
});
it('should create Services without B2C instance when config lacks instance', () => {
const config = createMockResolvedConfig();
stub(config, 'hasB2CInstanceConfig').returns(false);
stub(config, 'hasMrtConfig').returns(false);
const services = Services.fromResolvedConfig(config);
expect(services.b2cInstance).to.be.undefined;
});
it('should create Services with MRT config when available', () => {
const config = createMockResolvedConfig();
stub(config, 'hasB2CInstanceConfig').returns(false);
stub(config, 'hasMrtConfig').returns(true);
stub(config, 'createMrtAuth').returns(mockOAuthStrategy);
config.values.mrtProject = 'test-project';
config.values.mrtEnvironment = 'staging';
const services = Services.fromResolvedConfig(config);
expect(services.mrtConfig.auth).to.equal(mockOAuthStrategy);
expect(services.mrtConfig.project).to.equal('test-project');
expect(services.mrtConfig.environment).to.equal('staging');
});
});
describe('exists', () => {
it('should return true for existing file', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
const testFile = path.join(tmpDir, 'test.txt');
fs.writeFileSync(testFile, 'test');
expect(services.exists(testFile)).to.be.true;
});
it('should return false for non-existing file', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.exists(path.join(tmpDir, 'nonexistent.txt'))).to.be.false;
});
});
describe('getCustomApisClient', () => {
it('should create Custom APIs client with valid config', () => {
const config = createMockResolvedConfig({
shortCode: 'test-shortcode',
tenantId: 'test_tenant',
});
stub(config, 'hasOAuthConfig').returns(true);
stub(config, 'createOAuth').returns(mockOAuthStrategy);
const services = new Services({resolvedConfig: config});
const client = services.getCustomApisClient();
expect(client).to.exist;
});
it('should throw error when shortCode is missing', () => {
const config = createMockResolvedConfig({tenantId: 'test_tenant'});
const services = new Services({resolvedConfig: config});
expect(() => services.getCustomApisClient()).to.throw('SCAPI short code required');
});
it('should throw error when tenantId is missing', () => {
const config = createMockResolvedConfig({shortCode: 'test-shortcode'});
const services = new Services({resolvedConfig: config});
expect(() => services.getCustomApisClient()).to.throw('Tenant ID required');
});
it('should throw error when OAuth is missing', () => {
const config = createMockResolvedConfig({
shortCode: 'test-shortcode',
tenantId: 'test_tenant',
});
stub(config, 'hasOAuthConfig').returns(false);
const services = new Services({resolvedConfig: config});
expect(() => services.getCustomApisClient()).to.throw('OAuth client ID required');
});
});
describe('getCwd', () => {
it('should return current working directory', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.getCwd()).to.equal(process.cwd());
});
});
describe('resolveWithProjectDirectory', () => {
it('should return project directory when provided in config and no path arg', () => {
const workingDir = '/path/to/project';
const config = createMockResolvedConfig({projectDirectory: workingDir});
const services = new Services({resolvedConfig: config});
expect(services.resolveWithProjectDirectory()).to.equal(workingDir);
});
it('should fall back to process.cwd() when not provided and no path arg', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.resolveWithProjectDirectory()).to.equal(process.cwd());
});
it('should return project directory from fromResolvedConfig when provided in config and no path arg', () => {
const projectDir = '/path/to/project';
const config = createMockResolvedConfig({projectDirectory: projectDir});
const services = Services.fromResolvedConfig(config);
expect(services.resolveWithProjectDirectory()).to.equal(projectDir);
});
it('should fall back to process.cwd() from fromResolvedConfig when not provided in config and no path arg', () => {
const config = createMockResolvedConfig();
const services = Services.fromResolvedConfig(config);
expect(services.resolveWithProjectDirectory()).to.equal(process.cwd());
});
it('should return absolute path as-is', () => {
const config = createMockResolvedConfig({projectDirectory: '/path/to/project'});
const services = new Services({resolvedConfig: config});
expect(services.resolveWithProjectDirectory('/absolute/path')).to.equal('/absolute/path');
});
it('should resolve relative path relative to project directory', () => {
const projectDir = '/path/to/project';
const config = createMockResolvedConfig({projectDirectory: projectDir});
const services = new Services({resolvedConfig: config});
expect(services.resolveWithProjectDirectory('subdir')).to.equal('/path/to/project/subdir');
});
});
describe('getHomeDir', () => {
it('should return home directory', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.getHomeDir()).to.equal(os.homedir());
});
});
describe('getOrganizationId', () => {
it('should return organization ID with f_ecom_ prefix', () => {
const config = createMockResolvedConfig({tenantId: 'test_tenant'});
const services = new Services({resolvedConfig: config});
expect(services.getOrganizationId()).to.equal(toOrganizationId('test_tenant'));
});
it('should throw error when tenantId is missing', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(() => services.getOrganizationId()).to.throw('Tenant ID required');
});
});
describe('getPlatform', () => {
it('should return OS platform', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.getPlatform()).to.equal(os.platform());
});
});
describe('getScapiSchemasClient', () => {
it('should create SCAPI Schemas client with valid config', () => {
const config = createMockResolvedConfig({
shortCode: 'test-shortcode',
tenantId: 'test_tenant',
});
stub(config, 'hasOAuthConfig').returns(true);
stub(config, 'createOAuth').returns(mockOAuthStrategy);
const services = new Services({resolvedConfig: config});
const client = services.getScapiSchemasClient();
expect(client).to.exist;
});
it('should throw error when shortCode is missing', () => {
const config = createMockResolvedConfig({tenantId: 'test_tenant'});
const services = new Services({resolvedConfig: config});
expect(() => services.getScapiSchemasClient()).to.throw('SCAPI short code required');
});
it('should throw error when tenantId is missing', () => {
const config = createMockResolvedConfig({shortCode: 'test-shortcode'});
const services = new Services({resolvedConfig: config});
expect(() => services.getScapiSchemasClient()).to.throw('Tenant ID required');
});
it('should throw error when OAuth is missing', () => {
const config = createMockResolvedConfig({
shortCode: 'test-shortcode',
tenantId: 'test_tenant',
});
stub(config, 'hasOAuthConfig').returns(false);
const services = new Services({resolvedConfig: config});
expect(() => services.getScapiSchemasClient()).to.throw('OAuth client ID required');
});
});
describe('getShortCode', () => {
it('should return shortCode when configured', () => {
const config = createMockResolvedConfig({shortCode: 'test-shortcode'});
const services = new Services({resolvedConfig: config});
expect(services.getShortCode()).to.equal('test-shortcode');
});
it('should return undefined when not configured', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.getShortCode()).to.be.undefined;
});
});
describe('getTenantId', () => {
it('should return tenantId when configured', () => {
const config = createMockResolvedConfig({tenantId: 'test_tenant'});
const services = new Services({resolvedConfig: config});
expect(services.getTenantId()).to.equal('test_tenant');
});
it('should return undefined when not configured', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.getTenantId()).to.be.undefined;
});
});
describe('getTmpDir', () => {
it('should return temporary directory', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.getTmpDir()).to.equal(os.tmpdir());
});
});
describe('getWebDavClient', () => {
it('should return WebDAV client when B2C instance is available', () => {
const config = createMockResolvedConfig();
const services = new Services({
b2cInstance: mockB2CInstance,
resolvedConfig: config,
});
expect(services.getWebDavClient()).to.equal(mockB2CInstance.webdav);
});
it('should throw error when B2C instance is missing', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(() => services.getWebDavClient()).to.throw('B2C instance required');
});
});
describe('joinPath', () => {
it('should join path segments', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.joinPath('a', 'b', 'c')).to.equal(path.join('a', 'b', 'c'));
});
});
describe('listDirectory', () => {
it('should list directory contents', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
fs.writeFileSync(path.join(tmpDir, 'file1.txt'), 'test');
fs.writeFileSync(path.join(tmpDir, 'file2.txt'), 'test');
fs.mkdirSync(path.join(tmpDir, 'subdir'));
const entries = services.listDirectory(tmpDir);
expect(entries.length).to.be.greaterThan(0);
const names = entries.map((e) => e.name);
expect(names).to.include('file1.txt');
expect(names).to.include('file2.txt');
expect(names).to.include('subdir');
});
});
describe('readFile', () => {
it('should read file with default encoding', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
const testFile = path.join(tmpDir, 'test.txt');
const content = 'test content';
fs.writeFileSync(testFile, content);
expect(services.readFile(testFile)).to.equal(content);
});
it('should read file with specified encoding', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
const testFile = path.join(tmpDir, 'test.txt');
const content = 'test content';
fs.writeFileSync(testFile, content);
expect(services.readFile(testFile, 'utf8')).to.equal(content);
});
});
describe('resolvePath', () => {
it('should resolve path segments', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
expect(services.resolvePath('a', 'b', 'c')).to.equal(path.resolve('a', 'b', 'c'));
});
});
describe('stat', () => {
it('should return file stats', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
const testFile = path.join(tmpDir, 'test.txt');
fs.writeFileSync(testFile, 'test');
const stats = services.stat(testFile);
expect(stats.isFile()).to.be.true;
expect(stats.size).to.be.greaterThan(0);
});
it('should return directory stats', () => {
const config = createMockResolvedConfig();
const services = new Services({resolvedConfig: config});
const stats = services.stat(tmpDir);
expect(stats.isDirectory()).to.be.true;
});
});
});