@app-connect/core 1.7.36 → 1.7.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -16
- package/dist/connector/developerPortal.d.ts +6 -0
- package/{connector → dist/connector}/developerPortal.js +29 -12
- package/dist/connector/mock.d.ts +1 -0
- package/{connector → dist/connector}/mock.js +33 -17
- package/dist/connector/proxy/engine.d.ts +10 -0
- package/dist/connector/proxy/engine.js +222 -0
- package/dist/connector/proxy/index.d.ts +5 -0
- package/dist/connector/proxy/index.js +511 -0
- package/dist/connector/registry.d.ts +1 -0
- package/dist/connector/registry.js +243 -0
- package/dist/handlers/admin.d.ts +1 -0
- package/{handlers → dist/handlers}/admin.js +137 -78
- package/dist/handlers/appointment.d.ts +9 -0
- package/{handlers → dist/handlers}/appointment.js +58 -29
- package/dist/handlers/auth.d.ts +9 -0
- package/{handlers → dist/handlers}/auth.js +68 -40
- package/dist/handlers/calldown.d.ts +10 -0
- package/dist/handlers/calldown.js +134 -0
- package/dist/handlers/contact.d.ts +1 -0
- package/{handlers → dist/handlers}/contact.js +61 -39
- package/dist/handlers/disposition.d.ts +1 -0
- package/{handlers → dist/handlers}/disposition.js +20 -10
- package/dist/handlers/log.d.ts +1 -0
- package/{handlers → dist/handlers}/log.js +91 -124
- package/dist/handlers/managedAuth.d.ts +1 -0
- package/{handlers → dist/handlers}/managedAuth.js +134 -61
- package/dist/handlers/managedOAuth.d.ts +13 -0
- package/{handlers → dist/handlers}/managedOAuth.js +102 -30
- package/dist/handlers/plugin.d.ts +1 -0
- package/{handlers → dist/handlers}/plugin.js +59 -27
- package/dist/handlers/user.d.ts +1 -0
- package/{handlers → dist/handlers}/user.js +45 -27
- package/dist/index.d.ts +1 -0
- package/{index.js → dist/index.js} +548 -450
- package/dist/jest.config.d.ts +1 -0
- package/dist/jest.config.js +65 -0
- package/dist/lib/analytics.d.ts +4 -0
- package/{lib → dist/lib}/analytics.js +8 -6
- package/dist/lib/authSession.d.ts +5 -0
- package/{lib → dist/lib}/authSession.js +15 -43
- package/dist/lib/cacheCleanup.d.ts +4 -0
- package/{lib → dist/lib}/cacheCleanup.js +5 -17
- package/dist/lib/callLogComposer.d.ts +109 -0
- package/{lib → dist/lib}/callLogComposer.js +157 -197
- package/dist/lib/callLogLookup.d.ts +6 -0
- package/{lib → dist/lib}/callLogLookup.js +12 -34
- package/dist/lib/constants.d.ts +6 -0
- package/dist/lib/constants.js +9 -0
- package/dist/lib/debugTracer.d.ts +17 -0
- package/{lib → dist/lib}/debugTracer.js +7 -83
- package/dist/lib/encode.d.ts +3 -0
- package/dist/lib/encode.js +50 -0
- package/dist/lib/errorHandler.d.ts +7 -0
- package/dist/lib/errorHandler.js +161 -0
- package/dist/lib/generalErrorMessage.d.ts +7 -0
- package/{lib → dist/lib}/generalErrorMessage.js +6 -6
- package/dist/lib/jwt.d.ts +4 -0
- package/dist/lib/jwt.js +18 -0
- package/dist/lib/logger.d.ts +24 -0
- package/dist/lib/logger.js +126 -0
- package/dist/lib/migrateCallLogsSchema.d.ts +32 -0
- package/dist/lib/migrateCallLogsSchema.js +339 -0
- package/dist/lib/oauth.d.ts +4 -0
- package/{lib → dist/lib}/oauth.js +157 -160
- package/dist/lib/ringcentral.d.ts +24 -0
- package/dist/lib/ringcentral.js +226 -0
- package/dist/lib/s3ErrorLogReport.d.ts +4 -0
- package/{lib → dist/lib}/s3ErrorLogReport.js +11 -23
- package/dist/lib/sharedSMSComposer.d.ts +7 -0
- package/{lib → dist/lib}/sharedSMSComposer.js +21 -107
- package/dist/lib/util.d.ts +7 -0
- package/{lib → dist/lib}/util.js +9 -20
- package/dist/mcp/lib/oauthError.d.ts +1 -0
- package/dist/mcp/lib/oauthError.js +25 -0
- package/dist/mcp/lib/validator.d.ts +1 -0
- package/{mcp → dist/mcp}/lib/validator.js +16 -20
- package/dist/mcp/lib/widgetSessionToken.d.ts +1 -0
- package/dist/mcp/lib/widgetSessionToken.js +46 -0
- package/dist/mcp/mcpHandler.d.ts +8 -0
- package/{mcp → dist/mcp}/mcpHandler.js +98 -88
- package/dist/mcp/tools/cancelAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/cancelAppointment.js +7 -16
- package/dist/mcp/tools/checkAuthStatus.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/checkAuthStatus.js +21 -14
- package/dist/mcp/tools/confirmAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/confirmAppointment.js +7 -16
- package/dist/mcp/tools/createAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createAppointment.js +7 -19
- package/dist/mcp/tools/createCallLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createCallLog.js +18 -29
- package/dist/mcp/tools/createContact.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createContact.js +8 -20
- package/dist/mcp/tools/createMessageLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/createMessageLog.js +14 -26
- package/dist/mcp/tools/doAuth.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/doAuth.js +17 -13
- package/dist/mcp/tools/findContactByName.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/findContactByName.js +9 -15
- package/dist/mcp/tools/findContactByPhone.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/findContactByPhone.js +8 -15
- package/dist/mcp/tools/getCallLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getCallLog.js +12 -21
- package/dist/mcp/tools/getGoogleFilePicker.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getGoogleFilePicker.js +9 -18
- package/dist/mcp/tools/getHelp.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getHelp.js +5 -6
- package/dist/mcp/tools/getPublicConnectors.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getPublicConnectors.js +19 -18
- package/dist/mcp/tools/getSessionInfo.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/getSessionInfo.js +10 -16
- package/dist/mcp/tools/index.d.ts +8 -0
- package/dist/mcp/tools/index.js +50 -0
- package/dist/mcp/tools/listAppointments.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/listAppointments.js +7 -19
- package/dist/mcp/tools/logout.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/logout.js +16 -14
- package/dist/mcp/tools/rcGetCallLogs.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/rcGetCallLogs.js +10 -8
- package/dist/mcp/tools/updateAppointment.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/updateAppointment.js +17 -22
- package/dist/mcp/tools/updateCallLog.d.ts +1 -0
- package/{mcp → dist/mcp}/tools/updateCallLog.js +16 -26
- package/dist/models/accountDataModel.d.ts +3 -0
- package/dist/models/accountDataModel.js +39 -0
- package/dist/models/adminConfigModel.d.ts +2 -0
- package/dist/models/adminConfigModel.js +39 -0
- package/dist/models/cacheModel.d.ts +2 -0
- package/{models → dist/models}/cacheModel.js +7 -3
- package/dist/models/callDownListModel.d.ts +2 -0
- package/{models → dist/models}/callDownListModel.js +8 -4
- package/dist/models/callLogModel.d.ts +2 -0
- package/dist/models/callLogModel.js +43 -0
- package/dist/models/dynamo/connectorSchema.d.ts +2 -0
- package/dist/models/dynamo/connectorSchema.js +141 -0
- package/dist/models/dynamo/lockSchema.d.ts +2 -0
- package/{models → dist/models}/dynamo/lockSchema.js +5 -7
- package/dist/models/dynamo/noteCacheSchema.d.ts +2 -0
- package/{models → dist/models}/dynamo/noteCacheSchema.js +4 -6
- package/dist/models/llmSessionModel.d.ts +2 -0
- package/dist/models/llmSessionModel.js +21 -0
- package/dist/models/messageLogModel.d.ts +2 -0
- package/{models → dist/models}/messageLogModel.js +8 -4
- package/dist/models/sequelize.d.ts +2 -0
- package/dist/models/sequelize.js +68 -0
- package/dist/models/userModel.d.ts +2 -0
- package/dist/models/userModel.js +49 -0
- package/dist/package.json +100 -0
- package/dist/releaseNotes.json +1222 -0
- package/dist/tsconfig.json +14 -0
- package/dist/types/admin.d.ts +141 -0
- package/dist/types/analytics.d.ts +14 -0
- package/dist/types/appointment.d.ts +50 -0
- package/dist/types/auth.d.ts +137 -0
- package/dist/types/authSession.d.ts +35 -0
- package/dist/types/cacheCleanup.d.ts +12 -0
- package/dist/types/calldown.d.ts +54 -0
- package/dist/types/common.d.ts +46 -0
- package/dist/types/connector.d.ts +165 -0
- package/dist/types/contact.d.ts +125 -0
- package/dist/types/errorHandler.d.ts +60 -0
- package/dist/types/index.d.ts +76 -0
- package/dist/types/json.d.ts +9 -0
- package/dist/types/jwt.d.ts +8 -0
- package/dist/types/logging.d.ts +224 -0
- package/dist/types/managedAuth.d.ts +114 -0
- package/dist/types/managedOAuth.d.ts +59 -0
- package/dist/types/manifest.d.ts +120 -0
- package/dist/types/migration.d.ts +15 -0
- package/dist/types/plugin.d.ts +74 -0
- package/dist/types/ringcentral.d.ts +61 -0
- package/dist/types/s3ErrorLogReport.d.ts +16 -0
- package/dist/types/sharedSMSComposer.d.ts +105 -0
- package/dist/types/user.d.ts +46 -0
- package/dist/types/util.d.ts +7 -0
- package/package.json +34 -6
- package/releaseNotes.json +13 -1
- package/.env.test +0 -5
- package/connector/proxy/engine.js +0 -165
- package/connector/proxy/index.js +0 -500
- package/connector/registry.js +0 -252
- package/docs/README.md +0 -50
- package/docs/architecture.md +0 -94
- package/docs/connectors.md +0 -116
- package/docs/handlers.md +0 -128
- package/docs/libraries.md +0 -98
- package/docs/models.md +0 -146
- package/docs/routes.md +0 -119
- package/docs/tests.md +0 -73
- package/handlers/calldown.js +0 -99
- package/jest.config.js +0 -57
- package/lib/constants.js +0 -9
- package/lib/encode.js +0 -30
- package/lib/errorHandler.js +0 -218
- package/lib/jwt.js +0 -18
- package/lib/logger.js +0 -190
- package/lib/migrateCallLogsSchema.js +0 -237
- package/lib/ringcentral.js +0 -267
- package/mcp/README.md +0 -420
- package/mcp/tools/index.js +0 -51
- package/mcp/ui/App/App.tsx +0 -358
- package/mcp/ui/App/components/AuthInfoForm.tsx +0 -113
- package/mcp/ui/App/components/AuthSuccess.tsx +0 -22
- package/mcp/ui/App/components/ConnectorList.tsx +0 -82
- package/mcp/ui/App/components/DebugPanel.tsx +0 -43
- package/mcp/ui/App/components/OAuthConnect.tsx +0 -270
- package/mcp/ui/App/lib/callTool.ts +0 -130
- package/mcp/ui/App/lib/debugLog.ts +0 -41
- package/mcp/ui/App/lib/developerPortal.ts +0 -111
- package/mcp/ui/App/main.css +0 -6
- package/mcp/ui/App/root.tsx +0 -13
- package/mcp/ui/dist/index.html +0 -53
- package/mcp/ui/vite.config.ts +0 -16
- package/models/accountDataModel.js +0 -34
- package/models/adminConfigModel.js +0 -35
- package/models/callLogModel.js +0 -39
- package/models/dynamo/connectorSchema.js +0 -146
- package/models/llmSessionModel.js +0 -17
- package/models/sequelize.js +0 -17
- package/models/userModel.js +0 -45
- package/test/connector/developerPortal.test.js +0 -166
- package/test/connector/mock.test.js +0 -131
- package/test/connector/proxy/engine.test.js +0 -211
- package/test/connector/proxy/index.test.js +0 -525
- package/test/connector/proxy/sample.json +0 -162
- package/test/connector/registry.test.js +0 -416
- package/test/handlers/admin.test.js +0 -960
- package/test/handlers/appointment.test.js +0 -260
- package/test/handlers/auth.test.js +0 -1096
- package/test/handlers/calldown.test.js +0 -310
- package/test/handlers/contact.test.js +0 -1014
- package/test/handlers/disposition.test.js +0 -396
- package/test/handlers/log.test.js +0 -1847
- package/test/handlers/managedAuth.test.js +0 -458
- package/test/handlers/managedOAuth.test.js +0 -262
- package/test/handlers/plugin.test.js +0 -429
- package/test/handlers/user.test.js +0 -381
- package/test/index.test.js +0 -301
- package/test/lib/analytics.test.js +0 -146
- package/test/lib/authSession.test.js +0 -173
- package/test/lib/cacheCleanup.test.js +0 -127
- package/test/lib/callLogComposer.test.js +0 -1231
- package/test/lib/debugTracer.test.js +0 -328
- package/test/lib/encode.test.js +0 -59
- package/test/lib/errorHandler.test.js +0 -246
- package/test/lib/generalErrorMessage.test.js +0 -82
- package/test/lib/jwt.test.js +0 -176
- package/test/lib/logger.test.js +0 -206
- package/test/lib/oauth.test.js +0 -359
- package/test/lib/ringcentral.test.js +0 -467
- package/test/lib/s3ErrorLogReport.test.js +0 -187
- package/test/lib/sharedSMSComposer.test.js +0 -1084
- package/test/lib/util.test.js +0 -329
- package/test/mcp/mcpHandler.test.js +0 -73
- package/test/mcp/mcpHandlerMore.test.js +0 -384
- package/test/mcp/tools/appointmentTools.test.js +0 -362
- package/test/mcp/tools/checkAuthStatus.test.js +0 -83
- package/test/mcp/tools/createCallLog.test.js +0 -436
- package/test/mcp/tools/createContact.test.js +0 -58
- package/test/mcp/tools/createMessageLog.test.js +0 -595
- package/test/mcp/tools/doAuth.test.js +0 -113
- package/test/mcp/tools/findContactByName.test.js +0 -275
- package/test/mcp/tools/findContactByPhone.test.js +0 -296
- package/test/mcp/tools/getCallLog.test.js +0 -298
- package/test/mcp/tools/getGoogleFilePicker.test.js +0 -281
- package/test/mcp/tools/getPublicConnectors.test.js +0 -107
- package/test/mcp/tools/getSessionInfo.test.js +0 -127
- package/test/mcp/tools/logout.test.js +0 -233
- package/test/mcp/tools/rcGetCallLogs.test.js +0 -56
- package/test/mcp/tools/updateCallLog.test.js +0 -360
- package/test/models/accountDataModel.test.js +0 -98
- package/test/models/callDownListModel.test.js +0 -125
- package/test/models/dynamo/connectorSchema.test.js +0 -189
- package/test/models/dynamo/lockSchema.test.js +0 -37
- package/test/models/dynamo/noteCacheSchema.test.js +0 -45
- package/test/models/llmSessionModel.test.js +0 -91
- package/test/models/models.test.js +0 -660
- package/test/routes/calldownRoutes.test.js +0 -224
- package/test/routes/coreRouterBroadRoutes.test.js +0 -855
- package/test/routes/dispositionRoutes.test.js +0 -192
- package/test/routes/managedAuthRoutes.test.js +0 -386
- package/test/routes/pluginRoutes.test.js +0 -262
- package/test/setup.js +0 -178
- /package/{mcp → dist/mcp}/ui/index.html +0 -0
- /package/{mcp → dist/mcp}/ui/package-lock.json +0 -0
- /package/{mcp → dist/mcp}/ui/package.json +0 -0
- /package/{mcp → dist/mcp}/ui/tsconfig.json +0 -0
|
@@ -1,467 +0,0 @@
|
|
|
1
|
-
jest.mock('node-fetch');
|
|
2
|
-
|
|
3
|
-
const fetch = require('node-fetch');
|
|
4
|
-
const { RingCentral, isRefreshTokenValid, isAccessTokenValid } = require('../../lib/ringcentral');
|
|
5
|
-
|
|
6
|
-
describe('ringcentral', () => {
|
|
7
|
-
beforeEach(() => {
|
|
8
|
-
jest.clearAllMocks();
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
describe('isRefreshTokenValid', () => {
|
|
12
|
-
test('should return true if refresh token is not expired', () => {
|
|
13
|
-
const token = {
|
|
14
|
-
refresh_token_expire_time: Date.now() + 60000 // 1 minute in future
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
expect(isRefreshTokenValid(token)).toBe(true);
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
test('should return false if refresh token is expired', () => {
|
|
21
|
-
const token = {
|
|
22
|
-
refresh_token_expire_time: Date.now() - 1000 // 1 second ago
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
expect(isRefreshTokenValid(token)).toBe(false);
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
test('should respect custom handicap', () => {
|
|
29
|
-
const token = {
|
|
30
|
-
refresh_token_expire_time: Date.now() + 5000 // 5 seconds in future
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
// With 10s handicap, should be invalid
|
|
34
|
-
expect(isRefreshTokenValid(token, 10000)).toBe(false);
|
|
35
|
-
|
|
36
|
-
// With 1s handicap, should be valid
|
|
37
|
-
expect(isRefreshTokenValid(token, 1000)).toBe(true);
|
|
38
|
-
});
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
describe('isAccessTokenValid', () => {
|
|
42
|
-
test('should return true if access token is not expired', () => {
|
|
43
|
-
const token = {
|
|
44
|
-
expire_time: Date.now() + 120000 // 2 minutes in future
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
expect(isAccessTokenValid(token)).toBe(true);
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
test('should return false if access token is expired', () => {
|
|
51
|
-
const token = {
|
|
52
|
-
expire_time: Date.now() - 1000
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
expect(isAccessTokenValid(token)).toBe(false);
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
test('should respect default 1 minute handicap', () => {
|
|
59
|
-
const token = {
|
|
60
|
-
expire_time: Date.now() + 30000 // 30 seconds in future
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
// With default 1 minute handicap, should be invalid
|
|
64
|
-
expect(isAccessTokenValid(token)).toBe(false);
|
|
65
|
-
});
|
|
66
|
-
});
|
|
67
|
-
|
|
68
|
-
describe('RingCentral class', () => {
|
|
69
|
-
let rc;
|
|
70
|
-
const options = {
|
|
71
|
-
server: 'https://platform.ringcentral.com',
|
|
72
|
-
clientId: 'test-client-id',
|
|
73
|
-
clientSecret: 'test-client-secret',
|
|
74
|
-
redirectUri: 'https://app.example.com/callback'
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
beforeEach(() => {
|
|
78
|
-
rc = new RingCentral(options);
|
|
79
|
-
});
|
|
80
|
-
|
|
81
|
-
describe('loginUrl', () => {
|
|
82
|
-
test('should generate login URL with required parameters', () => {
|
|
83
|
-
const url = rc.loginUrl({});
|
|
84
|
-
|
|
85
|
-
expect(url).toContain('https://platform.ringcentral.com/restapi/oauth/authorize');
|
|
86
|
-
expect(url).toContain('response_type=code');
|
|
87
|
-
expect(url).toContain(`client_id=${options.clientId}`);
|
|
88
|
-
expect(url).toContain(`redirect_uri=${encodeURIComponent(options.redirectUri)}`);
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
test('should include state parameter when provided', () => {
|
|
92
|
-
const url = rc.loginUrl({ state: 'custom-state-123' });
|
|
93
|
-
|
|
94
|
-
expect(url).toContain('state=custom-state-123');
|
|
95
|
-
});
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
describe('generateToken', () => {
|
|
99
|
-
test('should generate token successfully', async () => {
|
|
100
|
-
const mockResponse = {
|
|
101
|
-
status: 200,
|
|
102
|
-
json: jest.fn().mockResolvedValue({
|
|
103
|
-
access_token: 'new-access-token',
|
|
104
|
-
refresh_token: 'new-refresh-token',
|
|
105
|
-
token_type: 'bearer',
|
|
106
|
-
expires_in: 3600,
|
|
107
|
-
refresh_token_expires_in: 604800,
|
|
108
|
-
scope: 'ReadAccounts',
|
|
109
|
-
endpoint_id: 'endpoint-123'
|
|
110
|
-
})
|
|
111
|
-
};
|
|
112
|
-
fetch.mockResolvedValue(mockResponse);
|
|
113
|
-
|
|
114
|
-
const result = await rc.generateToken({ code: 'auth-code-123' });
|
|
115
|
-
|
|
116
|
-
expect(fetch).toHaveBeenCalledWith(
|
|
117
|
-
'https://platform.ringcentral.com/restapi/oauth/token',
|
|
118
|
-
expect.objectContaining({
|
|
119
|
-
method: 'POST',
|
|
120
|
-
headers: expect.objectContaining({
|
|
121
|
-
'Content-Type': 'application/x-www-form-urlencoded'
|
|
122
|
-
})
|
|
123
|
-
})
|
|
124
|
-
);
|
|
125
|
-
expect(result.access_token).toBe('new-access-token');
|
|
126
|
-
expect(result.refresh_token).toBe('new-refresh-token');
|
|
127
|
-
expect(result.expire_time).toBeDefined();
|
|
128
|
-
expect(result.refresh_token_expire_time).toBeDefined();
|
|
129
|
-
});
|
|
130
|
-
|
|
131
|
-
test('should throw error on failed token generation', async () => {
|
|
132
|
-
const mockResponse = { status: 401 };
|
|
133
|
-
fetch.mockResolvedValue(mockResponse);
|
|
134
|
-
|
|
135
|
-
await expect(rc.generateToken({ code: 'invalid-code' }))
|
|
136
|
-
.rejects.toThrow('Generate Token error');
|
|
137
|
-
});
|
|
138
|
-
});
|
|
139
|
-
|
|
140
|
-
describe('refreshToken', () => {
|
|
141
|
-
test('should refresh token successfully', async () => {
|
|
142
|
-
const existingToken = {
|
|
143
|
-
refresh_token: 'old-refresh-token',
|
|
144
|
-
expires_in: 3600,
|
|
145
|
-
refresh_token_expires_in: 604800
|
|
146
|
-
};
|
|
147
|
-
|
|
148
|
-
const mockResponse = {
|
|
149
|
-
status: 200,
|
|
150
|
-
json: jest.fn().mockResolvedValue({
|
|
151
|
-
access_token: 'refreshed-access-token',
|
|
152
|
-
refresh_token: 'new-refresh-token',
|
|
153
|
-
token_type: 'bearer',
|
|
154
|
-
expires_in: 3600,
|
|
155
|
-
refresh_token_expires_in: 604800,
|
|
156
|
-
scope: 'ReadAccounts',
|
|
157
|
-
endpoint_id: 'endpoint-456'
|
|
158
|
-
})
|
|
159
|
-
};
|
|
160
|
-
fetch.mockResolvedValue(mockResponse);
|
|
161
|
-
|
|
162
|
-
const result = await rc.refreshToken(existingToken);
|
|
163
|
-
|
|
164
|
-
expect(result.access_token).toBe('refreshed-access-token');
|
|
165
|
-
expect(result.refresh_token).toBe('new-refresh-token');
|
|
166
|
-
expect(result.expire_time).toBeDefined();
|
|
167
|
-
});
|
|
168
|
-
|
|
169
|
-
test('should throw error on failed refresh', async () => {
|
|
170
|
-
const mockResponse = { status: 401 };
|
|
171
|
-
fetch.mockResolvedValue(mockResponse);
|
|
172
|
-
|
|
173
|
-
await expect(rc.refreshToken({ refresh_token: 'expired' }))
|
|
174
|
-
.rejects.toThrow('Refresh Token error');
|
|
175
|
-
});
|
|
176
|
-
});
|
|
177
|
-
|
|
178
|
-
describe('revokeToken', () => {
|
|
179
|
-
test('should revoke token successfully', async () => {
|
|
180
|
-
const mockResponse = { status: 200 };
|
|
181
|
-
fetch.mockResolvedValue(mockResponse);
|
|
182
|
-
|
|
183
|
-
await expect(rc.revokeToken({ access_token: 'token-to-revoke' }))
|
|
184
|
-
.resolves.not.toThrow();
|
|
185
|
-
|
|
186
|
-
expect(fetch).toHaveBeenCalledWith(
|
|
187
|
-
'https://platform.ringcentral.com/restapi/oauth/revoke',
|
|
188
|
-
expect.objectContaining({ method: 'POST' })
|
|
189
|
-
);
|
|
190
|
-
});
|
|
191
|
-
|
|
192
|
-
test('should throw error on failed revocation', async () => {
|
|
193
|
-
const mockResponse = { status: 500 };
|
|
194
|
-
fetch.mockResolvedValue(mockResponse);
|
|
195
|
-
|
|
196
|
-
await expect(rc.revokeToken({ access_token: 'token' }))
|
|
197
|
-
.rejects.toThrow('Revoke Token error');
|
|
198
|
-
});
|
|
199
|
-
});
|
|
200
|
-
|
|
201
|
-
describe('request', () => {
|
|
202
|
-
const token = {
|
|
203
|
-
token_type: 'bearer',
|
|
204
|
-
access_token: 'test-access-token'
|
|
205
|
-
};
|
|
206
|
-
|
|
207
|
-
test('should make authenticated request', async () => {
|
|
208
|
-
const mockResponse = {
|
|
209
|
-
status: 200,
|
|
210
|
-
json: jest.fn().mockResolvedValue({ data: 'test' })
|
|
211
|
-
};
|
|
212
|
-
fetch.mockResolvedValue(mockResponse);
|
|
213
|
-
|
|
214
|
-
const response = await rc.request({
|
|
215
|
-
path: '/restapi/v1.0/account/~',
|
|
216
|
-
method: 'GET'
|
|
217
|
-
}, token);
|
|
218
|
-
|
|
219
|
-
expect(fetch).toHaveBeenCalledWith(
|
|
220
|
-
'https://platform.ringcentral.com/restapi/v1.0/account/~',
|
|
221
|
-
expect.objectContaining({
|
|
222
|
-
method: 'GET',
|
|
223
|
-
headers: expect.objectContaining({
|
|
224
|
-
'Authorization': 'bearer test-access-token'
|
|
225
|
-
})
|
|
226
|
-
})
|
|
227
|
-
);
|
|
228
|
-
expect(response).toBe(mockResponse);
|
|
229
|
-
});
|
|
230
|
-
|
|
231
|
-
test('should include query parameters', async () => {
|
|
232
|
-
const mockResponse = { status: 200 };
|
|
233
|
-
fetch.mockResolvedValue(mockResponse);
|
|
234
|
-
|
|
235
|
-
await rc.request({
|
|
236
|
-
path: '/restapi/v1.0/extension/~/call-log',
|
|
237
|
-
method: 'GET',
|
|
238
|
-
query: { dateFrom: '2024-01-01', dateTo: '2024-01-31' }
|
|
239
|
-
}, token);
|
|
240
|
-
|
|
241
|
-
expect(fetch).toHaveBeenCalledWith(
|
|
242
|
-
expect.stringContaining('dateFrom=2024-01-01'),
|
|
243
|
-
expect.any(Object)
|
|
244
|
-
);
|
|
245
|
-
});
|
|
246
|
-
|
|
247
|
-
test('should include JSON body', async () => {
|
|
248
|
-
const mockResponse = { status: 200 };
|
|
249
|
-
fetch.mockResolvedValue(mockResponse);
|
|
250
|
-
|
|
251
|
-
await rc.request({
|
|
252
|
-
path: '/restapi/v1.0/subscription',
|
|
253
|
-
method: 'POST',
|
|
254
|
-
body: { eventFilters: ['/restapi/v1.0/account/~/extension/~/presence'] }
|
|
255
|
-
}, token);
|
|
256
|
-
|
|
257
|
-
expect(fetch).toHaveBeenCalledWith(
|
|
258
|
-
expect.any(String),
|
|
259
|
-
expect.objectContaining({
|
|
260
|
-
method: 'POST',
|
|
261
|
-
body: expect.stringContaining('eventFilters')
|
|
262
|
-
})
|
|
263
|
-
);
|
|
264
|
-
});
|
|
265
|
-
|
|
266
|
-
test('should throw error on failed request', async () => {
|
|
267
|
-
const mockResponse = {
|
|
268
|
-
status: 401,
|
|
269
|
-
text: jest.fn().mockResolvedValue('Unauthorized')
|
|
270
|
-
};
|
|
271
|
-
fetch.mockResolvedValue(mockResponse);
|
|
272
|
-
|
|
273
|
-
await expect(rc.request({ path: '/test', method: 'GET' }, token))
|
|
274
|
-
.rejects.toThrow('Unauthorized');
|
|
275
|
-
});
|
|
276
|
-
|
|
277
|
-
test('should use custom server if provided', async () => {
|
|
278
|
-
const mockResponse = { status: 200 };
|
|
279
|
-
fetch.mockResolvedValue(mockResponse);
|
|
280
|
-
|
|
281
|
-
await rc.request({
|
|
282
|
-
server: 'https://custom-server.com',
|
|
283
|
-
path: '/api/test',
|
|
284
|
-
method: 'GET'
|
|
285
|
-
}, token);
|
|
286
|
-
|
|
287
|
-
expect(fetch).toHaveBeenCalledWith(
|
|
288
|
-
'https://custom-server.com/api/test',
|
|
289
|
-
expect.any(Object)
|
|
290
|
-
);
|
|
291
|
-
});
|
|
292
|
-
});
|
|
293
|
-
|
|
294
|
-
describe('createSubscription', () => {
|
|
295
|
-
const token = { token_type: 'bearer', access_token: 'token' };
|
|
296
|
-
|
|
297
|
-
test('should create webhook subscription', async () => {
|
|
298
|
-
const mockResponse = {
|
|
299
|
-
status: 200,
|
|
300
|
-
json: jest.fn().mockResolvedValue({
|
|
301
|
-
id: 'sub-123',
|
|
302
|
-
expirationTime: '2024-01-20T00:00:00Z',
|
|
303
|
-
uri: 'https://platform.ringcentral.com/subscription/sub-123',
|
|
304
|
-
creationTime: '2024-01-13T00:00:00Z',
|
|
305
|
-
deliveryMode: { transportType: 'WebHook' },
|
|
306
|
-
status: 'Active'
|
|
307
|
-
})
|
|
308
|
-
};
|
|
309
|
-
fetch.mockResolvedValue(mockResponse);
|
|
310
|
-
|
|
311
|
-
const result = await rc.createSubscription({
|
|
312
|
-
eventFilters: ['/restapi/v1.0/account/~/extension/~/presence'],
|
|
313
|
-
webhookUri: 'https://app.example.com/webhook'
|
|
314
|
-
}, token);
|
|
315
|
-
|
|
316
|
-
expect(result.id).toBe('sub-123');
|
|
317
|
-
});
|
|
318
|
-
});
|
|
319
|
-
|
|
320
|
-
describe('getExtensionInfo', () => {
|
|
321
|
-
const token = { token_type: 'bearer', access_token: 'token' };
|
|
322
|
-
|
|
323
|
-
test('should get extension info', async () => {
|
|
324
|
-
const extensionInfo = {
|
|
325
|
-
id: 12345,
|
|
326
|
-
name: 'John Doe',
|
|
327
|
-
extensionNumber: '101'
|
|
328
|
-
};
|
|
329
|
-
const mockResponse = {
|
|
330
|
-
status: 200,
|
|
331
|
-
json: jest.fn().mockResolvedValue(extensionInfo)
|
|
332
|
-
};
|
|
333
|
-
fetch.mockResolvedValue(mockResponse);
|
|
334
|
-
|
|
335
|
-
const result = await rc.getExtensionInfo('~', token);
|
|
336
|
-
|
|
337
|
-
expect(result).toEqual(extensionInfo);
|
|
338
|
-
});
|
|
339
|
-
});
|
|
340
|
-
|
|
341
|
-
describe('getAccountInfo', () => {
|
|
342
|
-
const token = { token_type: 'bearer', access_token: 'token' };
|
|
343
|
-
|
|
344
|
-
test('should get account info', async () => {
|
|
345
|
-
const accountInfo = {
|
|
346
|
-
id: 'account-123',
|
|
347
|
-
mainNumber: '+1234567890'
|
|
348
|
-
};
|
|
349
|
-
const mockResponse = {
|
|
350
|
-
status: 200,
|
|
351
|
-
json: jest.fn().mockResolvedValue(accountInfo)
|
|
352
|
-
};
|
|
353
|
-
fetch.mockResolvedValue(mockResponse);
|
|
354
|
-
|
|
355
|
-
const result = await rc.getAccountInfo(token);
|
|
356
|
-
|
|
357
|
-
expect(result).toEqual(accountInfo);
|
|
358
|
-
});
|
|
359
|
-
});
|
|
360
|
-
|
|
361
|
-
describe('getCallsAggregationData', () => {
|
|
362
|
-
const token = { token_type: 'bearer', access_token: 'token' };
|
|
363
|
-
|
|
364
|
-
test('should get calls aggregation data', async () => {
|
|
365
|
-
const aggregationData = {
|
|
366
|
-
records: [{ callsCount: 100, duration: 36000 }]
|
|
367
|
-
};
|
|
368
|
-
const mockResponse = {
|
|
369
|
-
status: 200,
|
|
370
|
-
json: jest.fn().mockResolvedValue(aggregationData)
|
|
371
|
-
};
|
|
372
|
-
fetch.mockResolvedValue(mockResponse);
|
|
373
|
-
|
|
374
|
-
const result = await rc.getCallsAggregationData({
|
|
375
|
-
token,
|
|
376
|
-
timezone: 'America/New_York',
|
|
377
|
-
timeFrom: '2024-01-01',
|
|
378
|
-
timeTo: '2024-01-31',
|
|
379
|
-
groupBy: 'Users'
|
|
380
|
-
});
|
|
381
|
-
|
|
382
|
-
expect(result).toEqual(aggregationData);
|
|
383
|
-
expect(fetch).toHaveBeenCalledWith(
|
|
384
|
-
expect.stringContaining('/analytics/calls/v1/accounts/~/aggregation/fetch'),
|
|
385
|
-
expect.objectContaining({ method: 'POST' })
|
|
386
|
-
);
|
|
387
|
-
});
|
|
388
|
-
});
|
|
389
|
-
|
|
390
|
-
describe('getCallLogData', () => {
|
|
391
|
-
const token = { token_type: 'bearer', access_token: 'token' };
|
|
392
|
-
|
|
393
|
-
test('should get call log data with pagination', async () => {
|
|
394
|
-
const page1 = {
|
|
395
|
-
records: [{ id: 'call-1' }, { id: 'call-2' }],
|
|
396
|
-
navigation: { nextPage: { uri: 'next-page' } }
|
|
397
|
-
};
|
|
398
|
-
const page2 = {
|
|
399
|
-
records: [{ id: 'call-3' }],
|
|
400
|
-
navigation: {}
|
|
401
|
-
};
|
|
402
|
-
|
|
403
|
-
fetch
|
|
404
|
-
.mockResolvedValueOnce({ status: 200, json: () => Promise.resolve(page1) })
|
|
405
|
-
.mockResolvedValueOnce({ status: 200, json: () => Promise.resolve(page2) });
|
|
406
|
-
|
|
407
|
-
const result = await rc.getCallLogData({
|
|
408
|
-
token,
|
|
409
|
-
timezone: 'UTC',
|
|
410
|
-
timeFrom: '2024-01-01',
|
|
411
|
-
timeTo: '2024-01-31'
|
|
412
|
-
});
|
|
413
|
-
|
|
414
|
-
expect(result.records).toHaveLength(3);
|
|
415
|
-
expect(fetch).toHaveBeenCalledTimes(2);
|
|
416
|
-
});
|
|
417
|
-
|
|
418
|
-
test('should handle single page of results', async () => {
|
|
419
|
-
const response = {
|
|
420
|
-
records: [{ id: 'call-1' }],
|
|
421
|
-
navigation: {}
|
|
422
|
-
};
|
|
423
|
-
fetch.mockResolvedValue({ status: 200, json: () => Promise.resolve(response) });
|
|
424
|
-
|
|
425
|
-
const result = await rc.getCallLogData({
|
|
426
|
-
extensionId: '12345',
|
|
427
|
-
token,
|
|
428
|
-
timezone: 'UTC',
|
|
429
|
-
timeFrom: '2024-01-01',
|
|
430
|
-
timeTo: '2024-01-31'
|
|
431
|
-
});
|
|
432
|
-
|
|
433
|
-
expect(result.records).toHaveLength(1);
|
|
434
|
-
expect(fetch).toHaveBeenCalledTimes(1);
|
|
435
|
-
});
|
|
436
|
-
});
|
|
437
|
-
|
|
438
|
-
describe('getSMSData', () => {
|
|
439
|
-
const token = { token_type: 'bearer', access_token: 'token' };
|
|
440
|
-
|
|
441
|
-
test('should get SMS data with pagination', async () => {
|
|
442
|
-
const page1 = {
|
|
443
|
-
records: [{ id: 'sms-1' }],
|
|
444
|
-
navigation: { nextPage: { uri: 'next' } }
|
|
445
|
-
};
|
|
446
|
-
const page2 = {
|
|
447
|
-
records: [{ id: 'sms-2' }],
|
|
448
|
-
navigation: {}
|
|
449
|
-
};
|
|
450
|
-
|
|
451
|
-
fetch
|
|
452
|
-
.mockResolvedValueOnce({ status: 200, json: () => Promise.resolve(page1) })
|
|
453
|
-
.mockResolvedValueOnce({ status: 200, json: () => Promise.resolve(page2) });
|
|
454
|
-
|
|
455
|
-
const result = await rc.getSMSData({
|
|
456
|
-
token,
|
|
457
|
-
timezone: 'UTC',
|
|
458
|
-
timeFrom: '2024-01-01',
|
|
459
|
-
timeTo: '2024-01-31'
|
|
460
|
-
});
|
|
461
|
-
|
|
462
|
-
expect(result.records).toHaveLength(2);
|
|
463
|
-
});
|
|
464
|
-
});
|
|
465
|
-
});
|
|
466
|
-
});
|
|
467
|
-
|
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
const mockS3Send = jest.fn();
|
|
2
|
-
const mockGetSignedUrl = jest.fn();
|
|
3
|
-
const mockShortIdGenerate = jest.fn();
|
|
4
|
-
|
|
5
|
-
jest.mock('@aws-sdk/client-s3', () => {
|
|
6
|
-
class HeadBucketCommand {
|
|
7
|
-
constructor(input) {
|
|
8
|
-
this.input = input;
|
|
9
|
-
this.commandName = 'HeadBucketCommand';
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
class CreateBucketCommand {
|
|
14
|
-
constructor(input) {
|
|
15
|
-
this.input = input;
|
|
16
|
-
this.commandName = 'CreateBucketCommand';
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
class PutObjectCommand {
|
|
21
|
-
constructor(input) {
|
|
22
|
-
this.input = input;
|
|
23
|
-
this.commandName = 'PutObjectCommand';
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
class GetObjectCommand {
|
|
28
|
-
constructor(input) {
|
|
29
|
-
this.input = input;
|
|
30
|
-
this.commandName = 'GetObjectCommand';
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
return {
|
|
35
|
-
S3Client: jest.fn(() => ({
|
|
36
|
-
send: mockS3Send,
|
|
37
|
-
})),
|
|
38
|
-
HeadBucketCommand,
|
|
39
|
-
CreateBucketCommand,
|
|
40
|
-
PutObjectCommand,
|
|
41
|
-
GetObjectCommand,
|
|
42
|
-
};
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
jest.mock('@aws-sdk/s3-request-presigner', () => ({
|
|
46
|
-
getSignedUrl: mockGetSignedUrl,
|
|
47
|
-
}));
|
|
48
|
-
|
|
49
|
-
jest.mock('shortid', () => ({
|
|
50
|
-
generate: mockShortIdGenerate,
|
|
51
|
-
}));
|
|
52
|
-
|
|
53
|
-
const { getSignedUrl } = require('@aws-sdk/s3-request-presigner');
|
|
54
|
-
const {
|
|
55
|
-
CreateBucketCommand,
|
|
56
|
-
HeadBucketCommand,
|
|
57
|
-
PutObjectCommand,
|
|
58
|
-
} = require('@aws-sdk/client-s3');
|
|
59
|
-
const {
|
|
60
|
-
ensureBucketExists,
|
|
61
|
-
getUploadUrl,
|
|
62
|
-
} = require('../../lib/s3ErrorLogReport');
|
|
63
|
-
|
|
64
|
-
describe('s3ErrorLogReport', () => {
|
|
65
|
-
beforeEach(() => {
|
|
66
|
-
jest.clearAllMocks();
|
|
67
|
-
mockShortIdGenerate.mockReturnValue('report-123');
|
|
68
|
-
mockGetSignedUrl.mockResolvedValue('https://signed-upload.example.com/report');
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
afterEach(() => {
|
|
72
|
-
jest.useRealTimers();
|
|
73
|
-
});
|
|
74
|
-
|
|
75
|
-
describe('ensureBucketExists', () => {
|
|
76
|
-
test('checks bucket existence and does not create when the bucket exists', async () => {
|
|
77
|
-
mockS3Send.mockResolvedValueOnce({});
|
|
78
|
-
|
|
79
|
-
await ensureBucketExists();
|
|
80
|
-
|
|
81
|
-
expect(mockS3Send).toHaveBeenCalledTimes(1);
|
|
82
|
-
expect(mockS3Send.mock.calls[0][0]).toBeInstanceOf(HeadBucketCommand);
|
|
83
|
-
expect(mockS3Send.mock.calls[0][0].input).toEqual({
|
|
84
|
-
Bucket: 'error-reports-bucket',
|
|
85
|
-
});
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
test('creates the bucket when the local bucket is missing by name', async () => {
|
|
89
|
-
const notFound = new Error('missing');
|
|
90
|
-
notFound.name = 'NotFound';
|
|
91
|
-
mockS3Send
|
|
92
|
-
.mockRejectedValueOnce(notFound)
|
|
93
|
-
.mockResolvedValueOnce({});
|
|
94
|
-
|
|
95
|
-
await ensureBucketExists();
|
|
96
|
-
|
|
97
|
-
expect(mockS3Send).toHaveBeenCalledTimes(2);
|
|
98
|
-
expect(mockS3Send.mock.calls[0][0]).toBeInstanceOf(HeadBucketCommand);
|
|
99
|
-
expect(mockS3Send.mock.calls[1][0]).toBeInstanceOf(CreateBucketCommand);
|
|
100
|
-
expect(mockS3Send.mock.calls[1][0].input).toEqual({
|
|
101
|
-
Bucket: 'error-reports-bucket',
|
|
102
|
-
});
|
|
103
|
-
});
|
|
104
|
-
|
|
105
|
-
test('creates the bucket when the local bucket is missing by 404 metadata', async () => {
|
|
106
|
-
const notFound = new Error('missing');
|
|
107
|
-
notFound.$metadata = { httpStatusCode: 404 };
|
|
108
|
-
mockS3Send
|
|
109
|
-
.mockRejectedValueOnce(notFound)
|
|
110
|
-
.mockResolvedValueOnce({});
|
|
111
|
-
|
|
112
|
-
await ensureBucketExists();
|
|
113
|
-
|
|
114
|
-
expect(mockS3Send).toHaveBeenCalledTimes(2);
|
|
115
|
-
expect(mockS3Send.mock.calls[1][0]).toBeInstanceOf(CreateBucketCommand);
|
|
116
|
-
});
|
|
117
|
-
|
|
118
|
-
test('keeps current behavior of swallowing non-404 bucket check errors', async () => {
|
|
119
|
-
const accessDenied = new Error('access denied');
|
|
120
|
-
accessDenied.name = 'AccessDenied';
|
|
121
|
-
accessDenied.$metadata = { httpStatusCode: 403 };
|
|
122
|
-
mockS3Send.mockRejectedValueOnce(accessDenied);
|
|
123
|
-
|
|
124
|
-
await expect(ensureBucketExists()).resolves.toBeUndefined();
|
|
125
|
-
|
|
126
|
-
expect(mockS3Send).toHaveBeenCalledTimes(1);
|
|
127
|
-
expect(mockS3Send.mock.calls[0][0]).toBeInstanceOf(HeadBucketCommand);
|
|
128
|
-
});
|
|
129
|
-
});
|
|
130
|
-
|
|
131
|
-
describe('getUploadUrl', () => {
|
|
132
|
-
test('checks the local bucket, composes metadata and key, then requests a presigned URL', async () => {
|
|
133
|
-
jest.useFakeTimers().setSystemTime(new Date('2026-07-02T09:20:00.000Z'));
|
|
134
|
-
mockS3Send.mockResolvedValueOnce({});
|
|
135
|
-
|
|
136
|
-
const uploadUrl = await getUploadUrl({
|
|
137
|
-
userId: 'user-1',
|
|
138
|
-
platform: 'clio',
|
|
139
|
-
metadata: {
|
|
140
|
-
source: 'test-suite',
|
|
141
|
-
severity: 'warning',
|
|
142
|
-
},
|
|
143
|
-
});
|
|
144
|
-
|
|
145
|
-
expect(uploadUrl).toBe('https://signed-upload.example.com/report');
|
|
146
|
-
expect(mockS3Send).toHaveBeenCalledTimes(1);
|
|
147
|
-
expect(mockS3Send.mock.calls[0][0]).toBeInstanceOf(HeadBucketCommand);
|
|
148
|
-
expect(getSignedUrl).toHaveBeenCalledTimes(1);
|
|
149
|
-
expect(getSignedUrl.mock.calls[0][0]).toEqual(expect.objectContaining({
|
|
150
|
-
send: mockS3Send,
|
|
151
|
-
}));
|
|
152
|
-
expect(getSignedUrl.mock.calls[0][1]).toBeInstanceOf(PutObjectCommand);
|
|
153
|
-
expect(getSignedUrl.mock.calls[0][1].input).toEqual({
|
|
154
|
-
Bucket: 'error-reports-bucket',
|
|
155
|
-
Key: 'error-reports/2026-07-02/user-1-report-123.json',
|
|
156
|
-
ContentType: 'application/json',
|
|
157
|
-
Metadata: {
|
|
158
|
-
'user-id': 'user-1',
|
|
159
|
-
platform: 'clio',
|
|
160
|
-
source: 'test-suite',
|
|
161
|
-
severity: 'warning',
|
|
162
|
-
},
|
|
163
|
-
});
|
|
164
|
-
expect(getSignedUrl.mock.calls[0][2]).toEqual({
|
|
165
|
-
expiresIn: 300,
|
|
166
|
-
});
|
|
167
|
-
});
|
|
168
|
-
|
|
169
|
-
test('uses default metadata when no metadata object is provided', async () => {
|
|
170
|
-
jest.useFakeTimers().setSystemTime(new Date('2026-07-03T01:02:03.000Z'));
|
|
171
|
-
mockS3Send.mockResolvedValueOnce({});
|
|
172
|
-
|
|
173
|
-
await getUploadUrl({
|
|
174
|
-
userId: 'user-2',
|
|
175
|
-
platform: 'bullhorn',
|
|
176
|
-
});
|
|
177
|
-
|
|
178
|
-
expect(getSignedUrl.mock.calls[0][1].input).toMatchObject({
|
|
179
|
-
Key: 'error-reports/2026-07-03/user-2-report-123.json',
|
|
180
|
-
Metadata: {
|
|
181
|
-
'user-id': 'user-2',
|
|
182
|
-
platform: 'bullhorn',
|
|
183
|
-
},
|
|
184
|
-
});
|
|
185
|
-
});
|
|
186
|
-
});
|
|
187
|
-
});
|