delectusnon 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierignore +2 -0
- package/.travis.yml +33 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +32 -0
- package/demos/ago-node-cli/index.js +11 -0
- package/demos/ago-node-cli/lib/item-export-command.js +48 -0
- package/demos/ago-node-cli/lib/item-search-command.js +35 -0
- package/demos/ago-node-cli/package-lock.json +172 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +164 -0
- package/demos/attachments/package-lock.json +182 -0
- package/demos/attachments/package.json +18 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +15 -0
- package/demos/batch-geocoder-node/batch-geocode.js +118 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +116 -0
- package/demos/batch-geocoder-node/package.json +39 -0
- package/demos/express/README.md +10 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +473 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +28 -0
- package/demos/feature-service-browser/README.md +6 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package-lock.json +182 -0
- package/demos/feature-service-browser/package.json +18 -0
- package/demos/geocoder-browser/README.md +10 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +131 -0
- package/demos/geocoder-browser/package-lock.json +182 -0
- package/demos/geocoder-browser/package.json +19 -0
- package/demos/geocoder-browser/post-sign-in.html +25 -0
- package/demos/jsapi-integration/README.md +8 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +79 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/oauth2-browser/README.md +12 -0
- package/demos/oauth2-browser/authenticate.html +32 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +202 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +163 -0
- package/demos/oauth2-browser/package.json +18 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/oauth2-browser-retry/README.md +25 -0
- package/demos/oauth2-browser-retry/authenticate.html +21 -0
- package/demos/oauth2-browser-retry/index.html +116 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -0
- package/demos/vue/.env.example +11 -0
- package/demos/vue/.eslintrc.js +17 -0
- package/demos/vue/.postcssrc.js +5 -0
- package/demos/vue/README.md +17 -0
- package/demos/vue/babel.config.js +3 -0
- package/demos/vue/package-lock.json +11323 -0
- package/demos/vue/package.json +33 -0
- package/demos/vue/public/favicon.ico +0 -0
- package/demos/vue/public/index.html +24 -0
- package/demos/vue/src/assets/logo.svg +29 -0
- package/demos/vue/src/components/App.vue +308 -0
- package/demos/vue/src/components/Authenticate.vue +65 -0
- package/demos/vue/src/components/Loader.vue +230 -0
- package/demos/vue/src/main.js +92 -0
- package/docs/FAQ.md +28 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +223 -0
- package/docs/build-typedoc.js +301 -0
- package/docs/src/_layout.html +82 -0
- package/docs/src/api/_declaration.html +496 -0
- package/docs/src/api/_layout.html +127 -0
- package/docs/src/api/_package.html +13 -0
- package/docs/src/api/index.html +23 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/babel-and-rollup.md +30 -0
- package/docs/src/guides/babel-and-webpack.md +30 -0
- package/docs/src/guides/browser-authentication.md +31 -0
- package/docs/src/guides/browserify.md +9 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/from-a-cdn.md +36 -0
- package/docs/src/guides/index.md +52 -0
- package/docs/src/guides/node.md +70 -0
- package/docs/src/guides/package-overview.md +8 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/typescript-and-webpack.md +9 -0
- package/docs/src/img/icons.png +0 -0
- package/docs/src/img/icons@2x.png +0 -0
- package/docs/src/index.html +12 -0
- package/docs/src/js/api-search.js +112 -0
- package/docs/src/js/nav-toggle.js +41 -0
- package/docs/src/sass/_highlight.scss +96 -0
- package/docs/src/sass/_icons.scss +157 -0
- package/docs/src/sass/style.scss +169 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +100 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +88 -0
- package/packages/arcgis-rest-auth/README.md +64 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +51 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +109 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +873 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +52 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +39 -0
- package/packages/arcgis-rest-auth/src/index.ts +8 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +995 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +130 -0
- package/packages/arcgis-rest-auth/test/utils.ts +14 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-common-types/README.md +61 -0
- package/packages/arcgis-rest-common-types/package.json +38 -0
- package/packages/arcgis-rest-common-types/src/group.ts +54 -0
- package/packages/arcgis-rest-common-types/src/index.ts +467 -0
- package/packages/arcgis-rest-common-types/src/item.ts +45 -0
- package/packages/arcgis-rest-common-types/src/webmap.ts +1232 -0
- package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
- package/packages/arcgis-rest-feature-service/README.md +70 -0
- package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service/package.json +50 -0
- package/packages/arcgis-rest-feature-service/src/add.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
- package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
- package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
- package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
- package/packages/arcgis-rest-feature-service/src/helpers.ts +80 -0
- package/packages/arcgis-rest-feature-service/src/index.ts +12 -0
- package/packages/arcgis-rest-feature-service/src/query.ts +172 -0
- package/packages/arcgis-rest-feature-service/src/queryRelated.ts +91 -0
- package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
- package/packages/arcgis-rest-feature-service/test/attachments.test.ts +203 -0
- package/packages/arcgis-rest-feature-service/test/features.test.ts +252 -0
- package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +279 -0
- package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-service-admin/README.md +66 -0
- package/packages/arcgis-rest-feature-service-admin/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service-admin/package.json +53 -0
- package/packages/arcgis-rest-feature-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-feature-service-admin/src/create.ts +195 -0
- package/packages/arcgis-rest-feature-service-admin/src/index.ts +2 -0
- package/packages/arcgis-rest-feature-service-admin/test/addTo.test.ts +310 -0
- package/packages/arcgis-rest-feature-service-admin/test/create.test.ts +412 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/move.ts +14 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/service.ts +72 -0
- package/packages/arcgis-rest-feature-service-admin/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoder/README.md +79 -0
- package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoder/package.json +52 -0
- package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
- package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
- package/packages/arcgis-rest-geocoder/src/helpers.ts +79 -0
- package/packages/arcgis-rest-geocoder/src/index.ts +8 -0
- package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
- package/packages/arcgis-rest-geocoder/test/bulk.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/geocode.test.ts +121 -0
- package/packages/arcgis-rest-geocoder/test/helpers.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +591 -0
- package/packages/arcgis-rest-geocoder/test/reverse.test.ts +126 -0
- package/packages/arcgis-rest-geocoder/test/suggest.test.ts +77 -0
- package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
- package/packages/arcgis-rest-groups/README.md +64 -0
- package/packages/arcgis-rest-groups/package-lock.json +11 -0
- package/packages/arcgis-rest-groups/package.json +52 -0
- package/packages/arcgis-rest-groups/src/create.ts +34 -0
- package/packages/arcgis-rest-groups/src/get.ts +95 -0
- package/packages/arcgis-rest-groups/src/helpers.ts +26 -0
- package/packages/arcgis-rest-groups/src/index.ts +11 -0
- package/packages/arcgis-rest-groups/src/notification.ts +77 -0
- package/packages/arcgis-rest-groups/src/protect.ts +40 -0
- package/packages/arcgis-rest-groups/src/remove.ts +23 -0
- package/packages/arcgis-rest-groups/src/search.ts +64 -0
- package/packages/arcgis-rest-groups/src/update.ts +36 -0
- package/packages/arcgis-rest-groups/test/crud.test.ts +104 -0
- package/packages/arcgis-rest-groups/test/get.test.ts +101 -0
- package/packages/arcgis-rest-groups/test/mocks/responses.ts +141 -0
- package/packages/arcgis-rest-groups/test/notification.test.ts +102 -0
- package/packages/arcgis-rest-groups/test/protect.test.ts +64 -0
- package/packages/arcgis-rest-groups/test/search.test.ts +85 -0
- package/packages/arcgis-rest-groups/tsconfig.json +6 -0
- package/packages/arcgis-rest-items/README.md +66 -0
- package/packages/arcgis-rest-items/package-lock.json +11 -0
- package/packages/arcgis-rest-items/package.json +52 -0
- package/packages/arcgis-rest-items/src/add.ts +103 -0
- package/packages/arcgis-rest-items/src/create.ts +110 -0
- package/packages/arcgis-rest-items/src/get.ts +79 -0
- package/packages/arcgis-rest-items/src/helpers.ts +147 -0
- package/packages/arcgis-rest-items/src/index.ts +11 -0
- package/packages/arcgis-rest-items/src/protect.ts +38 -0
- package/packages/arcgis-rest-items/src/remove.ts +58 -0
- package/packages/arcgis-rest-items/src/search.ts +78 -0
- package/packages/arcgis-rest-items/src/update.ts +134 -0
- package/packages/arcgis-rest-items/test/add.test.ts +256 -0
- package/packages/arcgis-rest-items/test/create.test.ts +371 -0
- package/packages/arcgis-rest-items/test/get.test.ts +181 -0
- package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
- package/packages/arcgis-rest-items/test/mocks/item.ts +33 -0
- package/packages/arcgis-rest-items/test/mocks/resources.ts +31 -0
- package/packages/arcgis-rest-items/test/mocks/search.ts +63 -0
- package/packages/arcgis-rest-items/test/protect.test.ts +122 -0
- package/packages/arcgis-rest-items/test/remove.test.ts +161 -0
- package/packages/arcgis-rest-items/test/search.test.ts +159 -0
- package/packages/arcgis-rest-items/test/update.test.ts +450 -0
- package/packages/arcgis-rest-items/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +65 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +42 -0
- package/packages/arcgis-rest-request/src/index.ts +13 -0
- package/packages/arcgis-rest-request/src/request.ts +293 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
- package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/check-for-errors.ts +65 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +34 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
- package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
- package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +68 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
- package/packages/arcgis-rest-request/test/mocks/portal.ts +112 -0
- package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
- package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
- package/packages/arcgis-rest-request/test/request.test.ts +299 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +170 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
- package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-request/test/utils/portal.test.ts +97 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -0
- package/packages/arcgis-rest-request/tsconfig.json +6 -0
- package/packages/arcgis-rest-sharing/README.md +67 -0
- package/packages/arcgis-rest-sharing/package-lock.json +11 -0
- package/packages/arcgis-rest-sharing/package.json +57 -0
- package/packages/arcgis-rest-sharing/src/access.ts +85 -0
- package/packages/arcgis-rest-sharing/src/group-sharing.ts +211 -0
- package/packages/arcgis-rest-sharing/src/helpers.ts +82 -0
- package/packages/arcgis-rest-sharing/src/index.ts +5 -0
- package/packages/arcgis-rest-sharing/test/access.test.ts +154 -0
- package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +566 -0
- package/packages/arcgis-rest-sharing/test/helpers.test.ts +55 -0
- package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +18 -0
- package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
- package/packages/arcgis-rest-users/README.md +71 -0
- package/packages/arcgis-rest-users/package-lock.json +11 -0
- package/packages/arcgis-rest-users/package.json +51 -0
- package/packages/arcgis-rest-users/src/get.ts +69 -0
- package/packages/arcgis-rest-users/src/index.ts +6 -0
- package/packages/arcgis-rest-users/src/invitation.ts +166 -0
- package/packages/arcgis-rest-users/src/notification.ts +73 -0
- package/packages/arcgis-rest-users/test/get.test.ts +99 -0
- package/packages/arcgis-rest-users/test/invitation.test.ts +169 -0
- package/packages/arcgis-rest-users/test/mocks/invitation.ts +70 -0
- package/packages/arcgis-rest-users/test/mocks/notification.ts +34 -0
- package/packages/arcgis-rest-users/test/mocks/user.ts +173 -0
- package/packages/arcgis-rest-users/test/notification.test.ts +83 -0
- package/packages/arcgis-rest-users/tsconfig.json +6 -0
- package/support/changelog.js +394 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/publish.sh +43 -0
- package/support/test-helpers.js +8 -0
- package/tsconfig.json +69 -0
- package/tslint.json +15 -0
- package/umd-base-profile.js +82 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,64 @@
|
|
1
|
+
/* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import {
|
5
|
+
request,
|
6
|
+
IRequestOptions,
|
7
|
+
getPortalUrl
|
8
|
+
} from "@esri/arcgis-rest-request";
|
9
|
+
|
10
|
+
import { IPagingParams, IGroup } from "@esri/arcgis-rest-common-types";
|
11
|
+
|
12
|
+
export interface IGroupSearchRequest extends IPagingParams {
|
13
|
+
q: string;
|
14
|
+
sortField?: string;
|
15
|
+
sortOrder?: string;
|
16
|
+
[key: string]: any;
|
17
|
+
}
|
18
|
+
|
19
|
+
export interface IGroupSearchResult {
|
20
|
+
/**
|
21
|
+
* Matches the REST APIs form param
|
22
|
+
*/
|
23
|
+
query: string;
|
24
|
+
total: number;
|
25
|
+
start: number;
|
26
|
+
num: number;
|
27
|
+
nextStart: number;
|
28
|
+
results: IGroup[];
|
29
|
+
}
|
30
|
+
|
31
|
+
/**
|
32
|
+
* Search for groups via the portal api
|
33
|
+
*
|
34
|
+
* ```js
|
35
|
+
* import { searchGroups } from '@esri/arcgis-rest-groups';
|
36
|
+
*
|
37
|
+
* searchgroups({q:'water'})
|
38
|
+
* .then((results) => {
|
39
|
+
* console.log(response.results.total); // 355
|
40
|
+
* })
|
41
|
+
* ```
|
42
|
+
*
|
43
|
+
* @param searchForm - Search request
|
44
|
+
* @param requestOptions - Options for the request
|
45
|
+
* @returns A Promise that will resolve with the data from the response.
|
46
|
+
*/
|
47
|
+
export function searchGroups(
|
48
|
+
searchForm: IGroupSearchRequest,
|
49
|
+
requestOptions?: IRequestOptions
|
50
|
+
): Promise<IGroupSearchResult> {
|
51
|
+
// construct the search url
|
52
|
+
const url = `${getPortalUrl(requestOptions)}/community/groups`;
|
53
|
+
|
54
|
+
// default to a GET
|
55
|
+
const options: IRequestOptions = {
|
56
|
+
...{ httpMethod: "GET" },
|
57
|
+
...requestOptions
|
58
|
+
};
|
59
|
+
|
60
|
+
options.params = { ...searchForm };
|
61
|
+
|
62
|
+
// send the request
|
63
|
+
return request(url, options);
|
64
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
/* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import {
|
5
|
+
request,
|
6
|
+
IRequestOptions,
|
7
|
+
getPortalUrl
|
8
|
+
} from "@esri/arcgis-rest-request";
|
9
|
+
|
10
|
+
import { IItemUpdate } from "@esri/arcgis-rest-common-types";
|
11
|
+
|
12
|
+
import { serializeGroup } from "./helpers";
|
13
|
+
|
14
|
+
export interface IGroupUpdateRequestOptions extends IRequestOptions {
|
15
|
+
group: IItemUpdate;
|
16
|
+
}
|
17
|
+
|
18
|
+
/**
|
19
|
+
* Update the properties of a group - title, tags etc.
|
20
|
+
* @param requestOptions - Options for the request, including the group
|
21
|
+
* @returns A Promise that will resolve with the success/failure status of the request
|
22
|
+
*/
|
23
|
+
export function updateGroup(
|
24
|
+
requestOptions: IGroupUpdateRequestOptions
|
25
|
+
): Promise<any> {
|
26
|
+
const url = `${getPortalUrl(requestOptions)}/community/groups/${
|
27
|
+
requestOptions.group.id
|
28
|
+
}/update`;
|
29
|
+
|
30
|
+
const options: IGroupUpdateRequestOptions = {
|
31
|
+
...requestOptions
|
32
|
+
};
|
33
|
+
// serialize the group into something Portal will accept
|
34
|
+
options.params = serializeGroup(requestOptions.group);
|
35
|
+
return request(url, options);
|
36
|
+
}
|
@@ -0,0 +1,104 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { createGroup } from "../src/create";
|
5
|
+
import { updateGroup } from "../src/update";
|
6
|
+
import { removeGroup } from "../src/remove";
|
7
|
+
|
8
|
+
import { GroupEditResponse } from "./mocks/responses";
|
9
|
+
|
10
|
+
import { encodeParam } from "@esri/arcgis-rest-request";
|
11
|
+
import * as fetchMock from "fetch-mock";
|
12
|
+
|
13
|
+
describe("groups", () => {
|
14
|
+
afterEach(fetchMock.restore);
|
15
|
+
|
16
|
+
describe("authenticted methods", () => {
|
17
|
+
const MOCK_AUTH = {
|
18
|
+
getToken() {
|
19
|
+
return Promise.resolve("fake-token");
|
20
|
+
},
|
21
|
+
portal: "https://myorg.maps.arcgis.com/sharing/rest"
|
22
|
+
};
|
23
|
+
const MOCK_REQOPTS = {
|
24
|
+
authentication: MOCK_AUTH
|
25
|
+
};
|
26
|
+
|
27
|
+
it("should create a group", done => {
|
28
|
+
fetchMock.once("*", GroupEditResponse);
|
29
|
+
const fakeGroup = {
|
30
|
+
title: "fake group",
|
31
|
+
owner: "fakeUser",
|
32
|
+
tags: ["foo", "bar"],
|
33
|
+
description: "my fake group"
|
34
|
+
};
|
35
|
+
createGroup({ group: fakeGroup, ...MOCK_REQOPTS })
|
36
|
+
.then(response => {
|
37
|
+
expect(fetchMock.called()).toEqual(true);
|
38
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
39
|
+
expect(url).toEqual(
|
40
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/createGroup"
|
41
|
+
);
|
42
|
+
expect(options.method).toBe("POST");
|
43
|
+
expect(options.body).toContain(encodeParam("f", "json"));
|
44
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
45
|
+
expect(options.body).toContain(encodeParam("owner", "fakeUser"));
|
46
|
+
// ensure the array props are serialized into strings
|
47
|
+
expect(options.body).toContain(encodeParam("tags", "foo, bar"));
|
48
|
+
done();
|
49
|
+
})
|
50
|
+
.catch(e => {
|
51
|
+
fail(e);
|
52
|
+
});
|
53
|
+
});
|
54
|
+
|
55
|
+
it("should update a group", done => {
|
56
|
+
fetchMock.once("*", GroupEditResponse);
|
57
|
+
const fakeGroup = {
|
58
|
+
id: "5bc",
|
59
|
+
title: "fake group",
|
60
|
+
owner: "fakeUser",
|
61
|
+
tags: ["foo", "bar"],
|
62
|
+
description: "my fake group"
|
63
|
+
};
|
64
|
+
updateGroup({ group: fakeGroup, ...MOCK_REQOPTS })
|
65
|
+
.then(response => {
|
66
|
+
expect(fetchMock.called()).toEqual(true);
|
67
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
68
|
+
expect(url).toEqual(
|
69
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups/5bc/update"
|
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
|
+
expect(options.body).toContain(encodeParam("owner", "fakeUser"));
|
75
|
+
// ensure the array props are serialized into strings
|
76
|
+
expect(options.body).toContain(encodeParam("tags", "foo, bar"));
|
77
|
+
done();
|
78
|
+
})
|
79
|
+
.catch(e => {
|
80
|
+
fail(e);
|
81
|
+
});
|
82
|
+
});
|
83
|
+
|
84
|
+
it("should remove a group", done => {
|
85
|
+
fetchMock.once("*", GroupEditResponse);
|
86
|
+
|
87
|
+
removeGroup({ id: "5bc", ...MOCK_REQOPTS })
|
88
|
+
.then(response => {
|
89
|
+
expect(fetchMock.called()).toEqual(true);
|
90
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
91
|
+
expect(url).toEqual(
|
92
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups/5bc/delete"
|
93
|
+
);
|
94
|
+
expect(options.method).toBe("POST");
|
95
|
+
expect(options.body).toContain(encodeParam("f", "json"));
|
96
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
97
|
+
done();
|
98
|
+
})
|
99
|
+
.catch(e => {
|
100
|
+
fail(e);
|
101
|
+
});
|
102
|
+
});
|
103
|
+
});
|
104
|
+
});
|
@@ -0,0 +1,101 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { getGroup, getGroupContent, getGroupUsers } from "../src/get";
|
5
|
+
|
6
|
+
import {
|
7
|
+
GroupResponse,
|
8
|
+
GroupContentResponse,
|
9
|
+
GroupUsersResponse
|
10
|
+
} from "./mocks/responses";
|
11
|
+
|
12
|
+
import * as fetchMock from "fetch-mock";
|
13
|
+
|
14
|
+
describe("groups", () => {
|
15
|
+
afterEach(fetchMock.restore);
|
16
|
+
|
17
|
+
describe("getGroup", () => {
|
18
|
+
it("should return a group", done => {
|
19
|
+
fetchMock.once("*", GroupResponse);
|
20
|
+
getGroup("3ef")
|
21
|
+
.then(response => {
|
22
|
+
expect(fetchMock.called()).toEqual(true);
|
23
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
24
|
+
expect(url).toEqual(
|
25
|
+
"https://www.arcgis.com/sharing/rest/community/groups/3ef?f=json"
|
26
|
+
);
|
27
|
+
expect(options.method).toBe("GET");
|
28
|
+
done();
|
29
|
+
})
|
30
|
+
.catch(e => {
|
31
|
+
fail(e);
|
32
|
+
});
|
33
|
+
});
|
34
|
+
});
|
35
|
+
|
36
|
+
describe("getGroupContent", () => {
|
37
|
+
it("should return group content", done => {
|
38
|
+
fetchMock.once("*", GroupContentResponse);
|
39
|
+
getGroupContent("3ef")
|
40
|
+
.then(response => {
|
41
|
+
expect(fetchMock.called()).toEqual(true);
|
42
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
43
|
+
expect(url).toEqual(
|
44
|
+
"https://www.arcgis.com/sharing/rest/content/groups/3ef?f=json&start=1&num=100"
|
45
|
+
);
|
46
|
+
expect(options.method).toBe("GET");
|
47
|
+
done();
|
48
|
+
})
|
49
|
+
.catch(e => {
|
50
|
+
fail(e);
|
51
|
+
});
|
52
|
+
});
|
53
|
+
|
54
|
+
it("should return group content, paged", done => {
|
55
|
+
fetchMock.once("*", GroupContentResponse);
|
56
|
+
getGroupContent("3ef", { paging: { start: 4, num: 7 } })
|
57
|
+
.then(response => {
|
58
|
+
expect(fetchMock.called()).toEqual(true);
|
59
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
60
|
+
expect(url).toEqual(
|
61
|
+
"https://www.arcgis.com/sharing/rest/content/groups/3ef?f=json&start=4&num=7"
|
62
|
+
);
|
63
|
+
expect(options.method).toBe("GET");
|
64
|
+
done();
|
65
|
+
})
|
66
|
+
.catch(e => {
|
67
|
+
fail(e);
|
68
|
+
});
|
69
|
+
});
|
70
|
+
});
|
71
|
+
|
72
|
+
describe("authenticted methods", () => {
|
73
|
+
const MOCK_AUTH = {
|
74
|
+
getToken() {
|
75
|
+
return Promise.resolve("fake-token");
|
76
|
+
},
|
77
|
+
portal: "https://myorg.maps.arcgis.com/sharing/rest"
|
78
|
+
};
|
79
|
+
const MOCK_REQOPTS = {
|
80
|
+
authentication: MOCK_AUTH
|
81
|
+
};
|
82
|
+
|
83
|
+
it("should return group users", done => {
|
84
|
+
fetchMock.once("*", GroupUsersResponse);
|
85
|
+
|
86
|
+
getGroupUsers("5bc", MOCK_REQOPTS)
|
87
|
+
.then(response => {
|
88
|
+
expect(fetchMock.called()).toEqual(true);
|
89
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
90
|
+
expect(url).toEqual(
|
91
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups/5bc/users?f=json&token=fake-token"
|
92
|
+
);
|
93
|
+
expect(options.method).toBe("GET");
|
94
|
+
done();
|
95
|
+
})
|
96
|
+
.catch(e => {
|
97
|
+
fail(e);
|
98
|
+
});
|
99
|
+
});
|
100
|
+
});
|
101
|
+
});
|
@@ -0,0 +1,141 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IGroupSearchResult } from "../../src/search";
|
5
|
+
import { IGroupContentResult, IGroupUsersResult } from "../../src/get";
|
6
|
+
|
7
|
+
import { IGroup } from "@esri/arcgis-rest-common-types";
|
8
|
+
|
9
|
+
export const GroupSearchResponse: IGroupSearchResult = {
|
10
|
+
query: "* AND owner:dcadmin",
|
11
|
+
total: 358,
|
12
|
+
start: 1,
|
13
|
+
num: 1,
|
14
|
+
nextStart: 2,
|
15
|
+
results: [
|
16
|
+
{
|
17
|
+
id: "ef45564655144f15b5903d05a24493d9",
|
18
|
+
title: "0 alex test",
|
19
|
+
isInvitationOnly: false,
|
20
|
+
owner: "dcadmin",
|
21
|
+
description: null,
|
22
|
+
snippet: "alex test",
|
23
|
+
tags: ["7320", "test", "alex"],
|
24
|
+
phone: null,
|
25
|
+
sortField: "title",
|
26
|
+
sortOrder: "asc",
|
27
|
+
isViewOnly: false,
|
28
|
+
isFav: false,
|
29
|
+
isOpenData: true,
|
30
|
+
thumbnail: null,
|
31
|
+
created: 1427987785000,
|
32
|
+
modified: 1490731120000,
|
33
|
+
provider: null,
|
34
|
+
providerGroupName: null,
|
35
|
+
isReadOnly: false,
|
36
|
+
access: "public",
|
37
|
+
capabilities: [],
|
38
|
+
protected: false,
|
39
|
+
autoJoin: false,
|
40
|
+
notificationsEnabled: false
|
41
|
+
}
|
42
|
+
]
|
43
|
+
};
|
44
|
+
|
45
|
+
export const GroupEditResponse: any = {
|
46
|
+
success: true,
|
47
|
+
id: "3efakegroupid"
|
48
|
+
};
|
49
|
+
|
50
|
+
export const GroupUsersResponse: IGroupUsersResult = {
|
51
|
+
owner: "vader",
|
52
|
+
admins: ["vader", "tarkin"],
|
53
|
+
users: ["luke", "leia"]
|
54
|
+
};
|
55
|
+
|
56
|
+
export const GroupResponse: IGroup = {
|
57
|
+
id: "ef45564655144f15b5903d05a24493d9",
|
58
|
+
title: "0 alex test",
|
59
|
+
isInvitationOnly: false,
|
60
|
+
owner: "dcadmin",
|
61
|
+
description: "",
|
62
|
+
snippet: "alex test",
|
63
|
+
tags: ["7320", "test", "alex"],
|
64
|
+
phone: "",
|
65
|
+
sortField: "title",
|
66
|
+
sortOrder: "asc",
|
67
|
+
isViewOnly: false,
|
68
|
+
isFav: false,
|
69
|
+
isOpenData: true,
|
70
|
+
thumbnail: null,
|
71
|
+
created: 1427987785000,
|
72
|
+
modified: 1490731120000,
|
73
|
+
provider: null,
|
74
|
+
providerGroupName: null,
|
75
|
+
isReadOnly: false,
|
76
|
+
access: "public",
|
77
|
+
capabilities: [],
|
78
|
+
userMembership: {
|
79
|
+
username: "dcadmin",
|
80
|
+
memberType: "owner",
|
81
|
+
applications: 0
|
82
|
+
},
|
83
|
+
collaborationInfo: {},
|
84
|
+
protected: false,
|
85
|
+
autoJoin: false,
|
86
|
+
notificationsEnabled: false
|
87
|
+
};
|
88
|
+
|
89
|
+
export const GroupContentResponse: IGroupContentResult = {
|
90
|
+
total: 36,
|
91
|
+
start: 1,
|
92
|
+
num: 1,
|
93
|
+
nextStart: 2,
|
94
|
+
items: [
|
95
|
+
{
|
96
|
+
id: "59dd250ab1a54660b11f4f3434a3e481",
|
97
|
+
owner: "dcadmin",
|
98
|
+
created: 1410610860000,
|
99
|
+
modified: 1498835611000,
|
100
|
+
guid: null,
|
101
|
+
name: "LivingAtlasThemes.pdf",
|
102
|
+
title: "LivingAtlasThemes",
|
103
|
+
type: "PDF",
|
104
|
+
typeKeywords: ["Data", "Document", "PDF"],
|
105
|
+
description: null,
|
106
|
+
tags: ["doc"],
|
107
|
+
snippet: null,
|
108
|
+
thumbnail: "thumbnail/ago_downloaded.png",
|
109
|
+
documentation: null,
|
110
|
+
extent: [],
|
111
|
+
categories: [],
|
112
|
+
spatialReference: null,
|
113
|
+
accessInformation: null,
|
114
|
+
licenseInfo: "CC0",
|
115
|
+
culture: "en-us",
|
116
|
+
properties: null,
|
117
|
+
url: null,
|
118
|
+
proxyFilter: null,
|
119
|
+
access: "public",
|
120
|
+
size: 75476,
|
121
|
+
appCategories: [],
|
122
|
+
industries: [],
|
123
|
+
languages: [],
|
124
|
+
largeThumbnail: null,
|
125
|
+
banner: null,
|
126
|
+
screenshots: [],
|
127
|
+
listed: false,
|
128
|
+
numComments: 0,
|
129
|
+
numRatings: 0,
|
130
|
+
avgRating: 0,
|
131
|
+
numViews: 1301,
|
132
|
+
groupCategories: [],
|
133
|
+
scoreCompleteness: 50,
|
134
|
+
protected: false
|
135
|
+
}
|
136
|
+
]
|
137
|
+
};
|
138
|
+
|
139
|
+
export const GroupNotificationResponse: any = {
|
140
|
+
success: true
|
141
|
+
};
|
@@ -0,0 +1,102 @@
|
|
1
|
+
import { encodeParam } from "@esri/arcgis-rest-request";
|
2
|
+
import * as fetchMock from "fetch-mock";
|
3
|
+
|
4
|
+
import { createGroupNotification } from "../src/notification";
|
5
|
+
|
6
|
+
import { GroupNotificationResponse } from "./mocks/responses";
|
7
|
+
|
8
|
+
describe("groups", () => {
|
9
|
+
afterEach(fetchMock.restore);
|
10
|
+
|
11
|
+
describe("createGroupNotification", () => {
|
12
|
+
const MOCK_AUTH = {
|
13
|
+
getToken() {
|
14
|
+
return Promise.resolve("fake-token");
|
15
|
+
},
|
16
|
+
portal: "https://myorg.maps.arcgis.com/sharing/rest"
|
17
|
+
};
|
18
|
+
const MOCK_REQOPTS = {
|
19
|
+
authentication: MOCK_AUTH
|
20
|
+
};
|
21
|
+
|
22
|
+
it("should create an email notification", done => {
|
23
|
+
fetchMock.once("*", GroupNotificationResponse);
|
24
|
+
|
25
|
+
const opts = {
|
26
|
+
id: "3ef",
|
27
|
+
subject: "this is the subject",
|
28
|
+
message: "this is the message",
|
29
|
+
...MOCK_REQOPTS
|
30
|
+
};
|
31
|
+
|
32
|
+
createGroupNotification(opts)
|
33
|
+
.then(response => {
|
34
|
+
expect(fetchMock.called()).toEqual(true);
|
35
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
36
|
+
expect(url).toEqual(
|
37
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups/3ef/createNotification"
|
38
|
+
);
|
39
|
+
expect(options.method).toBe("POST");
|
40
|
+
expect(options.body).toContain(encodeParam("f", "json"));
|
41
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
42
|
+
expect(options.body).toContain(
|
43
|
+
encodeParam("subject", "this is the subject")
|
44
|
+
);
|
45
|
+
expect(options.body).toContain(
|
46
|
+
encodeParam("message", "this is the message")
|
47
|
+
);
|
48
|
+
expect(options.body).toContain(
|
49
|
+
encodeParam("notificationChannelType", "email")
|
50
|
+
);
|
51
|
+
expect(options.body).toContain(encodeParam("notifyAll", true));
|
52
|
+
expect(response.success).toEqual(true);
|
53
|
+
done();
|
54
|
+
})
|
55
|
+
.catch(e => {
|
56
|
+
fail(e);
|
57
|
+
});
|
58
|
+
});
|
59
|
+
|
60
|
+
it("should create an email notification for specific users", done => {
|
61
|
+
fetchMock.once("*", GroupNotificationResponse);
|
62
|
+
|
63
|
+
const opts = {
|
64
|
+
id: "3ef",
|
65
|
+
subject: "this is the subject",
|
66
|
+
message: "this is the message",
|
67
|
+
users: ["casey", "atthebat"],
|
68
|
+
...MOCK_REQOPTS
|
69
|
+
};
|
70
|
+
|
71
|
+
createGroupNotification(opts)
|
72
|
+
.then(response => {
|
73
|
+
expect(fetchMock.called()).toEqual(true);
|
74
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
75
|
+
expect(url).toEqual(
|
76
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups/3ef/createNotification"
|
77
|
+
);
|
78
|
+
expect(options.method).toBe("POST");
|
79
|
+
expect(options.body).toContain(encodeParam("f", "json"));
|
80
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
81
|
+
expect(options.body).toContain(
|
82
|
+
encodeParam("subject", "this is the subject")
|
83
|
+
);
|
84
|
+
expect(options.body).toContain(
|
85
|
+
encodeParam("message", "this is the message")
|
86
|
+
);
|
87
|
+
expect(options.body).toContain(
|
88
|
+
encodeParam("notificationChannelType", "email")
|
89
|
+
);
|
90
|
+
expect(options.body).toContain(encodeParam("notifyAll", false));
|
91
|
+
expect(options.body).toContain(
|
92
|
+
encodeParam("users", "casey,atthebat")
|
93
|
+
);
|
94
|
+
expect(response.success).toEqual(true);
|
95
|
+
done();
|
96
|
+
})
|
97
|
+
.catch(e => {
|
98
|
+
fail(e);
|
99
|
+
});
|
100
|
+
});
|
101
|
+
});
|
102
|
+
});
|
@@ -0,0 +1,64 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { protectGroup, unprotectGroup } from "../src/protect";
|
5
|
+
|
6
|
+
import { GroupEditResponse } from "./mocks/responses";
|
7
|
+
|
8
|
+
import { encodeParam } from "@esri/arcgis-rest-request";
|
9
|
+
import * as fetchMock from "fetch-mock";
|
10
|
+
|
11
|
+
describe("groups", () => {
|
12
|
+
afterEach(fetchMock.restore);
|
13
|
+
|
14
|
+
describe("authenticted methods", () => {
|
15
|
+
const MOCK_AUTH = {
|
16
|
+
getToken() {
|
17
|
+
return Promise.resolve("fake-token");
|
18
|
+
},
|
19
|
+
portal: "https://myorg.maps.arcgis.com/sharing/rest"
|
20
|
+
};
|
21
|
+
const MOCK_REQOPTS = {
|
22
|
+
authentication: MOCK_AUTH
|
23
|
+
};
|
24
|
+
|
25
|
+
it("should protect a group", done => {
|
26
|
+
fetchMock.once("*", GroupEditResponse);
|
27
|
+
|
28
|
+
protectGroup({ id: "5bc", ...MOCK_REQOPTS })
|
29
|
+
.then(response => {
|
30
|
+
expect(fetchMock.called()).toEqual(true);
|
31
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
32
|
+
expect(url).toEqual(
|
33
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups/5bc/protect"
|
34
|
+
);
|
35
|
+
expect(options.method).toBe("POST");
|
36
|
+
expect(options.body).toContain(encodeParam("f", "json"));
|
37
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
38
|
+
done();
|
39
|
+
})
|
40
|
+
.catch(e => {
|
41
|
+
fail(e);
|
42
|
+
});
|
43
|
+
});
|
44
|
+
it("should unprotect a group", done => {
|
45
|
+
fetchMock.once("*", GroupEditResponse);
|
46
|
+
|
47
|
+
unprotectGroup({ id: "5bc", ...MOCK_REQOPTS })
|
48
|
+
.then(response => {
|
49
|
+
expect(fetchMock.called()).toEqual(true);
|
50
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
51
|
+
expect(url).toEqual(
|
52
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups/5bc/unprotect"
|
53
|
+
);
|
54
|
+
expect(options.method).toBe("POST");
|
55
|
+
expect(options.body).toContain(encodeParam("f", "json"));
|
56
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
57
|
+
done();
|
58
|
+
})
|
59
|
+
.catch(e => {
|
60
|
+
fail(e);
|
61
|
+
});
|
62
|
+
});
|
63
|
+
});
|
64
|
+
});
|
@@ -0,0 +1,85 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { searchGroups } from "../src/search";
|
5
|
+
|
6
|
+
import { GroupSearchResponse } from "./mocks/responses";
|
7
|
+
|
8
|
+
import * as fetchMock from "fetch-mock";
|
9
|
+
|
10
|
+
describe("groups", () => {
|
11
|
+
afterEach(fetchMock.restore);
|
12
|
+
|
13
|
+
describe("searchGroups", () => {
|
14
|
+
it("should make a simple, unauthenticated group search request", done => {
|
15
|
+
fetchMock.once("*", GroupSearchResponse);
|
16
|
+
|
17
|
+
searchGroups({ q: "water" })
|
18
|
+
.then(response => {
|
19
|
+
expect(fetchMock.called()).toEqual(true);
|
20
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
21
|
+
expect(url).toEqual(
|
22
|
+
"https://www.arcgis.com/sharing/rest/community/groups?f=json&q=water"
|
23
|
+
);
|
24
|
+
expect(options.method).toBe("GET");
|
25
|
+
done();
|
26
|
+
})
|
27
|
+
.catch(e => {
|
28
|
+
fail(e);
|
29
|
+
});
|
30
|
+
});
|
31
|
+
|
32
|
+
it("should take num, start, sortField, sortOrder and construct the request", done => {
|
33
|
+
fetchMock.once("*", GroupSearchResponse);
|
34
|
+
searchGroups({
|
35
|
+
q: "water",
|
36
|
+
start: 4,
|
37
|
+
num: 7,
|
38
|
+
sortField: "owner",
|
39
|
+
sortOrder: "desc"
|
40
|
+
})
|
41
|
+
.then(response => {
|
42
|
+
expect(fetchMock.called()).toEqual(true);
|
43
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
44
|
+
expect(url).toEqual(
|
45
|
+
"https://www.arcgis.com/sharing/rest/community/groups?f=json&q=water&start=4&num=7&sortField=owner&sortOrder=desc"
|
46
|
+
);
|
47
|
+
expect(options.method).toBe("GET");
|
48
|
+
done();
|
49
|
+
})
|
50
|
+
.catch(e => {
|
51
|
+
fail(e);
|
52
|
+
});
|
53
|
+
});
|
54
|
+
});
|
55
|
+
|
56
|
+
describe("authenticted methods", () => {
|
57
|
+
const MOCK_AUTH = {
|
58
|
+
getToken() {
|
59
|
+
return Promise.resolve("fake-token");
|
60
|
+
},
|
61
|
+
portal: "https://myorg.maps.arcgis.com/sharing/rest"
|
62
|
+
};
|
63
|
+
const MOCK_REQOPTS = {
|
64
|
+
authentication: MOCK_AUTH
|
65
|
+
};
|
66
|
+
|
67
|
+
it("should make a simple, authenticated group search request", done => {
|
68
|
+
fetchMock.once("*", GroupSearchResponse);
|
69
|
+
|
70
|
+
searchGroups({ q: "water" }, MOCK_REQOPTS)
|
71
|
+
.then(response => {
|
72
|
+
expect(fetchMock.called()).toEqual(true);
|
73
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
74
|
+
expect(url).toEqual(
|
75
|
+
"https://myorg.maps.arcgis.com/sharing/rest/community/groups?f=json&q=water&token=fake-token"
|
76
|
+
);
|
77
|
+
expect(options.method).toBe("GET");
|
78
|
+
done();
|
79
|
+
})
|
80
|
+
.catch(e => {
|
81
|
+
fail(e);
|
82
|
+
});
|
83
|
+
});
|
84
|
+
});
|
85
|
+
});
|