@app-connect/core 1.7.37 → 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.
Files changed (286) hide show
  1. package/README.md +17 -16
  2. package/dist/connector/developerPortal.d.ts +6 -0
  3. package/{connector → dist/connector}/developerPortal.js +29 -12
  4. package/dist/connector/mock.d.ts +1 -0
  5. package/{connector → dist/connector}/mock.js +33 -17
  6. package/dist/connector/proxy/engine.d.ts +10 -0
  7. package/dist/connector/proxy/engine.js +222 -0
  8. package/dist/connector/proxy/index.d.ts +5 -0
  9. package/dist/connector/proxy/index.js +511 -0
  10. package/dist/connector/registry.d.ts +1 -0
  11. package/dist/connector/registry.js +243 -0
  12. package/dist/handlers/admin.d.ts +1 -0
  13. package/{handlers → dist/handlers}/admin.js +137 -78
  14. package/dist/handlers/appointment.d.ts +9 -0
  15. package/{handlers → dist/handlers}/appointment.js +58 -29
  16. package/dist/handlers/auth.d.ts +9 -0
  17. package/{handlers → dist/handlers}/auth.js +68 -40
  18. package/dist/handlers/calldown.d.ts +10 -0
  19. package/dist/handlers/calldown.js +134 -0
  20. package/dist/handlers/contact.d.ts +1 -0
  21. package/{handlers → dist/handlers}/contact.js +61 -39
  22. package/dist/handlers/disposition.d.ts +1 -0
  23. package/{handlers → dist/handlers}/disposition.js +20 -10
  24. package/dist/handlers/log.d.ts +1 -0
  25. package/{handlers → dist/handlers}/log.js +91 -124
  26. package/dist/handlers/managedAuth.d.ts +1 -0
  27. package/{handlers → dist/handlers}/managedAuth.js +134 -61
  28. package/dist/handlers/managedOAuth.d.ts +13 -0
  29. package/{handlers → dist/handlers}/managedOAuth.js +102 -30
  30. package/dist/handlers/plugin.d.ts +1 -0
  31. package/{handlers → dist/handlers}/plugin.js +59 -27
  32. package/dist/handlers/user.d.ts +1 -0
  33. package/{handlers → dist/handlers}/user.js +45 -27
  34. package/dist/index.d.ts +1 -0
  35. package/{index.js → dist/index.js} +538 -449
  36. package/dist/jest.config.d.ts +1 -0
  37. package/dist/jest.config.js +65 -0
  38. package/dist/lib/analytics.d.ts +4 -0
  39. package/{lib → dist/lib}/analytics.js +8 -6
  40. package/dist/lib/authSession.d.ts +5 -0
  41. package/{lib → dist/lib}/authSession.js +15 -43
  42. package/dist/lib/cacheCleanup.d.ts +4 -0
  43. package/{lib → dist/lib}/cacheCleanup.js +5 -17
  44. package/dist/lib/callLogComposer.d.ts +109 -0
  45. package/{lib → dist/lib}/callLogComposer.js +157 -197
  46. package/dist/lib/callLogLookup.d.ts +6 -0
  47. package/{lib → dist/lib}/callLogLookup.js +12 -34
  48. package/dist/lib/constants.d.ts +6 -0
  49. package/dist/lib/constants.js +9 -0
  50. package/dist/lib/debugTracer.d.ts +17 -0
  51. package/{lib → dist/lib}/debugTracer.js +7 -83
  52. package/dist/lib/encode.d.ts +3 -0
  53. package/dist/lib/encode.js +50 -0
  54. package/dist/lib/errorHandler.d.ts +7 -0
  55. package/dist/lib/errorHandler.js +161 -0
  56. package/dist/lib/generalErrorMessage.d.ts +7 -0
  57. package/{lib → dist/lib}/generalErrorMessage.js +6 -6
  58. package/dist/lib/jwt.d.ts +4 -0
  59. package/dist/lib/jwt.js +18 -0
  60. package/dist/lib/logger.d.ts +24 -0
  61. package/dist/lib/logger.js +126 -0
  62. package/dist/lib/migrateCallLogsSchema.d.ts +32 -0
  63. package/{lib → dist/lib}/migrateCallLogsSchema.js +75 -160
  64. package/dist/lib/oauth.d.ts +4 -0
  65. package/{lib → dist/lib}/oauth.js +157 -160
  66. package/dist/lib/ringcentral.d.ts +24 -0
  67. package/dist/lib/ringcentral.js +226 -0
  68. package/dist/lib/s3ErrorLogReport.d.ts +4 -0
  69. package/{lib → dist/lib}/s3ErrorLogReport.js +11 -23
  70. package/dist/lib/sharedSMSComposer.d.ts +7 -0
  71. package/{lib → dist/lib}/sharedSMSComposer.js +21 -107
  72. package/dist/lib/util.d.ts +7 -0
  73. package/{lib → dist/lib}/util.js +9 -20
  74. package/dist/mcp/lib/oauthError.d.ts +1 -0
  75. package/dist/mcp/lib/oauthError.js +25 -0
  76. package/dist/mcp/lib/validator.d.ts +1 -0
  77. package/{mcp → dist/mcp}/lib/validator.js +16 -20
  78. package/dist/mcp/lib/widgetSessionToken.d.ts +1 -0
  79. package/dist/mcp/lib/widgetSessionToken.js +46 -0
  80. package/dist/mcp/mcpHandler.d.ts +8 -0
  81. package/{mcp → dist/mcp}/mcpHandler.js +98 -88
  82. package/dist/mcp/tools/cancelAppointment.d.ts +1 -0
  83. package/{mcp → dist/mcp}/tools/cancelAppointment.js +7 -16
  84. package/dist/mcp/tools/checkAuthStatus.d.ts +1 -0
  85. package/{mcp → dist/mcp}/tools/checkAuthStatus.js +21 -14
  86. package/dist/mcp/tools/confirmAppointment.d.ts +1 -0
  87. package/{mcp → dist/mcp}/tools/confirmAppointment.js +7 -16
  88. package/dist/mcp/tools/createAppointment.d.ts +1 -0
  89. package/{mcp → dist/mcp}/tools/createAppointment.js +7 -19
  90. package/dist/mcp/tools/createCallLog.d.ts +1 -0
  91. package/{mcp → dist/mcp}/tools/createCallLog.js +18 -29
  92. package/dist/mcp/tools/createContact.d.ts +1 -0
  93. package/{mcp → dist/mcp}/tools/createContact.js +8 -20
  94. package/dist/mcp/tools/createMessageLog.d.ts +1 -0
  95. package/{mcp → dist/mcp}/tools/createMessageLog.js +14 -26
  96. package/dist/mcp/tools/doAuth.d.ts +1 -0
  97. package/{mcp → dist/mcp}/tools/doAuth.js +17 -13
  98. package/dist/mcp/tools/findContactByName.d.ts +1 -0
  99. package/{mcp → dist/mcp}/tools/findContactByName.js +9 -15
  100. package/dist/mcp/tools/findContactByPhone.d.ts +1 -0
  101. package/{mcp → dist/mcp}/tools/findContactByPhone.js +8 -15
  102. package/dist/mcp/tools/getCallLog.d.ts +1 -0
  103. package/{mcp → dist/mcp}/tools/getCallLog.js +12 -21
  104. package/dist/mcp/tools/getGoogleFilePicker.d.ts +1 -0
  105. package/{mcp → dist/mcp}/tools/getGoogleFilePicker.js +9 -18
  106. package/dist/mcp/tools/getHelp.d.ts +1 -0
  107. package/{mcp → dist/mcp}/tools/getHelp.js +5 -6
  108. package/dist/mcp/tools/getPublicConnectors.d.ts +1 -0
  109. package/{mcp → dist/mcp}/tools/getPublicConnectors.js +19 -18
  110. package/dist/mcp/tools/getSessionInfo.d.ts +1 -0
  111. package/{mcp → dist/mcp}/tools/getSessionInfo.js +10 -16
  112. package/dist/mcp/tools/index.d.ts +8 -0
  113. package/dist/mcp/tools/index.js +50 -0
  114. package/dist/mcp/tools/listAppointments.d.ts +1 -0
  115. package/{mcp → dist/mcp}/tools/listAppointments.js +7 -19
  116. package/dist/mcp/tools/logout.d.ts +1 -0
  117. package/{mcp → dist/mcp}/tools/logout.js +16 -14
  118. package/dist/mcp/tools/rcGetCallLogs.d.ts +1 -0
  119. package/{mcp → dist/mcp}/tools/rcGetCallLogs.js +10 -8
  120. package/dist/mcp/tools/updateAppointment.d.ts +1 -0
  121. package/{mcp → dist/mcp}/tools/updateAppointment.js +17 -22
  122. package/dist/mcp/tools/updateCallLog.d.ts +1 -0
  123. package/{mcp → dist/mcp}/tools/updateCallLog.js +16 -26
  124. package/dist/models/accountDataModel.d.ts +3 -0
  125. package/dist/models/accountDataModel.js +39 -0
  126. package/dist/models/adminConfigModel.d.ts +2 -0
  127. package/dist/models/adminConfigModel.js +39 -0
  128. package/dist/models/cacheModel.d.ts +2 -0
  129. package/{models → dist/models}/cacheModel.js +7 -3
  130. package/dist/models/callDownListModel.d.ts +2 -0
  131. package/{models → dist/models}/callDownListModel.js +8 -4
  132. package/dist/models/callLogModel.d.ts +2 -0
  133. package/dist/models/callLogModel.js +43 -0
  134. package/dist/models/dynamo/connectorSchema.d.ts +2 -0
  135. package/dist/models/dynamo/connectorSchema.js +141 -0
  136. package/dist/models/dynamo/lockSchema.d.ts +2 -0
  137. package/{models → dist/models}/dynamo/lockSchema.js +5 -7
  138. package/dist/models/dynamo/noteCacheSchema.d.ts +2 -0
  139. package/{models → dist/models}/dynamo/noteCacheSchema.js +4 -6
  140. package/dist/models/llmSessionModel.d.ts +2 -0
  141. package/dist/models/llmSessionModel.js +21 -0
  142. package/dist/models/messageLogModel.d.ts +2 -0
  143. package/{models → dist/models}/messageLogModel.js +8 -4
  144. package/dist/models/sequelize.d.ts +2 -0
  145. package/dist/models/sequelize.js +68 -0
  146. package/dist/models/userModel.d.ts +2 -0
  147. package/dist/models/userModel.js +49 -0
  148. package/dist/package.json +100 -0
  149. package/dist/releaseNotes.json +1222 -0
  150. package/dist/tsconfig.json +14 -0
  151. package/dist/types/admin.d.ts +141 -0
  152. package/dist/types/analytics.d.ts +14 -0
  153. package/dist/types/appointment.d.ts +50 -0
  154. package/dist/types/auth.d.ts +137 -0
  155. package/dist/types/authSession.d.ts +35 -0
  156. package/dist/types/cacheCleanup.d.ts +12 -0
  157. package/dist/types/calldown.d.ts +54 -0
  158. package/dist/types/common.d.ts +46 -0
  159. package/dist/types/connector.d.ts +165 -0
  160. package/dist/types/contact.d.ts +125 -0
  161. package/dist/types/errorHandler.d.ts +60 -0
  162. package/dist/types/index.d.ts +76 -0
  163. package/dist/types/json.d.ts +9 -0
  164. package/dist/types/jwt.d.ts +8 -0
  165. package/dist/types/logging.d.ts +224 -0
  166. package/dist/types/managedAuth.d.ts +114 -0
  167. package/dist/types/managedOAuth.d.ts +59 -0
  168. package/dist/types/manifest.d.ts +120 -0
  169. package/dist/types/migration.d.ts +15 -0
  170. package/dist/types/plugin.d.ts +74 -0
  171. package/dist/types/ringcentral.d.ts +61 -0
  172. package/dist/types/s3ErrorLogReport.d.ts +16 -0
  173. package/dist/types/sharedSMSComposer.d.ts +105 -0
  174. package/dist/types/user.d.ts +46 -0
  175. package/dist/types/util.d.ts +7 -0
  176. package/package.json +34 -6
  177. package/releaseNotes.json +8 -0
  178. package/.env.test +0 -5
  179. package/connector/proxy/engine.js +0 -165
  180. package/connector/proxy/index.js +0 -500
  181. package/connector/registry.js +0 -252
  182. package/docs/README.md +0 -50
  183. package/docs/architecture.md +0 -94
  184. package/docs/connectors.md +0 -116
  185. package/docs/handlers.md +0 -128
  186. package/docs/libraries.md +0 -98
  187. package/docs/models.md +0 -146
  188. package/docs/routes.md +0 -119
  189. package/docs/tests.md +0 -73
  190. package/handlers/calldown.js +0 -99
  191. package/jest.config.js +0 -57
  192. package/lib/constants.js +0 -9
  193. package/lib/encode.js +0 -30
  194. package/lib/errorHandler.js +0 -218
  195. package/lib/jwt.js +0 -18
  196. package/lib/logger.js +0 -190
  197. package/lib/ringcentral.js +0 -267
  198. package/mcp/README.md +0 -420
  199. package/mcp/tools/index.js +0 -51
  200. package/mcp/ui/App/App.tsx +0 -358
  201. package/mcp/ui/App/components/AuthInfoForm.tsx +0 -113
  202. package/mcp/ui/App/components/AuthSuccess.tsx +0 -22
  203. package/mcp/ui/App/components/ConnectorList.tsx +0 -82
  204. package/mcp/ui/App/components/DebugPanel.tsx +0 -43
  205. package/mcp/ui/App/components/OAuthConnect.tsx +0 -270
  206. package/mcp/ui/App/lib/callTool.ts +0 -130
  207. package/mcp/ui/App/lib/debugLog.ts +0 -41
  208. package/mcp/ui/App/lib/developerPortal.ts +0 -111
  209. package/mcp/ui/App/main.css +0 -6
  210. package/mcp/ui/App/root.tsx +0 -13
  211. package/mcp/ui/dist/index.html +0 -53
  212. package/mcp/ui/vite.config.ts +0 -16
  213. package/models/accountDataModel.js +0 -34
  214. package/models/adminConfigModel.js +0 -35
  215. package/models/callLogModel.js +0 -39
  216. package/models/dynamo/connectorSchema.js +0 -146
  217. package/models/llmSessionModel.js +0 -17
  218. package/models/sequelize.js +0 -17
  219. package/models/userModel.js +0 -45
  220. package/test/connector/developerPortal.test.js +0 -166
  221. package/test/connector/mock.test.js +0 -131
  222. package/test/connector/proxy/engine.test.js +0 -211
  223. package/test/connector/proxy/index.test.js +0 -525
  224. package/test/connector/proxy/sample.json +0 -162
  225. package/test/connector/registry.test.js +0 -416
  226. package/test/handlers/admin.test.js +0 -960
  227. package/test/handlers/appointment.test.js +0 -260
  228. package/test/handlers/auth.test.js +0 -1096
  229. package/test/handlers/calldown.test.js +0 -310
  230. package/test/handlers/contact.test.js +0 -1014
  231. package/test/handlers/disposition.test.js +0 -396
  232. package/test/handlers/log.test.js +0 -1847
  233. package/test/handlers/managedAuth.test.js +0 -458
  234. package/test/handlers/managedOAuth.test.js +0 -262
  235. package/test/handlers/plugin.test.js +0 -429
  236. package/test/handlers/user.test.js +0 -381
  237. package/test/index.test.js +0 -301
  238. package/test/lib/analytics.test.js +0 -146
  239. package/test/lib/authSession.test.js +0 -173
  240. package/test/lib/cacheCleanup.test.js +0 -127
  241. package/test/lib/callLogComposer.test.js +0 -1231
  242. package/test/lib/debugTracer.test.js +0 -328
  243. package/test/lib/encode.test.js +0 -59
  244. package/test/lib/errorHandler.test.js +0 -246
  245. package/test/lib/generalErrorMessage.test.js +0 -82
  246. package/test/lib/jwt.test.js +0 -176
  247. package/test/lib/logger.test.js +0 -206
  248. package/test/lib/oauth.test.js +0 -359
  249. package/test/lib/ringcentral.test.js +0 -467
  250. package/test/lib/s3ErrorLogReport.test.js +0 -187
  251. package/test/lib/sharedSMSComposer.test.js +0 -1084
  252. package/test/lib/util.test.js +0 -329
  253. package/test/mcp/mcpHandler.test.js +0 -73
  254. package/test/mcp/mcpHandlerMore.test.js +0 -384
  255. package/test/mcp/tools/appointmentTools.test.js +0 -362
  256. package/test/mcp/tools/checkAuthStatus.test.js +0 -83
  257. package/test/mcp/tools/createCallLog.test.js +0 -436
  258. package/test/mcp/tools/createContact.test.js +0 -58
  259. package/test/mcp/tools/createMessageLog.test.js +0 -595
  260. package/test/mcp/tools/doAuth.test.js +0 -113
  261. package/test/mcp/tools/findContactByName.test.js +0 -275
  262. package/test/mcp/tools/findContactByPhone.test.js +0 -296
  263. package/test/mcp/tools/getCallLog.test.js +0 -298
  264. package/test/mcp/tools/getGoogleFilePicker.test.js +0 -281
  265. package/test/mcp/tools/getPublicConnectors.test.js +0 -107
  266. package/test/mcp/tools/getSessionInfo.test.js +0 -127
  267. package/test/mcp/tools/logout.test.js +0 -233
  268. package/test/mcp/tools/rcGetCallLogs.test.js +0 -56
  269. package/test/mcp/tools/updateCallLog.test.js +0 -360
  270. package/test/models/accountDataModel.test.js +0 -98
  271. package/test/models/callDownListModel.test.js +0 -125
  272. package/test/models/dynamo/connectorSchema.test.js +0 -189
  273. package/test/models/dynamo/lockSchema.test.js +0 -37
  274. package/test/models/dynamo/noteCacheSchema.test.js +0 -45
  275. package/test/models/llmSessionModel.test.js +0 -91
  276. package/test/models/models.test.js +0 -660
  277. package/test/routes/calldownRoutes.test.js +0 -224
  278. package/test/routes/coreRouterBroadRoutes.test.js +0 -855
  279. package/test/routes/dispositionRoutes.test.js +0 -192
  280. package/test/routes/managedAuthRoutes.test.js +0 -386
  281. package/test/routes/pluginRoutes.test.js +0 -262
  282. package/test/setup.js +0 -178
  283. /package/{mcp → dist/mcp}/ui/index.html +0 -0
  284. /package/{mcp → dist/mcp}/ui/package-lock.json +0 -0
  285. /package/{mcp → dist/mcp}/ui/package.json +0 -0
  286. /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
- });