delectusnon 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (276) hide show
  1. package/.prettierignore +2 -0
  2. package/.travis.yml +33 -0
  3. package/.vscode/launch.json +24 -0
  4. package/.vscode/settings.json +3 -0
  5. package/demos/ago-node-cli/README.md +29 -0
  6. package/demos/ago-node-cli/ago.js +32 -0
  7. package/demos/ago-node-cli/index.js +11 -0
  8. package/demos/ago-node-cli/lib/item-export-command.js +48 -0
  9. package/demos/ago-node-cli/lib/item-search-command.js +35 -0
  10. package/demos/ago-node-cli/package-lock.json +172 -0
  11. package/demos/ago-node-cli/package.json +30 -0
  12. package/demos/attachments/README.md +5 -0
  13. package/demos/attachments/index.html +164 -0
  14. package/demos/attachments/package-lock.json +182 -0
  15. package/demos/attachments/package.json +18 -0
  16. package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
  17. package/demos/batch-geocoder-node/README.md +15 -0
  18. package/demos/batch-geocoder-node/batch-geocode.js +118 -0
  19. package/demos/batch-geocoder-node/config-template.js +18 -0
  20. package/demos/batch-geocoder-node/package-lock.json +116 -0
  21. package/demos/batch-geocoder-node/package.json +39 -0
  22. package/demos/express/README.md +10 -0
  23. package/demos/express/config.json.template +3 -0
  24. package/demos/express/package-lock.json +473 -0
  25. package/demos/express/package.json +18 -0
  26. package/demos/express/server.js +28 -0
  27. package/demos/feature-service-browser/README.md +6 -0
  28. package/demos/feature-service-browser/index.html +122 -0
  29. package/demos/feature-service-browser/package-lock.json +182 -0
  30. package/demos/feature-service-browser/package.json +18 -0
  31. package/demos/geocoder-browser/README.md +10 -0
  32. package/demos/geocoder-browser/config.js.template +1 -0
  33. package/demos/geocoder-browser/index.html +131 -0
  34. package/demos/geocoder-browser/package-lock.json +182 -0
  35. package/demos/geocoder-browser/package.json +19 -0
  36. package/demos/geocoder-browser/post-sign-in.html +25 -0
  37. package/demos/jsapi-integration/README.md +8 -0
  38. package/demos/jsapi-integration/config.js +6 -0
  39. package/demos/jsapi-integration/index.html +79 -0
  40. package/demos/jsapi-integration/package-lock.json +184 -0
  41. package/demos/jsapi-integration/package.json +19 -0
  42. package/demos/oauth2-browser/README.md +12 -0
  43. package/demos/oauth2-browser/authenticate.html +32 -0
  44. package/demos/oauth2-browser/config.js.template +6 -0
  45. package/demos/oauth2-browser/index.html +202 -0
  46. package/demos/oauth2-browser/logo.svg +4 -0
  47. package/demos/oauth2-browser/package-lock.json +163 -0
  48. package/demos/oauth2-browser/package.json +18 -0
  49. package/demos/oauth2-browser/style.css +36 -0
  50. package/demos/oauth2-browser-retry/README.md +25 -0
  51. package/demos/oauth2-browser-retry/authenticate.html +21 -0
  52. package/demos/oauth2-browser-retry/index.html +116 -0
  53. package/demos/oauth2-browser-retry/logo.svg +4 -0
  54. package/demos/vue/.env.example +11 -0
  55. package/demos/vue/.eslintrc.js +17 -0
  56. package/demos/vue/.postcssrc.js +5 -0
  57. package/demos/vue/README.md +17 -0
  58. package/demos/vue/babel.config.js +3 -0
  59. package/demos/vue/package-lock.json +11323 -0
  60. package/demos/vue/package.json +33 -0
  61. package/demos/vue/public/favicon.ico +0 -0
  62. package/demos/vue/public/index.html +24 -0
  63. package/demos/vue/src/assets/logo.svg +29 -0
  64. package/demos/vue/src/components/App.vue +308 -0
  65. package/demos/vue/src/components/Authenticate.vue +65 -0
  66. package/demos/vue/src/components/Loader.vue +230 -0
  67. package/demos/vue/src/main.js +92 -0
  68. package/docs/FAQ.md +28 -0
  69. package/docs/HISTORY.md +62 -0
  70. package/docs/acetate.config.js +223 -0
  71. package/docs/build-typedoc.js +301 -0
  72. package/docs/src/_layout.html +82 -0
  73. package/docs/src/api/_declaration.html +496 -0
  74. package/docs/src/api/_layout.html +127 -0
  75. package/docs/src/api/_package.html +13 -0
  76. package/docs/src/api/index.html +23 -0
  77. package/docs/src/guides/_layout.html +24 -0
  78. package/docs/src/guides/amd-requirejs-dojo.md +40 -0
  79. package/docs/src/guides/babel-and-rollup.md +30 -0
  80. package/docs/src/guides/babel-and-webpack.md +30 -0
  81. package/docs/src/guides/browser-authentication.md +31 -0
  82. package/docs/src/guides/browserify.md +9 -0
  83. package/docs/src/guides/cli-authentication.md +9 -0
  84. package/docs/src/guides/client-server-authentication.md +9 -0
  85. package/docs/src/guides/from-a-cdn.md +36 -0
  86. package/docs/src/guides/index.md +52 -0
  87. package/docs/src/guides/node.md +70 -0
  88. package/docs/src/guides/package-overview.md +8 -0
  89. package/docs/src/guides/server-authentication.md +9 -0
  90. package/docs/src/guides/typescript-and-webpack.md +9 -0
  91. package/docs/src/img/icons.png +0 -0
  92. package/docs/src/img/icons@2x.png +0 -0
  93. package/docs/src/index.html +12 -0
  94. package/docs/src/js/api-search.js +112 -0
  95. package/docs/src/js/nav-toggle.js +41 -0
  96. package/docs/src/sass/_highlight.scss +96 -0
  97. package/docs/src/sass/_icons.scss +157 -0
  98. package/docs/src/sass/style.scss +169 -0
  99. package/jasmine.json +7 -0
  100. package/karma.conf.js +100 -0
  101. package/lerna.json +8 -0
  102. package/notes/README.md +88 -0
  103. package/package.json +88 -0
  104. package/packages/arcgis-rest-auth/README.md +64 -0
  105. package/packages/arcgis-rest-auth/package-lock.json +11 -0
  106. package/packages/arcgis-rest-auth/package.json +51 -0
  107. package/packages/arcgis-rest-auth/src/ApplicationSession.ts +109 -0
  108. package/packages/arcgis-rest-auth/src/UserSession.ts +873 -0
  109. package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
  110. package/packages/arcgis-rest-auth/src/fetch-token.ts +52 -0
  111. package/packages/arcgis-rest-auth/src/generate-token.ts +39 -0
  112. package/packages/arcgis-rest-auth/src/index.ts +8 -0
  113. package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
  114. package/packages/arcgis-rest-auth/test/UserSession.test.ts +995 -0
  115. package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
  116. package/packages/arcgis-rest-auth/test/generateToken.test.ts +130 -0
  117. package/packages/arcgis-rest-auth/test/utils.ts +14 -0
  118. package/packages/arcgis-rest-auth/tsconfig.json +6 -0
  119. package/packages/arcgis-rest-common-types/README.md +61 -0
  120. package/packages/arcgis-rest-common-types/package.json +38 -0
  121. package/packages/arcgis-rest-common-types/src/group.ts +54 -0
  122. package/packages/arcgis-rest-common-types/src/index.ts +467 -0
  123. package/packages/arcgis-rest-common-types/src/item.ts +45 -0
  124. package/packages/arcgis-rest-common-types/src/webmap.ts +1232 -0
  125. package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
  126. package/packages/arcgis-rest-feature-service/README.md +70 -0
  127. package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
  128. package/packages/arcgis-rest-feature-service/package.json +50 -0
  129. package/packages/arcgis-rest-feature-service/src/add.ts +81 -0
  130. package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
  131. package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
  132. package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
  133. package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
  134. package/packages/arcgis-rest-feature-service/src/helpers.ts +80 -0
  135. package/packages/arcgis-rest-feature-service/src/index.ts +12 -0
  136. package/packages/arcgis-rest-feature-service/src/query.ts +172 -0
  137. package/packages/arcgis-rest-feature-service/src/queryRelated.ts +91 -0
  138. package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
  139. package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
  140. package/packages/arcgis-rest-feature-service/test/attachments.test.ts +203 -0
  141. package/packages/arcgis-rest-feature-service/test/features.test.ts +252 -0
  142. package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +279 -0
  143. package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
  144. package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
  145. package/packages/arcgis-rest-feature-service-admin/README.md +66 -0
  146. package/packages/arcgis-rest-feature-service-admin/package-lock.json +11 -0
  147. package/packages/arcgis-rest-feature-service-admin/package.json +53 -0
  148. package/packages/arcgis-rest-feature-service-admin/src/addTo.ts +70 -0
  149. package/packages/arcgis-rest-feature-service-admin/src/create.ts +195 -0
  150. package/packages/arcgis-rest-feature-service-admin/src/index.ts +2 -0
  151. package/packages/arcgis-rest-feature-service-admin/test/addTo.test.ts +310 -0
  152. package/packages/arcgis-rest-feature-service-admin/test/create.test.ts +412 -0
  153. package/packages/arcgis-rest-feature-service-admin/test/mocks/move.ts +14 -0
  154. package/packages/arcgis-rest-feature-service-admin/test/mocks/service.ts +72 -0
  155. package/packages/arcgis-rest-feature-service-admin/tsconfig.json +6 -0
  156. package/packages/arcgis-rest-geocoder/README.md +79 -0
  157. package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
  158. package/packages/arcgis-rest-geocoder/package.json +52 -0
  159. package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
  160. package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
  161. package/packages/arcgis-rest-geocoder/src/helpers.ts +79 -0
  162. package/packages/arcgis-rest-geocoder/src/index.ts +8 -0
  163. package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
  164. package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
  165. package/packages/arcgis-rest-geocoder/test/bulk.test.ts +113 -0
  166. package/packages/arcgis-rest-geocoder/test/geocode.test.ts +121 -0
  167. package/packages/arcgis-rest-geocoder/test/helpers.test.ts +113 -0
  168. package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +591 -0
  169. package/packages/arcgis-rest-geocoder/test/reverse.test.ts +126 -0
  170. package/packages/arcgis-rest-geocoder/test/suggest.test.ts +77 -0
  171. package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
  172. package/packages/arcgis-rest-groups/README.md +64 -0
  173. package/packages/arcgis-rest-groups/package-lock.json +11 -0
  174. package/packages/arcgis-rest-groups/package.json +52 -0
  175. package/packages/arcgis-rest-groups/src/create.ts +34 -0
  176. package/packages/arcgis-rest-groups/src/get.ts +95 -0
  177. package/packages/arcgis-rest-groups/src/helpers.ts +26 -0
  178. package/packages/arcgis-rest-groups/src/index.ts +11 -0
  179. package/packages/arcgis-rest-groups/src/notification.ts +77 -0
  180. package/packages/arcgis-rest-groups/src/protect.ts +40 -0
  181. package/packages/arcgis-rest-groups/src/remove.ts +23 -0
  182. package/packages/arcgis-rest-groups/src/search.ts +64 -0
  183. package/packages/arcgis-rest-groups/src/update.ts +36 -0
  184. package/packages/arcgis-rest-groups/test/crud.test.ts +104 -0
  185. package/packages/arcgis-rest-groups/test/get.test.ts +101 -0
  186. package/packages/arcgis-rest-groups/test/mocks/responses.ts +141 -0
  187. package/packages/arcgis-rest-groups/test/notification.test.ts +102 -0
  188. package/packages/arcgis-rest-groups/test/protect.test.ts +64 -0
  189. package/packages/arcgis-rest-groups/test/search.test.ts +85 -0
  190. package/packages/arcgis-rest-groups/tsconfig.json +6 -0
  191. package/packages/arcgis-rest-items/README.md +66 -0
  192. package/packages/arcgis-rest-items/package-lock.json +11 -0
  193. package/packages/arcgis-rest-items/package.json +52 -0
  194. package/packages/arcgis-rest-items/src/add.ts +103 -0
  195. package/packages/arcgis-rest-items/src/create.ts +110 -0
  196. package/packages/arcgis-rest-items/src/get.ts +79 -0
  197. package/packages/arcgis-rest-items/src/helpers.ts +147 -0
  198. package/packages/arcgis-rest-items/src/index.ts +11 -0
  199. package/packages/arcgis-rest-items/src/protect.ts +38 -0
  200. package/packages/arcgis-rest-items/src/remove.ts +58 -0
  201. package/packages/arcgis-rest-items/src/search.ts +78 -0
  202. package/packages/arcgis-rest-items/src/update.ts +134 -0
  203. package/packages/arcgis-rest-items/test/add.test.ts +256 -0
  204. package/packages/arcgis-rest-items/test/create.test.ts +371 -0
  205. package/packages/arcgis-rest-items/test/get.test.ts +181 -0
  206. package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
  207. package/packages/arcgis-rest-items/test/mocks/item.ts +33 -0
  208. package/packages/arcgis-rest-items/test/mocks/resources.ts +31 -0
  209. package/packages/arcgis-rest-items/test/mocks/search.ts +63 -0
  210. package/packages/arcgis-rest-items/test/protect.test.ts +122 -0
  211. package/packages/arcgis-rest-items/test/remove.test.ts +161 -0
  212. package/packages/arcgis-rest-items/test/search.test.ts +159 -0
  213. package/packages/arcgis-rest-items/test/update.test.ts +450 -0
  214. package/packages/arcgis-rest-items/tsconfig.json +6 -0
  215. package/packages/arcgis-rest-request/README.md +65 -0
  216. package/packages/arcgis-rest-request/package-lock.json +11 -0
  217. package/packages/arcgis-rest-request/package.json +42 -0
  218. package/packages/arcgis-rest-request/src/index.ts +13 -0
  219. package/packages/arcgis-rest-request/src/request.ts +293 -0
  220. package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -0
  221. package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
  222. package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
  223. package/packages/arcgis-rest-request/src/utils/check-for-errors.ts +65 -0
  224. package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +34 -0
  225. package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
  226. package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
  227. package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
  228. package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
  229. package/packages/arcgis-rest-request/test/mocks/errors.ts +68 -0
  230. package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
  231. package/packages/arcgis-rest-request/test/mocks/portal.ts +112 -0
  232. package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
  233. package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
  234. package/packages/arcgis-rest-request/test/request.test.ts +299 -0
  235. package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +170 -0
  236. package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
  237. package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
  238. package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
  239. package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +37 -0
  240. package/packages/arcgis-rest-request/test/utils/portal.test.ts +97 -0
  241. package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -0
  242. package/packages/arcgis-rest-request/tsconfig.json +6 -0
  243. package/packages/arcgis-rest-sharing/README.md +67 -0
  244. package/packages/arcgis-rest-sharing/package-lock.json +11 -0
  245. package/packages/arcgis-rest-sharing/package.json +57 -0
  246. package/packages/arcgis-rest-sharing/src/access.ts +85 -0
  247. package/packages/arcgis-rest-sharing/src/group-sharing.ts +211 -0
  248. package/packages/arcgis-rest-sharing/src/helpers.ts +82 -0
  249. package/packages/arcgis-rest-sharing/src/index.ts +5 -0
  250. package/packages/arcgis-rest-sharing/test/access.test.ts +154 -0
  251. package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +566 -0
  252. package/packages/arcgis-rest-sharing/test/helpers.test.ts +55 -0
  253. package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +18 -0
  254. package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
  255. package/packages/arcgis-rest-users/README.md +71 -0
  256. package/packages/arcgis-rest-users/package-lock.json +11 -0
  257. package/packages/arcgis-rest-users/package.json +51 -0
  258. package/packages/arcgis-rest-users/src/get.ts +69 -0
  259. package/packages/arcgis-rest-users/src/index.ts +6 -0
  260. package/packages/arcgis-rest-users/src/invitation.ts +166 -0
  261. package/packages/arcgis-rest-users/src/notification.ts +73 -0
  262. package/packages/arcgis-rest-users/test/get.test.ts +99 -0
  263. package/packages/arcgis-rest-users/test/invitation.test.ts +169 -0
  264. package/packages/arcgis-rest-users/test/mocks/invitation.ts +70 -0
  265. package/packages/arcgis-rest-users/test/mocks/notification.ts +34 -0
  266. package/packages/arcgis-rest-users/test/mocks/user.ts +173 -0
  267. package/packages/arcgis-rest-users/test/notification.test.ts +83 -0
  268. package/packages/arcgis-rest-users/tsconfig.json +6 -0
  269. package/support/changelog.js +394 -0
  270. package/support/deploy-doc-site.js +16 -0
  271. package/support/publish.sh +43 -0
  272. package/support/test-helpers.js +8 -0
  273. package/tsconfig.json +69 -0
  274. package/tslint.json +15 -0
  275. package/umd-base-profile.js +82 -0
  276. package/umd-production-profile.js +13 -0
@@ -0,0 +1,122 @@
1
+ /* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import * as fetchMock from "fetch-mock";
5
+
6
+ import { protectItem, unprotectItem } from "../src/protect";
7
+
8
+ import { ItemSuccessResponse } from "./mocks/item";
9
+
10
+ import { UserSession } from "@esri/arcgis-rest-auth";
11
+ import { TOMORROW } from "@esri/arcgis-rest-auth/test/utils";
12
+ import { encodeParam } from "@esri/arcgis-rest-request";
13
+
14
+ describe("search", () => {
15
+ afterEach(fetchMock.restore);
16
+
17
+ describe("Authenticated methods", () => {
18
+ // setup a UserSession to use in all these tests
19
+ const MOCK_USER_SESSION = new UserSession({
20
+ clientId: "clientId",
21
+ redirectUri: "https://example-app.com/redirect-uri",
22
+ token: "fake-token",
23
+ tokenExpires: TOMORROW,
24
+ refreshToken: "refreshToken",
25
+ refreshTokenExpires: TOMORROW,
26
+ refreshTokenTTL: 1440,
27
+ username: "casey",
28
+ password: "123456",
29
+ portal: "https://myorg.maps.arcgis.com/sharing/rest"
30
+ });
31
+
32
+ const MOCK_USER_REQOPTS = {
33
+ authentication: MOCK_USER_SESSION
34
+ };
35
+
36
+ it("should protect an item", done => {
37
+ fetchMock.once("*", ItemSuccessResponse);
38
+ protectItem({
39
+ id: "3ef",
40
+ owner: "dbouwman",
41
+ ...MOCK_USER_REQOPTS
42
+ })
43
+ .then(response => {
44
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
45
+ expect(url).toEqual(
46
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/items/3ef/protect"
47
+ );
48
+ expect(options.method).toBe("POST");
49
+ expect(options.body).toContain(encodeParam("f", "json"));
50
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
51
+ done();
52
+ })
53
+ .catch(e => {
54
+ fail(e);
55
+ });
56
+ });
57
+
58
+ it("should protect an item, no owner passed", done => {
59
+ fetchMock.once("*", ItemSuccessResponse);
60
+ protectItem({
61
+ id: "3ef",
62
+ ...MOCK_USER_REQOPTS
63
+ })
64
+ .then(response => {
65
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
66
+ expect(url).toEqual(
67
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/items/3ef/protect"
68
+ );
69
+ expect(options.method).toBe("POST");
70
+ expect(options.body).toContain(encodeParam("f", "json"));
71
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
72
+ done();
73
+ })
74
+ .catch(e => {
75
+ fail(e);
76
+ });
77
+ });
78
+
79
+ it("should unprotect an item", done => {
80
+ fetchMock.once("*", ItemSuccessResponse);
81
+ unprotectItem({
82
+ id: "3ef",
83
+ owner: "dbouwman",
84
+ ...MOCK_USER_REQOPTS
85
+ })
86
+ .then(response => {
87
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
88
+ expect(url).toEqual(
89
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/items/3ef/unprotect"
90
+ );
91
+ expect(options.method).toBe("POST");
92
+ expect(options.body).toContain(encodeParam("f", "json"));
93
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
94
+ done();
95
+ })
96
+ .catch(e => {
97
+ fail(e);
98
+ });
99
+ });
100
+
101
+ it("should unprotect an item, no owner passed", done => {
102
+ fetchMock.once("*", ItemSuccessResponse);
103
+ unprotectItem({
104
+ id: "3ef",
105
+ ...MOCK_USER_REQOPTS
106
+ })
107
+ .then(response => {
108
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
109
+ expect(url).toEqual(
110
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/items/3ef/unprotect"
111
+ );
112
+ expect(options.method).toBe("POST");
113
+ expect(options.body).toContain(encodeParam("f", "json"));
114
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
115
+ done();
116
+ })
117
+ .catch(e => {
118
+ fail(e);
119
+ });
120
+ });
121
+ }); // auth requests
122
+ });
@@ -0,0 +1,161 @@
1
+ /* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import * as fetchMock from "fetch-mock";
5
+
6
+ import { removeItem, removeItemResource } from "../src/remove";
7
+
8
+ import { ItemSuccessResponse } from "./mocks/item";
9
+
10
+ import { RemoveItemResourceResponse } from "./mocks/resources";
11
+
12
+ import { UserSession } from "@esri/arcgis-rest-auth";
13
+ import { TOMORROW } from "@esri/arcgis-rest-auth/test/utils";
14
+ import { encodeParam } from "@esri/arcgis-rest-request";
15
+
16
+ describe("search", () => {
17
+ afterEach(fetchMock.restore);
18
+
19
+ describe("Authenticated methods", () => {
20
+ // setup a UserSession to use in all these tests
21
+ const MOCK_USER_SESSION = new UserSession({
22
+ clientId: "clientId",
23
+ redirectUri: "https://example-app.com/redirect-uri",
24
+ token: "fake-token",
25
+ tokenExpires: TOMORROW,
26
+ refreshToken: "refreshToken",
27
+ refreshTokenExpires: TOMORROW,
28
+ refreshTokenTTL: 1440,
29
+ username: "casey",
30
+ password: "123456",
31
+ portal: "https://myorg.maps.arcgis.com/sharing/rest"
32
+ });
33
+
34
+ const MOCK_USER_REQOPTS = {
35
+ authentication: MOCK_USER_SESSION
36
+ };
37
+
38
+ it("should remove an item", done => {
39
+ fetchMock.once("*", ItemSuccessResponse);
40
+ removeItem({
41
+ id: "3ef",
42
+ owner: "dbouwman",
43
+ ...MOCK_USER_REQOPTS
44
+ })
45
+ .then(response => {
46
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
47
+ expect(url).toEqual(
48
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/items/3ef/delete"
49
+ );
50
+ expect(options.method).toBe("POST");
51
+ expect(options.body).toContain(encodeParam("f", "json"));
52
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
53
+ done();
54
+ })
55
+ .catch(e => {
56
+ fail(e);
57
+ });
58
+ });
59
+
60
+ it("should remove an item, no owner passed", done => {
61
+ fetchMock.once("*", ItemSuccessResponse);
62
+ removeItem({
63
+ id: "3ef",
64
+ ...MOCK_USER_REQOPTS
65
+ })
66
+ .then(response => {
67
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
68
+ expect(url).toEqual(
69
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/items/3ef/delete"
70
+ );
71
+ expect(options.method).toBe("POST");
72
+ expect(options.body).toContain(encodeParam("f", "json"));
73
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
74
+ done();
75
+ })
76
+ .catch(e => {
77
+ fail(e);
78
+ });
79
+ });
80
+
81
+ it("should remove a resource", done => {
82
+ fetchMock.once("*", RemoveItemResourceResponse);
83
+ removeItemResource({
84
+ id: "3ef",
85
+ owner: "dbouwman",
86
+ resource: "image/banner.png",
87
+ ...MOCK_USER_REQOPTS
88
+ })
89
+ .then(response => {
90
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
91
+ expect(url).toEqual(
92
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/items/3ef/removeResources"
93
+ );
94
+ expect(options.method).toBe("POST");
95
+ expect(options.body).toContain(encodeParam("f", "json"));
96
+ expect(options.body).toContain(
97
+ encodeParam("resource", "image/banner.png")
98
+ );
99
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
100
+ done();
101
+ })
102
+ .catch(e => {
103
+ fail(e);
104
+ });
105
+ });
106
+
107
+ it("should remove a resource, no owner passed", done => {
108
+ fetchMock.once("*", RemoveItemResourceResponse);
109
+ removeItemResource({
110
+ id: "3ef",
111
+ resource: "image/banner.png",
112
+ ...MOCK_USER_REQOPTS
113
+ })
114
+ .then(response => {
115
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
116
+ expect(url).toEqual(
117
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/items/3ef/removeResources"
118
+ );
119
+ expect(options.method).toBe("POST");
120
+ expect(options.body).toContain(encodeParam("f", "json"));
121
+ expect(options.body).toContain(
122
+ encodeParam("resource", "image/banner.png")
123
+ );
124
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
125
+ done();
126
+ })
127
+ .catch(e => {
128
+ fail(e);
129
+ });
130
+ });
131
+
132
+ it("should remove a resource with extra params", done => {
133
+ fetchMock.once("*", RemoveItemResourceResponse);
134
+ removeItemResource({
135
+ id: "3ef",
136
+ resource: "image/banner.png",
137
+ ...MOCK_USER_REQOPTS,
138
+ params: {
139
+ deleteAll: true
140
+ }
141
+ })
142
+ .then(response => {
143
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
144
+ expect(url).toEqual(
145
+ "https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/items/3ef/removeResources"
146
+ );
147
+ expect(options.method).toBe("POST");
148
+ expect(options.body).toContain(encodeParam("f", "json"));
149
+ expect(options.body).toContain(encodeParam("deleteAll", "true"));
150
+ expect(options.body).toContain(
151
+ encodeParam("resource", "image/banner.png")
152
+ );
153
+ expect(options.body).toContain(encodeParam("token", "fake-token"));
154
+ done();
155
+ })
156
+ .catch(e => {
157
+ fail(e);
158
+ });
159
+ });
160
+ }); // auth requests
161
+ });
@@ -0,0 +1,159 @@
1
+ /* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import * as fetchMock from "fetch-mock";
5
+
6
+ import { searchItems, ISearchRequestOptions } from "../src/search";
7
+
8
+ import { SearchResponse } from "./mocks/search";
9
+ import { UserSession } from "@esri/arcgis-rest-auth";
10
+ import { TOMORROW } from "@esri/arcgis-rest-auth/test/utils";
11
+
12
+ describe("search", () => {
13
+ afterEach(fetchMock.restore);
14
+
15
+ it("should make a simple, single search request", done => {
16
+ fetchMock.once("*", SearchResponse);
17
+
18
+ searchItems("DC AND typekeywords:hubSiteApplication")
19
+ .then(() => {
20
+ expect(fetchMock.called()).toEqual(true);
21
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
22
+ expect(url).toEqual(
23
+ "https://www.arcgis.com/sharing/rest/search?f=json&q=DC%20AND%20typekeywords%3AhubSiteApplication"
24
+ );
25
+ expect(options.method).toBe("GET");
26
+ done();
27
+ })
28
+ .catch(e => {
29
+ fail(e);
30
+ });
31
+ });
32
+
33
+ it("should take num, start, sortField, sortDir and construct the request", done => {
34
+ fetchMock.once("*", SearchResponse);
35
+
36
+ searchItems({
37
+ searchForm: {
38
+ q: "DC AND typekeywords:hubSiteApplication",
39
+ num: 12,
40
+ start: 22,
41
+ sortField: "title",
42
+ sortDir: "desc"
43
+ }
44
+ })
45
+ .then(() => {
46
+ expect(fetchMock.called()).toEqual(true);
47
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
48
+ expect(url).toEqual(
49
+ "https://www.arcgis.com/sharing/rest/search?f=json&q=DC%20AND%20typekeywords%3AhubSiteApplication&num=12&start=22&sortField=title&sortDir=desc"
50
+ );
51
+ expect(options.method).toBe("GET");
52
+ done();
53
+ })
54
+ .catch(e => {
55
+ fail(e);
56
+ });
57
+ });
58
+
59
+ it("should pass through other requestOptions at the same time", done => {
60
+ fetchMock.once("*", SearchResponse);
61
+
62
+ searchItems({
63
+ searchForm: {
64
+ q: "DC AND typekeywords:hubSiteApplication",
65
+ num: 12,
66
+ start: 22,
67
+ sortField: "title",
68
+ sortDir: "desc"
69
+ },
70
+ httpMethod: "POST"
71
+ })
72
+ .then(() => {
73
+ expect(fetchMock.called()).toEqual(true);
74
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
75
+ expect(url).toEqual("https://www.arcgis.com/sharing/rest/search");
76
+ expect(options.body).toContain(
77
+ "q=DC%20AND%20typekeywords%3AhubSiteApplication&num=12&start=22&sortField=title&sortDir=desc"
78
+ );
79
+ expect(options.method).toBe("POST");
80
+ done();
81
+ })
82
+ .catch(e => {
83
+ fail(e);
84
+ });
85
+ });
86
+
87
+ it("should mixin generic params with the search form", done => {
88
+ fetchMock.once("*", SearchResponse);
89
+
90
+ searchItems({
91
+ searchForm: {
92
+ q: "DC AND typekeywords:hubSiteApplication",
93
+ num: 12,
94
+ start: 22,
95
+ sortField: "title",
96
+ sortDir: "desc"
97
+ },
98
+ params: {
99
+ foo: "bar"
100
+ }
101
+ })
102
+ .then(() => {
103
+ expect(fetchMock.called()).toEqual(true);
104
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
105
+ expect(url).toEqual(
106
+ "https://www.arcgis.com/sharing/rest/search?f=json&foo=bar&q=DC%20AND%20typekeywords%3AhubSiteApplication&num=12&start=22&sortField=title&sortDir=desc"
107
+ );
108
+ expect(options.method).toBe("GET");
109
+ done();
110
+ })
111
+ .catch(e => {
112
+ fail(e);
113
+ });
114
+ });
115
+
116
+ describe("Authenticated methods", () => {
117
+ // setup a UserSession to use in all these tests
118
+ const MOCK_USER_SESSION = new UserSession({
119
+ clientId: "clientId",
120
+ redirectUri: "https://example-app.com/redirect-uri",
121
+ token: "fake-token",
122
+ tokenExpires: TOMORROW,
123
+ refreshToken: "refreshToken",
124
+ refreshTokenExpires: TOMORROW,
125
+ refreshTokenTTL: 1440,
126
+ username: "casey",
127
+ password: "123456",
128
+ portal: "https://myorg.maps.arcgis.com/sharing/rest"
129
+ });
130
+
131
+ const MOCK_USER_REQOPTS = {
132
+ authentication: MOCK_USER_SESSION
133
+ };
134
+
135
+ it("search should use the portal and token from Auth Manager", done => {
136
+ fetchMock.once("*", SearchResponse);
137
+
138
+ const MOCK_USER_REQOPTS_SEARCH = MOCK_USER_REQOPTS as ISearchRequestOptions;
139
+
140
+ MOCK_USER_REQOPTS_SEARCH.searchForm = {
141
+ q: "DC AND typekeywords:hubSiteApplication"
142
+ };
143
+
144
+ searchItems(MOCK_USER_REQOPTS_SEARCH)
145
+ .then(() => {
146
+ expect(fetchMock.called()).toEqual(true);
147
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
148
+ expect(url).toEqual(
149
+ "https://myorg.maps.arcgis.com/sharing/rest/search?f=json&q=DC%20AND%20typekeywords%3AhubSiteApplication&token=fake-token"
150
+ );
151
+ expect(options.method).toBe("GET");
152
+ done();
153
+ })
154
+ .catch(e => {
155
+ fail(e);
156
+ });
157
+ });
158
+ }); // auth requests
159
+ });