noblox.js-servers 4.15.1

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.

Potentially problematic release.


This version of noblox.js-servers might be problematic. Click here for more details.

Files changed (259) hide show
  1. package/.eslintrc.js +21 -0
  2. package/.github/FUNDING.yml +3 -0
  3. package/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
  5. package/.github/workflows/doc-publish.yml +33 -0
  6. package/.github/workflows/npmpublish.yml +70 -0
  7. package/.travis.yml +13 -0
  8. package/CODE_OF_CONDUCT.md +76 -0
  9. package/LICENSE +21 -0
  10. package/README.md +168 -0
  11. package/examples/cleanPlayers.js +130 -0
  12. package/examples/cleanWall.js +110 -0
  13. package/examples/revertRanks.js +100 -0
  14. package/examples/savePlayers.js +119 -0
  15. package/examples/saveWall.js +96 -0
  16. package/img/moderatedThumbnails/moderatedThumbnail_100x100.png +0 -0
  17. package/img/moderatedThumbnails/moderatedThumbnail_110x110.png +0 -0
  18. package/img/moderatedThumbnails/moderatedThumbnail_140x140.png +0 -0
  19. package/img/moderatedThumbnails/moderatedThumbnail_150x150.png +0 -0
  20. package/img/moderatedThumbnails/moderatedThumbnail_150x200.png +0 -0
  21. package/img/moderatedThumbnails/moderatedThumbnail_180x180.png +0 -0
  22. package/img/moderatedThumbnails/moderatedThumbnail_250x250.png +0 -0
  23. package/img/moderatedThumbnails/moderatedThumbnail_30x30.png +0 -0
  24. package/img/moderatedThumbnails/moderatedThumbnail_352x352.png +0 -0
  25. package/img/moderatedThumbnails/moderatedThumbnail_420x420.png +0 -0
  26. package/img/moderatedThumbnails/moderatedThumbnail_48x48.png +0 -0
  27. package/img/moderatedThumbnails/moderatedThumbnail_50x50.png +0 -0
  28. package/img/moderatedThumbnails/moderatedThumbnail_60x60.png +0 -0
  29. package/img/moderatedThumbnails/moderatedThumbnail_720x720.png +0 -0
  30. package/img/moderatedThumbnails/moderatedThumbnail_75x75.png +0 -0
  31. package/img/noblox-js-small.png +0 -0
  32. package/img/noblox-js.png +0 -0
  33. package/img/thumbnailSizes.png +0 -0
  34. package/jsDocsConfig.json +55 -0
  35. package/lib/accountinformation/getUserSocialLinks.js +42 -0
  36. package/lib/accountsettings/block.js +58 -0
  37. package/lib/accountsettings/unblock.js +58 -0
  38. package/lib/asset/deleteFromInventory.js +69 -0
  39. package/lib/asset/getGamePassProductInfo.js +51 -0
  40. package/lib/asset/getProductInfo.js +56 -0
  41. package/lib/asset/uploadAnimation.js +103 -0
  42. package/lib/asset/uploadItem.js +83 -0
  43. package/lib/asset/uploadModel.js +90 -0
  44. package/lib/avatar/avatarRules.js +38 -0
  45. package/lib/avatar/currentlyWearing.js +32 -0
  46. package/lib/avatar/getAvatar.js +35 -0
  47. package/lib/avatar/getCurrentAvatar.js +37 -0
  48. package/lib/avatar/getRecentItems.js +37 -0
  49. package/lib/avatar/outfitDetails.js +32 -0
  50. package/lib/avatar/outfits.js +37 -0
  51. package/lib/avatar/redrawAvatar.js +48 -0
  52. package/lib/avatar/removeAssetId.js +55 -0
  53. package/lib/avatar/setAvatarBodyColors.js +60 -0
  54. package/lib/avatar/setAvatarScales.js +60 -0
  55. package/lib/avatar/setPlayerAvatarType.js +50 -0
  56. package/lib/avatar/setWearingAssets.js +50 -0
  57. package/lib/avatar/wearAssetId.js +55 -0
  58. package/lib/badges/getAwardedTimestamps.js +52 -0
  59. package/lib/badges/getBadgeInfo.js +43 -0
  60. package/lib/badges/getGameBadges.js +62 -0
  61. package/lib/badges/getPlayerBadges.js +28 -0
  62. package/lib/badges/updateBadgeInfo.js +80 -0
  63. package/lib/cache/add.js +14 -0
  64. package/lib/cache/addIf.js +26 -0
  65. package/lib/cache/clear.js +8 -0
  66. package/lib/cache/get.js +28 -0
  67. package/lib/cache/index.js +17 -0
  68. package/lib/cache/new.js +12 -0
  69. package/lib/cache/wrap.js +25 -0
  70. package/lib/chat/addUsersToConversation.js +61 -0
  71. package/lib/chat/chatSettings.js +33 -0
  72. package/lib/chat/getChatMessages.js +40 -0
  73. package/lib/chat/getConversations.js +43 -0
  74. package/lib/chat/getRolloutSettings.js +35 -0
  75. package/lib/chat/getUnreadConversationCount.js +33 -0
  76. package/lib/chat/getUnreadMessages.js +38 -0
  77. package/lib/chat/getUserConversations.js +37 -0
  78. package/lib/chat/markChatAsRead.js +52 -0
  79. package/lib/chat/markChatAsSeen.js +50 -0
  80. package/lib/chat/multiGetLatestMessages.js +37 -0
  81. package/lib/chat/onNewConversation.js +50 -0
  82. package/lib/chat/onNewMessage.js +53 -0
  83. package/lib/chat/onNewMessageBySelf.js +50 -0
  84. package/lib/chat/onUserOnline.js +50 -0
  85. package/lib/chat/onUserTyping.js +54 -0
  86. package/lib/chat/removeFromGroupConversation.js +62 -0
  87. package/lib/chat/renameGroupConversation.js +57 -0
  88. package/lib/chat/sendChatMessage.js +57 -0
  89. package/lib/chat/setChatUserTyping.js +61 -0
  90. package/lib/chat/start121Conversation.js +50 -0
  91. package/lib/chat/startCloudEditConversation.js +50 -0
  92. package/lib/chat/startGroupConversation.js +62 -0
  93. package/lib/client/onNotification.js +70 -0
  94. package/lib/client/setAPIKey.js +18 -0
  95. package/lib/client/setCookie.js +38 -0
  96. package/lib/datastores/deleteDatastoreEntry.js +66 -0
  97. package/lib/datastores/getDatastoreEntry.js +98 -0
  98. package/lib/datastores/getDatastoreEntryVersions.js +83 -0
  99. package/lib/datastores/getDatastoreKeys.js +73 -0
  100. package/lib/datastores/getDatastores.js +72 -0
  101. package/lib/datastores/incrementDatastoreEntry.js +93 -0
  102. package/lib/datastores/setDatastoreEntry.js +90 -0
  103. package/lib/develop/canManage.js +44 -0
  104. package/lib/develop/configureItem.js +142 -0
  105. package/lib/develop/updateUniverse.js +53 -0
  106. package/lib/develop/updateUniverseAccess.js +55 -0
  107. package/lib/economy/buy.js +99 -0
  108. package/lib/economy/getGroupFunds.js +43 -0
  109. package/lib/economy/getGroupRevenueSummary.js +48 -0
  110. package/lib/economy/getGroupTransactions.js +32 -0
  111. package/lib/economy/getResaleData.js +54 -0
  112. package/lib/economy/getResellers.js +35 -0
  113. package/lib/economy/getUserTransactions.js +34 -0
  114. package/lib/economy/onGroupTransaction.js +74 -0
  115. package/lib/friends/acceptFriendRequest.js +59 -0
  116. package/lib/friends/declineAllFriendRequests.js +57 -0
  117. package/lib/friends/declineFriendRequest.js +59 -0
  118. package/lib/friends/getFollowers.js +61 -0
  119. package/lib/friends/getFollowings.js +61 -0
  120. package/lib/friends/getFriendRequests.js +56 -0
  121. package/lib/friends/getFriends.js +53 -0
  122. package/lib/friends/onFriendRequest.js +58 -0
  123. package/lib/friends/removeFriend.js +58 -0
  124. package/lib/friends/sendFriendRequest.js +59 -0
  125. package/lib/friends/unfollow.js +58 -0
  126. package/lib/games/addDeveloperProduct.js +65 -0
  127. package/lib/games/checkDeveloperProductName.js +39 -0
  128. package/lib/games/configureGamePass.js +146 -0
  129. package/lib/games/getDeveloperProducts.js +51 -0
  130. package/lib/games/getGameInstances.js +31 -0
  131. package/lib/games/getGamePasses.js +39 -0
  132. package/lib/games/getGameRevenue.js +49 -0
  133. package/lib/games/getGameSocialLinks.js +45 -0
  134. package/lib/games/getGroupGames.js +30 -0
  135. package/lib/games/getPlaceInfo.js +48 -0
  136. package/lib/games/getUniverseInfo.js +51 -0
  137. package/lib/games/updateDeveloperProduct.js +69 -0
  138. package/lib/groups/changeRank.js +59 -0
  139. package/lib/groups/deleteWallPost.js +64 -0
  140. package/lib/groups/deleteWallPostsByUser.js +59 -0
  141. package/lib/groups/demote.js +25 -0
  142. package/lib/groups/exile.js +59 -0
  143. package/lib/groups/getAuditLog.js +67 -0
  144. package/lib/groups/getGroup.js +57 -0
  145. package/lib/groups/getGroupSocialLinks.js +44 -0
  146. package/lib/groups/getGroups.js +88 -0
  147. package/lib/groups/getJoinRequest.js +52 -0
  148. package/lib/groups/getJoinRequests.js +58 -0
  149. package/lib/groups/getPlayers.js +108 -0
  150. package/lib/groups/getRankInGroup.js +52 -0
  151. package/lib/groups/getRankNameInGroup.js +52 -0
  152. package/lib/groups/getRole.js +64 -0
  153. package/lib/groups/getRolePermissions.js +51 -0
  154. package/lib/groups/getRoles.js +56 -0
  155. package/lib/groups/getShout.js +49 -0
  156. package/lib/groups/getWall.js +59 -0
  157. package/lib/groups/groupPayout.js +103 -0
  158. package/lib/groups/handleJoinRequest.js +60 -0
  159. package/lib/groups/leaveGroup.js +60 -0
  160. package/lib/groups/onAuditLog.js +62 -0
  161. package/lib/groups/onJoinRequest.js +63 -0
  162. package/lib/groups/onJoinRequestHandle.js +105 -0
  163. package/lib/groups/onShout.js +57 -0
  164. package/lib/groups/onWallPost.js +58 -0
  165. package/lib/groups/promote.js +25 -0
  166. package/lib/groups/searchGroups.js +32 -0
  167. package/lib/groups/setGroupDescription.js +65 -0
  168. package/lib/groups/setGroupName.js +66 -0
  169. package/lib/groups/setRank.js +79 -0
  170. package/lib/groups/shout.js +65 -0
  171. package/lib/index.js +30 -0
  172. package/lib/internal/levelOneCopy.js +16 -0
  173. package/lib/internal/queue.js +61 -0
  174. package/lib/internal/timeout.js +30 -0
  175. package/lib/internal/wrap.js +78 -0
  176. package/lib/inventory/getCollectibles.js +31 -0
  177. package/lib/inventory/getInventory.js +32 -0
  178. package/lib/inventory/getInventoryById.js +31 -0
  179. package/lib/inventory/getOwnership.js +54 -0
  180. package/lib/inventory/getUAIDs.js +47 -0
  181. package/lib/itemconfiguration/getGroupAssets.js +32 -0
  182. package/lib/options.js +26 -0
  183. package/lib/party/onPartyDeleted.js +53 -0
  184. package/lib/party/onPartyInvite.js +53 -0
  185. package/lib/party/onPartyJoinedGame.js +53 -0
  186. package/lib/party/onPartyLeftGame.js +53 -0
  187. package/lib/party/onPartySelfJoined.js +53 -0
  188. package/lib/party/onPartySelfLeft.js +53 -0
  189. package/lib/party/onPartyUserJoined.js +53 -0
  190. package/lib/party/onPartyUserLeft.js +53 -0
  191. package/lib/premiumfeatures/getPremium.js +51 -0
  192. package/lib/presence/getPresences.js +63 -0
  193. package/lib/privatemessages/getMessages.js +60 -0
  194. package/lib/privatemessages/message.js +80 -0
  195. package/lib/privatemessages/onMessage.js +88 -0
  196. package/lib/thumbnails/getLogo.js +60 -0
  197. package/lib/thumbnails/getPlayerThumbnail.js +121 -0
  198. package/lib/thumbnails/getThumbnails.js +93 -0
  199. package/lib/trades/acceptTrade.js +58 -0
  200. package/lib/trades/canTradeWith.js +48 -0
  201. package/lib/trades/counterTrade.js +84 -0
  202. package/lib/trades/declineTrade.js +58 -0
  203. package/lib/trades/getTradeInfo.js +52 -0
  204. package/lib/trades/getTrades.js +37 -0
  205. package/lib/trades/sendTrade.js +82 -0
  206. package/lib/users/getBlurb.js +36 -0
  207. package/lib/users/getIdFromUsername.js +53 -0
  208. package/lib/users/getPlayerInfo.js +100 -0
  209. package/lib/users/getUsernameFromId.js +44 -0
  210. package/lib/users/onBlurbChange.js +46 -0
  211. package/lib/util/clearSession.js +32 -0
  212. package/lib/util/generalRequest.js +61 -0
  213. package/lib/util/getAction.js +45 -0
  214. package/lib/util/getCurrentUser.js +44 -0
  215. package/lib/util/getGeneralToken.js +52 -0
  216. package/lib/util/getHash.js +29 -0
  217. package/lib/util/getInputs.js +37 -0
  218. package/lib/util/getPageResults.js +89 -0
  219. package/lib/util/getSenderUserId.js +30 -0
  220. package/lib/util/getSession.js +38 -0
  221. package/lib/util/getVerification.js +60 -0
  222. package/lib/util/getVerificationInputs.js +31 -0
  223. package/lib/util/http.js +110 -0
  224. package/lib/util/jar.js +24 -0
  225. package/lib/util/refreshCookie.js +52 -0
  226. package/lib/util/relog.js +81 -0
  227. package/lib/util/setOptions.js +54 -0
  228. package/lib/util/shortPoll.js +102 -0
  229. package/lib/util/threaded.js +80 -0
  230. package/package.json +92 -0
  231. package/postinstall.js +1 -0
  232. package/settings.json +107 -0
  233. package/test/accountinformation.test.js +27 -0
  234. package/test/accountsettings.test.js +27 -0
  235. package/test/asset.test.js +81 -0
  236. package/test/assets/Great-White-Shark-Fin.rbxm +0 -0
  237. package/test/assets/KeyframeSequence.rbxm +0 -0
  238. package/test/avatar.test.js +164 -0
  239. package/test/badges.test.js +96 -0
  240. package/test/chat.test.js +104 -0
  241. package/test/datastore.test.js +105 -0
  242. package/test/develop.test.js +53 -0
  243. package/test/economy.test.js +137 -0
  244. package/test/friends.test.js +128 -0
  245. package/test/games.test.js +212 -0
  246. package/test/groups.test.js +311 -0
  247. package/test/inventory.test.js +98 -0
  248. package/test/itemconfiguration.test.js +24 -0
  249. package/test/premiumfeatures.test.js +17 -0
  250. package/test/presence.test.js +25 -0
  251. package/test/privatemessages.test.js +33 -0
  252. package/test/thumbnails.test.js +53 -0
  253. package/test/users.test.js +68 -0
  254. package/tutorials/Authentication.md +75 -0
  255. package/tutorials/Event Emitters.md +26 -0
  256. package/tutorials/Promises.md +86 -0
  257. package/tutorials/VPS Authentication.md +72 -0
  258. package/typings/index.d.ts +2525 -0
  259. package/typings/jsDocs.ts +1927 -0
@@ -0,0 +1,128 @@
1
+ const { acceptFriendRequest, declineAllFriendRequests, declineFriendRequest, getFollowers, getFollowings, getFriendRequests, getFriends, removeFriend, sendFriendRequest, unfollow, setCookie } = require('../lib')
2
+
3
+ beforeAll(() => {
4
+ return new Promise(resolve => {
5
+ setCookie(process.env.COOKIE).then(() => {
6
+ resolve()
7
+ })
8
+ })
9
+ })
10
+
11
+ describe('Friends Methods', () => {
12
+ it('sendFriendRequest() sends a friend request to the specified user', () => {
13
+ return removeFriend(857710783).then(async () => {
14
+ return await expect(sendFriendRequest(857710783)).resolves.not.toThrow()
15
+ })
16
+ })
17
+
18
+ it('acceptFriendRequest() accepts a friend request', async () => {
19
+ return setCookie(process.env.COOKIE_2).then(async () => {
20
+ return await expect(acceptFriendRequest(64679301)).resolves.not.toThrow()
21
+ })
22
+ })
23
+ it('removeFriend() unfriends a user', async () => {
24
+ return await expect(removeFriend(64679301)).resolves.not.toThrow()
25
+ })
26
+
27
+ it('declineAllFriendRequests() declines all friend requests', async () => {
28
+ return await expect(declineAllFriendRequests()).resolves.not.toThrow()
29
+ })
30
+
31
+ it('unfollow() unfollows a user on Roblox', async () => {
32
+ return await expect(unfollow(55549140)).resolves.not.toThrow()
33
+ })
34
+
35
+ it('getFollowers() returns a user\'s followers', () => {
36
+ return getFollowers(55549140).then((res) => {
37
+ return expect(res).toMatchObject({
38
+ previousPageCursor: expect.toBeOneOf([expect.any(String), null]),
39
+ nextPageCursor: expect.toBeOneOf([expect.any(String), null]),
40
+ data: expect.arrayContaining([
41
+ expect.objectContaining({
42
+ created: expect.any(Date),
43
+ id: expect.any(Number),
44
+ name: expect.any(String)
45
+ })
46
+ ])
47
+ })
48
+ })
49
+ })
50
+
51
+ it('getFollowings() returns which users are being followed by the specified user', () => {
52
+ return getFollowings(55549140).then((res) => {
53
+ return expect(res).toMatchObject({
54
+ previousPageCursor: expect.toBeOneOf([expect.any(String), null]),
55
+ nextPageCursor: expect.toBeOneOf([expect.any(String), null]),
56
+ data: expect.arrayContaining([
57
+ expect.objectContaining({
58
+ created: expect.any(Date),
59
+ id: expect.any(Number),
60
+ name: expect.any(String)
61
+ })
62
+ ])
63
+ })
64
+ })
65
+ })
66
+
67
+ it('getFriendRequests() returns the logged in user\'s incoming friend requests', () => {
68
+ return getFriendRequests().then((res) => {
69
+ return expect(res).toMatchObject({
70
+ previousPageCursor: expect.toBeOneOf([expect.any(String), null]),
71
+ nextPageCursor: expect.toBeOneOf([expect.any(String), null]),
72
+ data: expect.toBeOneOf([
73
+ expect.arrayContaining([
74
+ expect.objectContaining({
75
+ created: expect.any(Date),
76
+ id: expect.any(Number),
77
+ isBanned: expect.any(Boolean),
78
+ isDeleted: expect.any(Boolean),
79
+ isOnline: expect.any(Boolean),
80
+ name: expect.any(String),
81
+ description: expect.toBeOneOf([expect.any(String), null]),
82
+ externalAppDisplayName: expect.toBeOneOf([expect.any(String), null]),
83
+ friendFrequentRank: expect.any(Number),
84
+ friendFrequentScore: expect.any(Number),
85
+ hasVerifiedBadge: expect.any(Boolean),
86
+ presenceType: expect.any(Number),
87
+ displayName: expect.any(String)
88
+ })
89
+ ]),
90
+ expect.not.arrayContaining([expect.any(Object)])
91
+ ])
92
+ })
93
+ })
94
+ })
95
+
96
+ it('getFriends() returns the friends of the specified user', () => {
97
+ return getFriends(64679301).then((res) => {
98
+ return expect(res).toMatchObject({
99
+ data: expect.arrayContaining([
100
+ expect.objectContaining({
101
+ created: expect.any(Date),
102
+ id: expect.any(Number),
103
+ isBanned: expect.any(Boolean),
104
+ isDeleted: expect.any(Boolean),
105
+ isOnline: expect.any(Boolean),
106
+ name: expect.any(String),
107
+ description: expect.toBeOneOf([expect.any(String), null]),
108
+ externalAppDisplayName: expect.toBeOneOf([expect.any(String), null]),
109
+ friendFrequentRank: expect.any(Number),
110
+ friendFrequentScore: expect.any(Number),
111
+ hasVerifiedBadge: expect.any(Boolean),
112
+ displayName: expect.any(String)
113
+ })
114
+ ])
115
+ })
116
+ })
117
+ })
118
+
119
+ it('declineFriendRequest() declines a friend request', async () => {
120
+ await setCookie(process.env.COOKIE).then(() => {
121
+ sendFriendRequest(857710783)
122
+ })
123
+
124
+ return setCookie(process.env.COOKIE_2).then(async () => {
125
+ return await expect(declineFriendRequest(64679301)).resolves.not.toThrow()
126
+ })
127
+ })
128
+ })
@@ -0,0 +1,212 @@
1
+ const { addDeveloperProduct, checkDeveloperProductName, getGroupGames, configureGamePass, getGameInstances, getGamePasses, getGameSocialLinks, getUniverseInfo, setCookie } = require('../lib')
2
+
3
+ beforeAll(() => {
4
+ return new Promise(resolve => {
5
+ setCookie(process.env.COOKIE).then(() => {
6
+ resolve()
7
+ })
8
+ })
9
+ })
10
+
11
+ describe('Game Methods', () => {
12
+ // let newProductId
13
+
14
+ it('addDeveloperProduct() adds a developer product to a universe', () => {
15
+ return addDeveloperProduct(79354837, `${parseInt(Date.now().toString().slice(-6))} Coins`, 5, 'A hefty sum of cash for you and a successful test for me.').then((res) => {
16
+ // newProductId = res.productId
17
+
18
+ return expect(res).toMatchObject({
19
+ universeId: 79354837,
20
+ name: expect.any(String), // account for Roblox filters
21
+ priceInRobux: 5,
22
+ description: expect.any(String), // account for Roblox filters
23
+ productId: expect.any(Number)
24
+ })
25
+ })
26
+ })
27
+
28
+ it('checkDeveloperProductName() should return if a developer product name is in use within a universe', () => {
29
+ return checkDeveloperProductName(79354837, '100 Koins').then((res) => {
30
+ return expect(res).toMatchObject({
31
+ Success: expect.any(Boolean),
32
+ Message: expect.any(String)
33
+ })
34
+ })
35
+ })
36
+
37
+ it('configureGamePass() should configure a game pass', () => {
38
+ const randomString = Date.now().toString().substr(-2)
39
+ return configureGamePass(13925030, `name${randomString}`, 'random description', parseInt(randomString)).then((res) => {
40
+ return expect(res).toMatchObject({
41
+ gamePassId: 13925030,
42
+ name: `name${randomString}`,
43
+ description: 'random description',
44
+ price: parseInt(randomString),
45
+ isForSale: true,
46
+ iconChanged: false
47
+ })
48
+ })
49
+ })
50
+
51
+ // Broken as of v4.14.0
52
+ // eslint-disable-next-line jest/no-commented-out-tests
53
+ // it('getDeveloperProducts() should return developer products, given placeId', () => {
54
+ // return getDeveloperProducts(166178819).then((res) => {
55
+ // return expect(res).toMatchObject({
56
+ // DeveloperProducts: expect.any(Array),
57
+ // FinalPage: expect.any(Boolean),
58
+ // PageSize: expect.any(Number)
59
+ // })
60
+ // })
61
+ // })
62
+
63
+ it('getGameInstances() should return instances of a game, given placeId', () => {
64
+ return getGameInstances(142823291, 'Public', 'Asc', 100).then((res) => {
65
+ return expect(res).toEqual(
66
+ expect.arrayContaining([
67
+ expect.objectContaining({
68
+ id: expect.any(String),
69
+ maxPlayers: expect.any(Number),
70
+ playing: expect.any(Number),
71
+ playerTokens: expect.arrayContaining([
72
+ expect.any(String)
73
+ ]),
74
+ fps: expect.any(Number),
75
+ ping: expect.any(Number)
76
+ })
77
+ ])
78
+ )
79
+ })
80
+ })
81
+
82
+ it('getGamePasses() should return an array of game passes, given universeId', () => {
83
+ return getGamePasses(2615802125).then((res) => {
84
+ return expect(res).toEqual(
85
+ expect.arrayContaining([
86
+ expect.objectContaining({
87
+ id: expect.any(Number),
88
+ name: expect.any(String),
89
+ displayName: expect.any(String),
90
+ productId: expect.any(Number),
91
+ price: expect.any(Number)
92
+ })
93
+ ])
94
+ )
95
+ })
96
+ })
97
+
98
+ it('getGameSocialLinks() should return social link information of a game, given universeId', () => {
99
+ return getGameSocialLinks(2615802125).then((res) => {
100
+ return expect(res).toEqual(
101
+ expect.arrayContaining([
102
+ expect.objectContaining({
103
+ id: expect.any(Number),
104
+ title: expect.any(String),
105
+ type: expect.any(String),
106
+ url: expect.any(String)
107
+ })
108
+ ])
109
+ )
110
+ })
111
+ })
112
+
113
+ it('getGroupGames() returns an array of group games', () => {
114
+ return getGroupGames({ groupId: 9997719, limit: 1 }).then((res) => {
115
+ return expect(res[0]).toMatchObject({
116
+ id: expect.any(Number),
117
+ name: expect.any(String),
118
+ description: expect.toBeOneOf([expect.any(String), null]),
119
+ creator: {
120
+ id: expect.any(Number),
121
+ type: expect.any(String)
122
+ },
123
+ rootPlace: {
124
+ id: expect.any(Number),
125
+ type: expect.any(String)
126
+ },
127
+ created: expect.any(Date),
128
+ updated: expect.any(Date),
129
+ placeVisits: expect.any(Number)
130
+ })
131
+ })
132
+ })
133
+
134
+ it('getUniverseInfo() should return information about universes', () => {
135
+ return getUniverseInfo(2152417643).then((res) => {
136
+ return expect(res).toEqual(
137
+ expect.arrayContaining([
138
+ expect.objectContaining({
139
+ id: expect.any(Number),
140
+ rootPlaceId: expect.any(Number),
141
+ name: expect.any(String),
142
+ description: expect.any(String),
143
+ creator: expect.objectContaining({
144
+ id: expect.any(Number),
145
+ name: expect.any(String),
146
+ type: expect.any(String),
147
+ isRNVAccount: expect.any(Boolean)
148
+ }),
149
+ allowedGearGenres: expect.any(Array),
150
+ allowedGearCategories: expect.any(Array),
151
+ isGenreEnforced: expect.any(Boolean),
152
+ copyingAllowed: expect.any(Boolean),
153
+ playing: expect.any(Number),
154
+ visits: expect.any(Number),
155
+ maxPlayers: expect.any(Number),
156
+ created: expect.any(Date),
157
+ updated: expect.any(Date),
158
+ studioAccessToApisAllowed: expect.any(Boolean),
159
+ createVipServersAllowed: expect.any(Boolean),
160
+ universeAvatarType: expect.any(String),
161
+ genre: expect.any(String),
162
+ isAllGenre: expect.any(Boolean),
163
+ isFavoritedByUser: expect.any(Boolean),
164
+ favoritedCount: expect.any(Number)
165
+ })
166
+ ])
167
+ )
168
+ })
169
+ })
170
+
171
+ it('getPlaceInfo() should return an array of information about places', () => {
172
+ return getPlaceInfo(10905034443).then((res) => {
173
+ return expect(res).toEqual(
174
+ expect.arrayContaining([
175
+ expect.objectContaining({
176
+ placeId: expect.any(Number),
177
+ name: expect.any(String),
178
+ sourceName: expect.any(String),
179
+ sourceDescription: expect.any(String),
180
+ url: expect.any(String),
181
+ builder: expect.any(String),
182
+ builderId: expect.any(Number),
183
+ hasVerifiedBadge: expect.any(Boolean),
184
+ isPlayable: expect.any(Boolean),
185
+ reasonProhibited: expect.any(String),
186
+ universeId: expect.any(Number),
187
+ universeRootPlaceId: expect.any(Number),
188
+ price: expect.any(Number),
189
+ imageToken: expect.any(String)
190
+ })
191
+ ])
192
+ )
193
+ })
194
+ })
195
+
196
+ // Dependency on getDeveloperProducts() which is broken as of 4.14.0
197
+ // eslint-disable-next-line jest/no-commented-out-tests
198
+ // it('updateDeveloperProduct() should update a developer product with new information', () => {
199
+ // return getDeveloperProducts(166178819).then((productsData) => {
200
+ // const developerProduct = productsData.DeveloperProducts.filter((product) => product.ProductId === newProductId)[0]
201
+ // return updateDeveloperProduct(79354837, developerProduct.DeveloperProductId, `Test${Date.now().toString().slice(-6)}`, 104, 'Currently unit testing.').then((res) => {
202
+ // return expect(res).toMatchObject({
203
+ // universeId: 79354837,
204
+ // name: expect.any(String), // account for Roblox filters
205
+ // priceInRobux: 104,
206
+ // description: expect.any(String), // account for Roblox filters
207
+ // developerProductId: developerProduct.DeveloperProductId
208
+ // })
209
+ // })
210
+ // })
211
+ // })
212
+ })
@@ -0,0 +1,311 @@
1
+ const { changeRank, demote, getAuditLog, getGroup, getGroups, getGroupSocialLinks, getJoinRequests, getPlayers, getRankInGroup, getRankNameInGroup, getRole, getRolePermissions, getRoles, getShout, getWall, promote, searchGroups, setRank, shout, setCookie } = require('../lib')
2
+
3
+ beforeAll(() => {
4
+ return new Promise(resolve => {
5
+ setCookie(process.env.COOKIE).then(() => {
6
+ resolve()
7
+ })
8
+ })
9
+ })
10
+
11
+ describe('Groups Methods', () => {
12
+ it('changeRank() changes rank of a user', () => {
13
+ return changeRank(4591072, 857710783, 1).then((res) => {
14
+ setTimeout(async () => {
15
+ await changeRank(4591072, 857710783, -1)
16
+ }, 1000)
17
+ return expect(res).toMatchObject({
18
+ newRole: expect.any(Object),
19
+ oldRole: expect.any(Object)
20
+ })
21
+ })
22
+ })
23
+
24
+ it('promote() promotes a user', () => {
25
+ return promote(4591072, 857710783).then((res) => {
26
+ return expect(res).toMatchObject({
27
+ newRole: expect.objectContaining({
28
+ name: expect.any(String),
29
+ rank: expect.any(Number),
30
+ id: expect.any(Number)
31
+ }),
32
+ oldRole: expect.objectContaining({
33
+ name: expect.any(String),
34
+ rank: expect.any(Number),
35
+ id: expect.any(Number)
36
+ })
37
+ })
38
+ })
39
+ })
40
+
41
+ it('demote() demotes a user', () => {
42
+ return demote(4591072, 857710783).then((res) => {
43
+ return expect(res).toMatchObject({
44
+ newRole: expect.objectContaining({
45
+ name: expect.any(String),
46
+ rank: expect.any(Number),
47
+ id: expect.any(Number)
48
+ }),
49
+ oldRole: expect.objectContaining({
50
+ name: expect.any(String),
51
+ rank: expect.any(Number),
52
+ id: expect.any(Number)
53
+ })
54
+ })
55
+ })
56
+ })
57
+
58
+ it('getAuditLog() returns a group\'s audit logs', () => {
59
+ return getAuditLog({ group: 4591072, limit: 10 }).then(res => {
60
+ return expect(res).toMatchObject({
61
+ previousPageCursor: expect.toBeOneOf([expect.any(String), null]),
62
+ nextPageCursor: expect.toBeOneOf([expect.any(String), null]),
63
+ data: expect.arrayContaining([
64
+ expect.objectContaining({
65
+ actor: expect.objectContaining({
66
+ user: expect.objectContaining({
67
+ hasVerifiedBadge: expect.any(Boolean),
68
+ userId: expect.any(Number),
69
+ username: expect.any(String),
70
+ displayName: expect.any(String)
71
+ }),
72
+ role: expect.objectContaining({
73
+ id: expect.any(Number),
74
+ name: expect.any(String),
75
+ rank: expect.any(Number)
76
+ })
77
+ }),
78
+ actionType: expect.any(String),
79
+ description: expect.any(Object),
80
+ created: expect.any(Date)
81
+ })
82
+ ])
83
+ })
84
+ })
85
+ })
86
+
87
+ it('getGroup() returns information on a group', () => {
88
+ return getGroup(4591072).then((res) => {
89
+ return expect(res).toMatchObject({
90
+ id: expect.any(Number),
91
+ name: expect.any(String),
92
+ description: expect.any(String),
93
+ owner: {
94
+ userId: expect.any(Number),
95
+ username: expect.any(String),
96
+ hasVerifiedBadge: expect.any(Boolean),
97
+ displayName: expect.any(String)
98
+ },
99
+ shout: expect.objectContaining({
100
+ body: expect.any(String),
101
+ poster: expect.objectContaining({
102
+ hasVerifiedBadge: expect.any(Boolean),
103
+ userId: expect.any(Number),
104
+ username: expect.any(String),
105
+ displayName: expect.any(String)
106
+ }),
107
+ created: expect.any(Date),
108
+ updated: expect.any(Date)
109
+ }),
110
+ memberCount: expect.any(Number),
111
+ isBuildersClubOnly: expect.any(Boolean),
112
+ publicEntryAllowed: expect.any(Boolean),
113
+ hasVerifiedBadge: expect.any(Boolean)
114
+ })
115
+ })
116
+ })
117
+
118
+ it('getGroups() should return groups the specified user is in', async () => {
119
+ return getGroups(55549140).then((res) => {
120
+ return expect(res).toEqual(
121
+ expect.arrayContaining([
122
+ expect.objectContaining({
123
+ Id: expect.any(Number),
124
+ Name: expect.any(String),
125
+ EmblemUrl: expect.any(String),
126
+ MemberCount: expect.any(Number),
127
+ Rank: expect.any(Number),
128
+ Role: expect.any(String),
129
+ RoleId: expect.any(Number),
130
+ IsPrimary: expect.any(Boolean)
131
+ })
132
+ ])
133
+ )
134
+ })
135
+ })
136
+
137
+ it('getGroupSocialLinks() should return social link information of a game, given universeId', () => {
138
+ return getGroupSocialLinks(9997719).then((res) => {
139
+ return expect(res).toEqual(
140
+ expect.arrayContaining([
141
+ expect.objectContaining({
142
+ id: expect.any(Number),
143
+ title: expect.any(String),
144
+ type: expect.any(String),
145
+ url: expect.any(String)
146
+ })
147
+ ])
148
+ )
149
+ })
150
+ })
151
+
152
+ // TODO: getJoinRequest, would require being able to request to join a group
153
+
154
+ it('getJoinRequests() returns a list of players that want to join a group', () => {
155
+ return getJoinRequests(4591072).then((res) => {
156
+ return expect(res).toMatchObject({
157
+ previousPageCursor: expect.toBeOneOf([expect.any(String), null]),
158
+ nextPageCursor: expect.toBeOneOf([expect.any(String), null]),
159
+ data: expect.any(Array)
160
+ })
161
+ })
162
+ })
163
+
164
+ it('getPlayers() returns a list of players in a group', () => {
165
+ return getPlayers(4591072, [30820744]).then((res) => {
166
+ return expect(res).toEqual(
167
+ expect.arrayContaining([
168
+ expect.objectContaining({
169
+ userId: expect.any(Number),
170
+ username: expect.any(String)
171
+ })
172
+ ])
173
+ )
174
+ })
175
+ })
176
+
177
+ it('getRankInGroup() returns a number reflecting a user\'s rank in a group (0-255)', () => {
178
+ return getRankInGroup(4591072, 55549140).then((res) => {
179
+ return expect(res).toEqual(expect.any(Number))
180
+ })
181
+ })
182
+
183
+ it('getRankNameInGroup() returns a number reflecting a user\'s rank name in a group', () => {
184
+ return getRankNameInGroup(4591072, 55549140).then((res) => {
185
+ return expect(res).toEqual(expect.any(String))
186
+ })
187
+ })
188
+
189
+ it('getRole() returns a role that matches the provided rank', () => {
190
+ return getRole(4591072, 255).then((res) => {
191
+ return expect(res).toMatchObject({
192
+ name: expect.any(String),
193
+ rank: expect.any(Number),
194
+ memberCount: expect.any(Number),
195
+ ID: expect.any(Number)
196
+ })
197
+ })
198
+ })
199
+
200
+ it('getRolePermissions() returns permissions given to a role by a group', () => {
201
+ return getRolePermissions(4591072, 30820744).then((res) => {
202
+ return expect(res).toMatchObject({
203
+ groupId: expect.any(Number),
204
+ role: expect.any(Object),
205
+ permissions: expect.any(Object)
206
+ })
207
+ })
208
+ })
209
+
210
+ it('getRoles() returns the roles in a group', () => {
211
+ return getRoles(4591072).then((res) => {
212
+ return expect(res).toEqual(
213
+ expect.arrayContaining([
214
+ expect.objectContaining({
215
+ name: expect.any(String),
216
+ rank: expect.any(Number),
217
+ memberCount: expect.any(Number),
218
+ ID: expect.any(Number)
219
+ })
220
+ ])
221
+ )
222
+ })
223
+ })
224
+
225
+ it('getShout() returns the current shout on a group', () => {
226
+ return getShout(4591072).then((res) => {
227
+ return expect(res).toMatchObject({
228
+ body: expect.any(String),
229
+ poster: {
230
+ userId: expect.any(Number),
231
+ username: expect.any(String)
232
+ },
233
+ created: expect.any(String),
234
+ updated: expect.any(String)
235
+ })
236
+ })
237
+ })
238
+
239
+ it('getWall() returns the latest messages on the group wall', () => {
240
+ return getWall(4591072).then((res) => {
241
+ return expect(res).toMatchObject({
242
+ previousPageCursor: expect.toBeOneOf([expect.any(String), null]),
243
+ nextPageCursor: expect.toBeOneOf([expect.any(String), null]),
244
+ data: expect.arrayContaining([
245
+ expect.objectContaining({
246
+ id: expect.any(Number),
247
+ poster: expect.toBeOneOf([expect.any(Object), null]),
248
+ body: expect.any(String),
249
+ created: expect.any(Date),
250
+ updated: expect.any(Date)
251
+ })
252
+ ])
253
+ })
254
+ })
255
+ })
256
+
257
+ // PASS: groupPayout, costs Robux to test
258
+
259
+ // PASS: handleJoinRequest, would require being able to request to join a group
260
+
261
+ // PASS: leaveGroup, would require being able to request to join a group
262
+
263
+ it('searchGroups() returns groups that match the query', () => {
264
+ return searchGroups('noblox.js').then((res) => {
265
+ return expect(res).toEqual(
266
+ expect.arrayContaining([expect.objectContaining({
267
+ id: expect.any(Number),
268
+ name: expect.any(String),
269
+ description: expect.any(String),
270
+ memberCount: expect.any(Number),
271
+ publicEntryAllowed: expect.any(Boolean),
272
+ created: expect.any(Date),
273
+ updated: expect.any(Date)
274
+ })]))
275
+ })
276
+ })
277
+
278
+ // PASS: setGroupDescription -- skip this, do not own group
279
+
280
+ // PASS: setGroupName -- skip this, costs Robux
281
+
282
+ it('setRank() should set a player\'s rank to the specified rank', () => {
283
+ return changeRank(4591072, 857710783, 2).then(() => {
284
+ return setRank(4591072, 857710783, 1).then((res) => {
285
+ return expect(res).toMatchObject({
286
+ name: expect.any(String),
287
+ rank: expect.any(Number),
288
+ memberCount: expect.any(Number),
289
+ ID: expect.any(Number)
290
+ })
291
+ })
292
+ })
293
+ })
294
+
295
+ it('shout() should post a message to the group\'s shout', () => {
296
+ return shout(4591072, 'This is a noblox.js test!').then((res) => {
297
+ setTimeout(async () => {
298
+ await shout(4591072, '')
299
+ }, 1000)
300
+ return expect(res).toMatchObject({
301
+ body: expect.any(String),
302
+ poster: {
303
+ userId: expect.any(Number),
304
+ username: expect.any(String)
305
+ },
306
+ created: expect.any(String),
307
+ updated: expect.any(String)
308
+ })
309
+ })
310
+ })
311
+ })