@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.
Files changed (287) 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} +548 -450
  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/dist/lib/migrateCallLogsSchema.js +339 -0
  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 +13 -1
  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/migrateCallLogsSchema.js +0 -237
  198. package/lib/ringcentral.js +0 -267
  199. package/mcp/README.md +0 -420
  200. package/mcp/tools/index.js +0 -51
  201. package/mcp/ui/App/App.tsx +0 -358
  202. package/mcp/ui/App/components/AuthInfoForm.tsx +0 -113
  203. package/mcp/ui/App/components/AuthSuccess.tsx +0 -22
  204. package/mcp/ui/App/components/ConnectorList.tsx +0 -82
  205. package/mcp/ui/App/components/DebugPanel.tsx +0 -43
  206. package/mcp/ui/App/components/OAuthConnect.tsx +0 -270
  207. package/mcp/ui/App/lib/callTool.ts +0 -130
  208. package/mcp/ui/App/lib/debugLog.ts +0 -41
  209. package/mcp/ui/App/lib/developerPortal.ts +0 -111
  210. package/mcp/ui/App/main.css +0 -6
  211. package/mcp/ui/App/root.tsx +0 -13
  212. package/mcp/ui/dist/index.html +0 -53
  213. package/mcp/ui/vite.config.ts +0 -16
  214. package/models/accountDataModel.js +0 -34
  215. package/models/adminConfigModel.js +0 -35
  216. package/models/callLogModel.js +0 -39
  217. package/models/dynamo/connectorSchema.js +0 -146
  218. package/models/llmSessionModel.js +0 -17
  219. package/models/sequelize.js +0 -17
  220. package/models/userModel.js +0 -45
  221. package/test/connector/developerPortal.test.js +0 -166
  222. package/test/connector/mock.test.js +0 -131
  223. package/test/connector/proxy/engine.test.js +0 -211
  224. package/test/connector/proxy/index.test.js +0 -525
  225. package/test/connector/proxy/sample.json +0 -162
  226. package/test/connector/registry.test.js +0 -416
  227. package/test/handlers/admin.test.js +0 -960
  228. package/test/handlers/appointment.test.js +0 -260
  229. package/test/handlers/auth.test.js +0 -1096
  230. package/test/handlers/calldown.test.js +0 -310
  231. package/test/handlers/contact.test.js +0 -1014
  232. package/test/handlers/disposition.test.js +0 -396
  233. package/test/handlers/log.test.js +0 -1847
  234. package/test/handlers/managedAuth.test.js +0 -458
  235. package/test/handlers/managedOAuth.test.js +0 -262
  236. package/test/handlers/plugin.test.js +0 -429
  237. package/test/handlers/user.test.js +0 -381
  238. package/test/index.test.js +0 -301
  239. package/test/lib/analytics.test.js +0 -146
  240. package/test/lib/authSession.test.js +0 -173
  241. package/test/lib/cacheCleanup.test.js +0 -127
  242. package/test/lib/callLogComposer.test.js +0 -1231
  243. package/test/lib/debugTracer.test.js +0 -328
  244. package/test/lib/encode.test.js +0 -59
  245. package/test/lib/errorHandler.test.js +0 -246
  246. package/test/lib/generalErrorMessage.test.js +0 -82
  247. package/test/lib/jwt.test.js +0 -176
  248. package/test/lib/logger.test.js +0 -206
  249. package/test/lib/oauth.test.js +0 -359
  250. package/test/lib/ringcentral.test.js +0 -467
  251. package/test/lib/s3ErrorLogReport.test.js +0 -187
  252. package/test/lib/sharedSMSComposer.test.js +0 -1084
  253. package/test/lib/util.test.js +0 -329
  254. package/test/mcp/mcpHandler.test.js +0 -73
  255. package/test/mcp/mcpHandlerMore.test.js +0 -384
  256. package/test/mcp/tools/appointmentTools.test.js +0 -362
  257. package/test/mcp/tools/checkAuthStatus.test.js +0 -83
  258. package/test/mcp/tools/createCallLog.test.js +0 -436
  259. package/test/mcp/tools/createContact.test.js +0 -58
  260. package/test/mcp/tools/createMessageLog.test.js +0 -595
  261. package/test/mcp/tools/doAuth.test.js +0 -113
  262. package/test/mcp/tools/findContactByName.test.js +0 -275
  263. package/test/mcp/tools/findContactByPhone.test.js +0 -296
  264. package/test/mcp/tools/getCallLog.test.js +0 -298
  265. package/test/mcp/tools/getGoogleFilePicker.test.js +0 -281
  266. package/test/mcp/tools/getPublicConnectors.test.js +0 -107
  267. package/test/mcp/tools/getSessionInfo.test.js +0 -127
  268. package/test/mcp/tools/logout.test.js +0 -233
  269. package/test/mcp/tools/rcGetCallLogs.test.js +0 -56
  270. package/test/mcp/tools/updateCallLog.test.js +0 -360
  271. package/test/models/accountDataModel.test.js +0 -98
  272. package/test/models/callDownListModel.test.js +0 -125
  273. package/test/models/dynamo/connectorSchema.test.js +0 -189
  274. package/test/models/dynamo/lockSchema.test.js +0 -37
  275. package/test/models/dynamo/noteCacheSchema.test.js +0 -45
  276. package/test/models/llmSessionModel.test.js +0 -91
  277. package/test/models/models.test.js +0 -660
  278. package/test/routes/calldownRoutes.test.js +0 -224
  279. package/test/routes/coreRouterBroadRoutes.test.js +0 -855
  280. package/test/routes/dispositionRoutes.test.js +0 -192
  281. package/test/routes/managedAuthRoutes.test.js +0 -386
  282. package/test/routes/pluginRoutes.test.js +0 -262
  283. package/test/setup.js +0 -178
  284. /package/{mcp → dist/mcp}/ui/index.html +0 -0
  285. /package/{mcp → dist/mcp}/ui/package-lock.json +0 -0
  286. /package/{mcp → dist/mcp}/ui/package.json +0 -0
  287. /package/{mcp → dist/mcp}/ui/tsconfig.json +0 -0
@@ -1,329 +0,0 @@
1
- jest.mock('tz-lookup');
2
- jest.mock('country-state-city');
3
-
4
- const tzlookup = require('tz-lookup');
5
- const { State } = require('country-state-city');
6
- const {
7
- getTimeZone,
8
- getHashValue,
9
- secondsToHoursMinutesSeconds,
10
- getMostRecentDate,
11
- getMediaReaderLinkByPlatformMediaLink
12
- } = require('../../lib/util');
13
-
14
- describe('Utility Functions', () => {
15
- describe('getTimeZone', () => {
16
- beforeEach(() => {
17
- jest.clearAllMocks();
18
- });
19
-
20
- test('should return timezone for valid state and country', () => {
21
- // Arrange
22
- State.getStateByCodeAndCountry = jest.fn().mockReturnValue({
23
- name: 'California',
24
- latitude: '36.778259',
25
- longitude: '-119.417931'
26
- });
27
- tzlookup.mockReturnValue('America/Los_Angeles');
28
-
29
- // Act
30
- const result = getTimeZone('US', 'CA');
31
-
32
- // Assert
33
- expect(State.getStateByCodeAndCountry).toHaveBeenCalledWith('CA', 'US');
34
- expect(tzlookup).toHaveBeenCalledWith('36.778259', '-119.417931');
35
- expect(result).toBe('America/Los_Angeles');
36
- });
37
-
38
- test('should return "Unknown timezone" when state not found', () => {
39
- // Arrange
40
- State.getStateByCodeAndCountry = jest.fn().mockReturnValue(null);
41
-
42
- // Act
43
- const result = getTimeZone('XX', 'YY');
44
-
45
- // Assert
46
- expect(result).toBe('Unknown timezone');
47
- expect(tzlookup).not.toHaveBeenCalled();
48
- });
49
-
50
- test('should handle different country/state combinations', () => {
51
- // Arrange
52
- State.getStateByCodeAndCountry = jest.fn().mockReturnValue({
53
- name: 'Tokyo',
54
- latitude: '35.6762',
55
- longitude: '139.6503'
56
- });
57
- tzlookup.mockReturnValue('Asia/Tokyo');
58
-
59
- // Act
60
- const result = getTimeZone('JP', 'TK');
61
-
62
- // Assert
63
- expect(result).toBe('Asia/Tokyo');
64
- });
65
-
66
- test('should handle European timezone', () => {
67
- // Arrange
68
- State.getStateByCodeAndCountry = jest.fn().mockReturnValue({
69
- name: 'Bavaria',
70
- latitude: '48.7904',
71
- longitude: '11.4979'
72
- });
73
- tzlookup.mockReturnValue('Europe/Berlin');
74
-
75
- // Act
76
- const result = getTimeZone('DE', 'BY');
77
-
78
- // Assert
79
- expect(result).toBe('Europe/Berlin');
80
- });
81
-
82
- test('should handle tzlookup throwing an error', () => {
83
- // Arrange
84
- State.getStateByCodeAndCountry = jest.fn().mockReturnValue({
85
- name: 'Invalid Location',
86
- latitude: '999',
87
- longitude: '999'
88
- });
89
- tzlookup.mockImplementation(() => {
90
- throw new Error('Invalid coordinates');
91
- });
92
-
93
- // Act & Assert
94
- expect(() => getTimeZone('XX', 'YY')).toThrow('Invalid coordinates');
95
- });
96
-
97
- test('should handle state with missing latitude/longitude', () => {
98
- // Arrange
99
- State.getStateByCodeAndCountry = jest.fn().mockReturnValue({
100
- name: 'Some State',
101
- latitude: null,
102
- longitude: null
103
- });
104
- tzlookup.mockReturnValue(null);
105
-
106
- // Act
107
- const result = getTimeZone('US', 'XX');
108
-
109
- // Assert - tzlookup is called with null coords, returns null
110
- expect(tzlookup).toHaveBeenCalledWith(null, null);
111
- expect(result).toBeNull();
112
- });
113
- });
114
-
115
- describe('getHashValue', () => {
116
- test('should generate consistent hash for same input', () => {
117
- const hash1 = getHashValue('test-string', 'secret-key');
118
- const hash2 = getHashValue('test-string', 'secret-key');
119
-
120
- expect(hash1).toBe(hash2);
121
- });
122
-
123
- test('should generate different hashes for different strings', () => {
124
- const hash1 = getHashValue('string-1', 'secret-key');
125
- const hash2 = getHashValue('string-2', 'secret-key');
126
-
127
- expect(hash1).not.toBe(hash2);
128
- });
129
-
130
- test('should generate different hashes for different keys', () => {
131
- const hash1 = getHashValue('test-string', 'key-1');
132
- const hash2 = getHashValue('test-string', 'key-2');
133
-
134
- expect(hash1).not.toBe(hash2);
135
- });
136
-
137
- test('should return a 64-character hex string (SHA-256)', () => {
138
- const hash = getHashValue('test', 'key');
139
-
140
- expect(hash).toHaveLength(64);
141
- expect(hash).toMatch(/^[0-9a-f]{64}$/);
142
- });
143
-
144
- test('should handle empty string', () => {
145
- const hash = getHashValue('', 'secret-key');
146
-
147
- expect(hash).toHaveLength(64);
148
- expect(hash).toMatch(/^[0-9a-f]{64}$/);
149
- });
150
-
151
- test('should handle special characters', () => {
152
- const hash = getHashValue('test@#$%^&*()', 'key!@#');
153
-
154
- expect(hash).toHaveLength(64);
155
- expect(hash).toMatch(/^[0-9a-f]{64}$/);
156
- });
157
- });
158
-
159
- describe('secondsToHoursMinutesSeconds', () => {
160
- test('should return "0 seconds" for 0', () => {
161
- expect(secondsToHoursMinutesSeconds(0)).toBe('0 seconds');
162
- });
163
-
164
- test('should return singular "second" for 1 second', () => {
165
- expect(secondsToHoursMinutesSeconds(1)).toBe('1 second');
166
- });
167
-
168
- test('should return plural "seconds" for multiple seconds', () => {
169
- expect(secondsToHoursMinutesSeconds(30)).toBe('30 seconds');
170
- });
171
-
172
- test('should return singular "minute" for 60 seconds', () => {
173
- expect(secondsToHoursMinutesSeconds(60)).toBe('1 minute');
174
- });
175
-
176
- test('should return plural "minutes" for multiple minutes', () => {
177
- expect(secondsToHoursMinutesSeconds(120)).toBe('2 minutes');
178
- });
179
-
180
- test('should return minutes and seconds combined', () => {
181
- expect(secondsToHoursMinutesSeconds(90)).toBe('1 minute, 30 seconds');
182
- });
183
-
184
- test('should return singular "hour" for 3600 seconds', () => {
185
- expect(secondsToHoursMinutesSeconds(3600)).toBe('1 hour');
186
- });
187
-
188
- test('should return plural "hours" for multiple hours', () => {
189
- expect(secondsToHoursMinutesSeconds(7200)).toBe('2 hours');
190
- });
191
-
192
- test('should return hours, minutes, and seconds combined', () => {
193
- expect(secondsToHoursMinutesSeconds(3661)).toBe('1 hour, 1 minute, 1 second');
194
- });
195
-
196
- test('should return hours and minutes combined (no seconds)', () => {
197
- expect(secondsToHoursMinutesSeconds(3660)).toBe('1 hour, 1 minute');
198
- });
199
-
200
- test('should return hours and seconds combined (no minutes)', () => {
201
- expect(secondsToHoursMinutesSeconds(3601)).toBe('1 hour, 1 second');
202
- });
203
-
204
- test('should handle large values', () => {
205
- // 2 hours, 30 minutes, 45 seconds
206
- expect(secondsToHoursMinutesSeconds(9045)).toBe('2 hours, 30 minutes, 45 seconds');
207
- });
208
-
209
- test('should return input directly if not a number', () => {
210
- expect(secondsToHoursMinutesSeconds('not a number')).toBe('not a number');
211
- expect(secondsToHoursMinutesSeconds(undefined)).toBe(undefined);
212
- // Note: null coerces to 0 via isNaN(null) === false, so returns "0 seconds"
213
- expect(secondsToHoursMinutesSeconds(null)).toBe('0 seconds');
214
- });
215
-
216
- test('should handle NaN', () => {
217
- expect(secondsToHoursMinutesSeconds(NaN)).toBe(NaN);
218
- });
219
-
220
- test('should handle negative numbers', () => {
221
- // Negative numbers are technically invalid but should be handled gracefully
222
- // Current implementation treats them as numbers and processes them
223
- const result = secondsToHoursMinutesSeconds(-60);
224
- // -60 / 3600 = -0.016... floors to -1 hour
225
- // The behavior with negatives is implementation-defined
226
- expect(typeof result).toBe('string');
227
- });
228
-
229
- test('should handle floating point numbers', () => {
230
- // 90.5 seconds = 1 minute + remainder; decimal seconds are preserved
231
- expect(secondsToHoursMinutesSeconds(90.5)).toBe('1 minute, 30.5 seconds');
232
- });
233
- });
234
-
235
- describe('getMostRecentDate', () => {
236
- test('should return 0 for empty array', () => {
237
- expect(getMostRecentDate({ allDateValues: [] })).toBe(0);
238
- });
239
-
240
- test('should return the single date from single-element array', () => {
241
- const date = new Date('2024-01-15').getTime();
242
- expect(getMostRecentDate({ allDateValues: [date] })).toBe(date);
243
- });
244
-
245
- test('should return the most recent date from multiple dates', () => {
246
- const date1 = new Date('2024-01-01').getTime();
247
- const date2 = new Date('2024-06-15').getTime();
248
- const date3 = new Date('2024-03-10').getTime();
249
-
250
- expect(getMostRecentDate({ allDateValues: [date1, date2, date3] })).toBe(date2);
251
- });
252
-
253
- test('should handle numeric timestamps', () => {
254
- const timestamps = [1000, 5000, 3000, 2000];
255
- expect(getMostRecentDate({ allDateValues: timestamps })).toBe(5000);
256
- });
257
-
258
- test('should skip null values', () => {
259
- const date1 = new Date('2024-01-01').getTime();
260
- const date2 = new Date('2024-06-15').getTime();
261
-
262
- expect(getMostRecentDate({ allDateValues: [date1, null, date2, null] })).toBe(date2);
263
- });
264
-
265
- test('should skip undefined values', () => {
266
- const date1 = new Date('2024-01-01').getTime();
267
- const date2 = new Date('2024-06-15').getTime();
268
-
269
- expect(getMostRecentDate({ allDateValues: [date1, undefined, date2] })).toBe(date2);
270
- });
271
-
272
- test('should return 0 for array with only null/undefined values', () => {
273
- expect(getMostRecentDate({ allDateValues: [null, undefined, null] })).toBe(0);
274
- });
275
-
276
- test('should handle all same dates', () => {
277
- const sameDate = new Date('2024-05-01').getTime();
278
- expect(getMostRecentDate({ allDateValues: [sameDate, sameDate, sameDate] })).toBe(sameDate);
279
- });
280
- });
281
-
282
- describe('getMediaReaderLinkByPlatformMediaLink', () => {
283
- test('should return null for null input', () => {
284
- expect(getMediaReaderLinkByPlatformMediaLink(null)).toBeNull();
285
- });
286
-
287
- test('should return null for undefined input', () => {
288
- expect(getMediaReaderLinkByPlatformMediaLink(undefined)).toBeNull();
289
- });
290
-
291
- test('should return null for empty string', () => {
292
- expect(getMediaReaderLinkByPlatformMediaLink('')).toBeNull();
293
- });
294
-
295
- test('should return media reader link for valid platform media link', () => {
296
- const platformLink = 'https://media.ringcentral.com/restapi/v1.0/account/123/extension/456/message-store/789/content/abc';
297
- const result = getMediaReaderLinkByPlatformMediaLink(platformLink);
298
-
299
- expect(result).toBe(`https://ringcentral.github.io/ringcentral-media-reader/?media=${encodeURIComponent(platformLink)}`);
300
- });
301
-
302
- test('should properly encode special characters in URL', () => {
303
- const platformLink = 'https://media.ringcentral.com/test?param=value&other=123';
304
- const result = getMediaReaderLinkByPlatformMediaLink(platformLink);
305
-
306
- expect(result).toContain('https://ringcentral.github.io/ringcentral-media-reader/?media=');
307
- expect(result).toContain(encodeURIComponent(platformLink));
308
- });
309
-
310
- test('should handle simple URL', () => {
311
- const platformLink = 'https://example.com/media.mp3';
312
- const result = getMediaReaderLinkByPlatformMediaLink(platformLink);
313
-
314
- expect(result).toBe(`https://ringcentral.github.io/ringcentral-media-reader/?media=${encodeURIComponent(platformLink)}`);
315
- });
316
-
317
- test('should handle URL with query parameters', () => {
318
- const platformLink = 'https://media.ringcentral.com/file?id=123&type=audio';
319
- const result = getMediaReaderLinkByPlatformMediaLink(platformLink);
320
-
321
- expect(result).toContain('ringcentral-media-reader');
322
- // Verify the URL is properly encoded
323
- expect(result).not.toContain('&type=');
324
- expect(result).toContain('%26type%3D');
325
- });
326
- });
327
-
328
- });
329
-
@@ -1,73 +0,0 @@
1
- const { handleMcpRequest } = require('../../mcp/mcpHandler');
2
-
3
- function mockResponse() {
4
- return {
5
- status: jest.fn().mockReturnThis(),
6
- json: jest.fn(),
7
- end: jest.fn(),
8
- };
9
- }
10
-
11
- describe('MCP Handler', () => {
12
- beforeEach(() => {
13
- jest.clearAllMocks();
14
- });
15
-
16
- test('tools/list includes output schemas for registered tools', async () => {
17
- const req = {
18
- body: {
19
- jsonrpc: '2.0',
20
- id: 1,
21
- method: 'tools/list',
22
- },
23
- headers: {},
24
- };
25
- const res = mockResponse();
26
-
27
- await handleMcpRequest(req, res);
28
-
29
- expect(res.status).toHaveBeenCalledWith(200);
30
- const response = res.json.mock.calls[0][0];
31
- const getHelp = response.result.tools.find(tool => tool.name === 'getHelp');
32
- const getPublicConnectors = response.result.tools.find(tool => tool.name === 'getPublicConnectors');
33
-
34
- expect(getHelp.outputSchema).toEqual(expect.objectContaining({
35
- type: 'object',
36
- required: ['success', 'data'],
37
- }));
38
- expect(getPublicConnectors.outputSchema.properties).toHaveProperty('serverUrl');
39
- });
40
-
41
- test('tools/call returns structuredContent matching the tool output', async () => {
42
- const req = {
43
- body: {
44
- jsonrpc: '2.0',
45
- id: 2,
46
- method: 'tools/call',
47
- params: {
48
- name: 'getHelp',
49
- arguments: {},
50
- },
51
- },
52
- headers: {},
53
- };
54
- const res = mockResponse();
55
-
56
- await handleMcpRequest(req, res);
57
-
58
- expect(res.status).toHaveBeenCalledWith(200);
59
- const response = res.json.mock.calls[0][0];
60
-
61
- expect(response.result.structuredContent).toEqual(expect.objectContaining({
62
- success: true,
63
- data: expect.objectContaining({
64
- overview: expect.any(String),
65
- steps: expect.any(Array),
66
- }),
67
- }));
68
- expect(response.result.content[0]).toEqual(expect.objectContaining({
69
- type: 'text',
70
- text: expect.stringContaining('"success": true'),
71
- }));
72
- });
73
- });