2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2020-09-22 17:10:38 +05:30
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-11-21 21:12:28 +05:30
|
|
|
import {encodeQueryParams, encodeBody} from "./common";
|
2021-11-21 21:28:16 +05:30
|
|
|
import {HomeServerRequest} from "./HomeServerRequest";
|
2021-11-23 18:09:33 +05:30
|
|
|
import type {Reconnector} from "./Reconnector";
|
|
|
|
import type {IEncodedBody} from "./common";
|
|
|
|
import type {IRequestOptions, RequestFunction} from "../../platform/types/Platform";
|
|
|
|
import type {LogItem} from "../../logging/LogItem";
|
|
|
|
|
|
|
|
type RequestMethod = "POST" | "GET" | "PUT";
|
2020-11-11 15:15:23 +05:30
|
|
|
|
2021-10-26 22:17:46 +05:30
|
|
|
const CS_R0_PREFIX = "/_matrix/client/r0";
|
2021-10-27 18:38:53 +05:30
|
|
|
const DEHYDRATION_PREFIX = "/_matrix/client/unstable/org.matrix.msc2697.v2";
|
2021-10-26 22:17:46 +05:30
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
export class HomeServerApi {
|
2021-11-23 18:09:33 +05:30
|
|
|
private readonly _homeserver: string;
|
|
|
|
private readonly _accessToken: string;
|
|
|
|
private readonly _requestFn: RequestFunction;
|
|
|
|
private readonly _reconnector: Reconnector;
|
|
|
|
|
|
|
|
constructor({homeserver, accessToken, request, reconnector}: {homeserver: string, accessToken: string, request: RequestFunction, reconnector: Reconnector}) {
|
2019-03-09 00:33:47 +05:30
|
|
|
// store these both in a closure somehow so it's harder to get at in case of XSS?
|
|
|
|
// one could change the homeserver as well so the token gets sent there, so both must be protected from read/write
|
2021-08-23 22:56:39 +05:30
|
|
|
this._homeserver = homeserver;
|
2019-06-27 02:01:36 +05:30
|
|
|
this._accessToken = accessToken;
|
2019-12-23 18:58:27 +05:30
|
|
|
this._requestFn = request;
|
2020-04-05 18:41:15 +05:30
|
|
|
this._reconnector = reconnector;
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2021-11-23 18:09:33 +05:30
|
|
|
_url(csPath: string, prefix: string = CS_R0_PREFIX): string {
|
2021-10-26 22:17:46 +05:30
|
|
|
return this._homeserver + prefix + csPath;
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2021-11-23 18:09:33 +05:30
|
|
|
_baseRequest(method: RequestMethod, url: string, queryParams?: object, body?: object, options?: IRequestOptions, accessToken?: string): HomeServerRequest {
|
2020-08-20 19:10:43 +05:30
|
|
|
const queryString = encodeQueryParams(queryParams);
|
2020-03-31 03:26:03 +05:30
|
|
|
url = `${url}?${queryString}`;
|
2021-11-23 18:09:33 +05:30
|
|
|
let log: LogItem | undefined;
|
2021-02-12 23:05:33 +05:30
|
|
|
if (options?.log) {
|
|
|
|
const parent = options?.log;
|
|
|
|
log = parent.child({
|
2021-02-17 23:15:12 +05:30
|
|
|
t: "network",
|
2021-02-12 23:05:33 +05:30
|
|
|
url,
|
|
|
|
method,
|
|
|
|
}, parent.level.Info);
|
|
|
|
}
|
2021-11-23 18:09:33 +05:30
|
|
|
let encodedBody: IEncodedBody["body"];
|
|
|
|
const headers: Map<string, string | number> = new Map();
|
2020-09-18 21:43:20 +05:30
|
|
|
if (accessToken) {
|
|
|
|
headers.set("Authorization", `Bearer ${accessToken}`);
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2020-04-23 00:16:47 +05:30
|
|
|
headers.set("Accept", "application/json");
|
2019-06-27 02:01:36 +05:30
|
|
|
if (body) {
|
2020-11-11 15:15:23 +05:30
|
|
|
const encoded = encodeBody(body);
|
|
|
|
headers.set("Content-Type", encoded.mimeType);
|
2021-11-23 18:09:33 +05:30
|
|
|
//todo: remove this?
|
2020-11-11 15:15:23 +05:30
|
|
|
headers.set("Content-Length", encoded.length);
|
|
|
|
encodedBody = encoded.body;
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2021-02-12 23:05:33 +05:30
|
|
|
|
2019-12-23 18:58:27 +05:30
|
|
|
const requestResult = this._requestFn(url, {
|
2019-06-27 02:01:36 +05:30
|
|
|
method,
|
|
|
|
headers,
|
2020-11-11 15:15:23 +05:30
|
|
|
body: encodedBody,
|
2020-10-23 20:48:11 +05:30
|
|
|
timeout: options?.timeout,
|
2020-11-16 15:15:46 +05:30
|
|
|
uploadProgress: options?.uploadProgress,
|
2020-11-11 15:15:23 +05:30
|
|
|
format: "json" // response format
|
2019-06-27 02:01:36 +05:30
|
|
|
});
|
2020-04-05 18:41:15 +05:30
|
|
|
|
2021-04-09 18:45:28 +05:30
|
|
|
const hsRequest = new HomeServerRequest(method, url, requestResult, log);
|
2020-04-05 18:41:15 +05:30
|
|
|
|
|
|
|
if (this._reconnector) {
|
2021-04-09 18:45:28 +05:30
|
|
|
hsRequest.response().catch(err => {
|
2020-09-25 14:15:41 +05:30
|
|
|
// Some endpoints such as /sync legitimately time-out
|
|
|
|
// (which is also reported as a ConnectionError) and will re-attempt,
|
|
|
|
// but spinning up the reconnector in this case is ok,
|
|
|
|
// as all code ran on session and sync start should be reentrant
|
2020-05-06 23:08:33 +05:30
|
|
|
if (err.name === "ConnectionError") {
|
2020-04-05 18:41:15 +05:30
|
|
|
this._reconnector.onRequestFailed(this);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-04-09 18:45:28 +05:30
|
|
|
return hsRequest;
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2019-02-05 03:56:24 +05:30
|
|
|
|
2021-11-23 18:09:33 +05:30
|
|
|
_unauthedRequest(method: RequestMethod, url: string, queryParams?: object, body?: object, options?: IRequestOptions): HomeServerRequest {
|
|
|
|
return this._baseRequest(method, url, queryParams, body, options);
|
2020-09-18 21:43:20 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:09:33 +05:30
|
|
|
_authedRequest(method: RequestMethod, url: string, queryParams?: object, body?: object, options?: IRequestOptions): HomeServerRequest {
|
2020-09-18 21:43:20 +05:30
|
|
|
return this._baseRequest(method, url, queryParams, body, options, this._accessToken);
|
|
|
|
}
|
|
|
|
|
2021-11-23 18:09:33 +05:30
|
|
|
_post(csPath: string, queryParams: object, body: object, options?: IRequestOptions): HomeServerRequest {
|
2021-10-26 22:17:46 +05:30
|
|
|
return this._authedRequest("POST", this._url(csPath, options?.prefix || CS_R0_PREFIX), queryParams, body, options);
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2019-02-05 03:56:24 +05:30
|
|
|
|
2021-11-23 18:09:33 +05:30
|
|
|
_put(csPath: string, queryParams: object, body?: object, options?: IRequestOptions): HomeServerRequest {
|
2021-10-26 22:17:46 +05:30
|
|
|
return this._authedRequest("PUT", this._url(csPath, options?.prefix || CS_R0_PREFIX), queryParams, body, options);
|
2019-07-27 01:33:57 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:09:33 +05:30
|
|
|
_get(csPath: string, queryParams?: object, body?: object, options?: IRequestOptions): HomeServerRequest {
|
2021-10-26 22:17:46 +05:30
|
|
|
return this._authedRequest("GET", this._url(csPath, options?.prefix || CS_R0_PREFIX), queryParams, body, options);
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
sync(since: string, filter: string, timeout: number, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get("/sync", {since, timeout, filter}, undefined, options);
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2019-02-05 03:56:24 +05:30
|
|
|
|
2019-03-09 05:11:06 +05:30
|
|
|
// params is from, dir and optionally to, limit, filter.
|
2021-11-23 18:13:40 +05:30
|
|
|
messages(roomId: string, params: object, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get(`/rooms/${encodeURIComponent(roomId)}/messages`, params, undefined, options);
|
2019-03-09 05:11:06 +05:30
|
|
|
}
|
|
|
|
|
2020-08-19 19:41:33 +05:30
|
|
|
// params is at, membership and not_membership
|
2021-11-23 18:13:40 +05:30
|
|
|
members(roomId: string, params: object, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get(`/rooms/${encodeURIComponent(roomId)}/members`, params, undefined, options);
|
2020-08-19 19:41:33 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
send(roomId: string, eventType: string, txnId: string, content: object, options?: IRequestOptions): HomeServerRequest {
|
2020-04-05 18:41:15 +05:30
|
|
|
return this._put(`/rooms/${encodeURIComponent(roomId)}/send/${encodeURIComponent(eventType)}/${encodeURIComponent(txnId)}`, {}, content, options);
|
2019-07-27 01:33:57 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
redact(roomId: string, eventId: string, txnId: string, content: object, options?: IRequestOptions): HomeServerRequest {
|
2021-05-19 20:11:07 +05:30
|
|
|
return this._put(`/rooms/${encodeURIComponent(roomId)}/redact/${encodeURIComponent(eventId)}/${encodeURIComponent(txnId)}`, {}, content, options);
|
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
receipt(roomId: string, receiptType: string, eventId: string, options?: IRequestOptions): HomeServerRequest {
|
2020-08-21 18:46:57 +05:30
|
|
|
return this._post(`/rooms/${encodeURIComponent(roomId)}/receipt/${encodeURIComponent(receiptType)}/${encodeURIComponent(eventId)}`,
|
|
|
|
{}, {}, options);
|
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
state(roomId: string, eventType: string, stateKey: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get(`/rooms/${encodeURIComponent(roomId)}/state/${encodeURIComponent(eventType)}/${encodeURIComponent(stateKey)}`, {}, undefined, options);
|
2021-08-02 17:50:09 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
getLoginFlows(): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._unauthedRequest("GET", this._url("/login"));
|
2021-07-27 19:23:46 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
passwordLogin(username: string, password: string, initialDeviceDisplayName: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._unauthedRequest("POST", this._url("/login"), undefined, {
|
2019-02-05 03:56:24 +05:30
|
|
|
"type": "m.login.password",
|
|
|
|
"identifier": {
|
|
|
|
"type": "m.id.user",
|
|
|
|
"user": username
|
|
|
|
},
|
2020-09-08 14:23:15 +05:30
|
|
|
"password": password,
|
|
|
|
"initial_device_display_name": initialDeviceDisplayName
|
2020-04-05 18:41:15 +05:30
|
|
|
}, options);
|
2019-06-27 02:01:36 +05:30
|
|
|
}
|
2019-10-12 23:54:09 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
tokenLogin(loginToken: string, txnId: string, initialDeviceDisplayName: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._unauthedRequest("POST", this._url("/login"), undefined, {
|
2021-08-15 12:23:32 +05:30
|
|
|
"type": "m.login.token",
|
|
|
|
"identifier": {
|
|
|
|
"type": "m.id.user",
|
|
|
|
},
|
|
|
|
"token": loginToken,
|
|
|
|
"txn_id": txnId,
|
|
|
|
"initial_device_display_name": initialDeviceDisplayName
|
|
|
|
}, options);
|
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
createFilter(userId: string, filter: object, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(`/user/${encodeURIComponent(userId)}/filter`, {}, filter, options);
|
2019-10-12 23:54:09 +05:30
|
|
|
}
|
2020-03-31 03:26:03 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
versions(options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._unauthedRequest("GET", `${this._homeserver}/_matrix/client/versions`, undefined, undefined, options);
|
2020-03-31 03:26:03 +05:30
|
|
|
}
|
2020-05-09 23:32:08 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
uploadKeys(dehydratedDeviceId: string, payload: object, options?: IRequestOptions): HomeServerRequest {
|
2021-10-26 22:17:46 +05:30
|
|
|
let path = "/keys/upload";
|
|
|
|
if (dehydratedDeviceId) {
|
|
|
|
path = path + `/${encodeURIComponent(dehydratedDeviceId)}`;
|
|
|
|
}
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(path, {}, payload, options);
|
2020-08-27 22:43:24 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
queryKeys(queryRequest: object, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post("/keys/query", {}, queryRequest, options);
|
2020-08-31 17:54:09 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
claimKeys(payload: object, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post("/keys/claim", {}, payload, options);
|
2020-09-03 19:03:23 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
sendToDevice(type: string, payload: object, txnId: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._put(`/sendToDevice/${encodeURIComponent(type)}/${encodeURIComponent(txnId)}`, {}, payload, options);
|
2020-09-03 19:06:17 +05:30
|
|
|
}
|
2020-09-17 17:49:57 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
roomKeysVersion(version?: string, options?: IRequestOptions): HomeServerRequest {
|
2020-09-17 21:27:12 +05:30
|
|
|
let versionPart = "";
|
|
|
|
if (version) {
|
|
|
|
versionPart = `/${encodeURIComponent(version)}`;
|
2020-09-17 17:49:57 +05:30
|
|
|
}
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get(`/room_keys/version${versionPart}`, undefined, undefined, options);
|
2020-09-17 17:49:57 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
roomKeyForRoomAndSession(version: string, roomId: string, sessionId: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get(`/room_keys/keys/${encodeURIComponent(roomId)}/${encodeURIComponent(sessionId)}`, {version}, undefined, options);
|
2020-09-17 17:49:57 +05:30
|
|
|
}
|
2020-11-11 15:15:44 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
uploadAttachment(blob: Blob, filename: string, options?: IRequestOptions): HomeServerRequest {
|
2020-11-11 16:20:40 +05:30
|
|
|
return this._authedRequest("POST", `${this._homeserver}/_matrix/media/r0/upload`, {filename}, blob, options);
|
2020-11-11 15:15:44 +05:30
|
|
|
}
|
2021-03-19 01:12:46 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
setPusher(pusher: object, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post("/pushers/set", {}, pusher, options);
|
2021-03-19 01:12:46 +05:30
|
|
|
}
|
2021-04-01 18:29:46 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
getPushers(options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get("/pushers", undefined, undefined, options);
|
2021-04-01 18:29:46 +05:30
|
|
|
}
|
2021-04-20 22:32:45 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
join(roomId: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(`/rooms/${encodeURIComponent(roomId)}/join`, {}, {}, options);
|
2021-04-20 22:32:45 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
joinIdOrAlias(roomIdOrAlias: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(`/join/${encodeURIComponent(roomIdOrAlias)}`, {}, {}, options);
|
2021-05-18 14:35:31 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
leave(roomId: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(`/rooms/${encodeURIComponent(roomId)}/leave`, {}, {}, options);
|
2021-04-20 22:32:45 +05:30
|
|
|
}
|
2021-05-12 19:08:54 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
forget(roomId: string, options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(`/rooms/${encodeURIComponent(roomId)}/forget`, {}, {}, options);
|
2021-05-12 19:08:54 +05:30
|
|
|
}
|
2021-10-26 16:19:31 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
logout(options?: IRequestOptions): HomeServerRequest {
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(`/logout`, {}, {}, options);
|
2021-10-26 16:19:31 +05:30
|
|
|
}
|
2021-10-26 22:17:46 +05:30
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
getDehydratedDevice(options: IRequestOptions): HomeServerRequest {
|
2021-10-26 22:17:46 +05:30
|
|
|
options.prefix = DEHYDRATION_PREFIX;
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._get(`/dehydrated_device`, undefined, undefined, options);
|
2021-10-26 22:17:46 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
createDehydratedDevice(payload: object, options: IRequestOptions): HomeServerRequest {
|
2021-10-26 22:17:46 +05:30
|
|
|
options.prefix = DEHYDRATION_PREFIX;
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._put(`/dehydrated_device`, {}, payload, options);
|
2021-10-26 22:17:46 +05:30
|
|
|
}
|
|
|
|
|
2021-11-23 18:13:40 +05:30
|
|
|
claimDehydratedDevice(deviceId: string, options: IRequestOptions): HomeServerRequest {
|
2021-10-26 22:17:46 +05:30
|
|
|
options.prefix = DEHYDRATION_PREFIX;
|
2021-11-23 18:09:33 +05:30
|
|
|
return this._post(`/dehydrated_device/claim`, {}, {device_id: deviceId}, options);
|
2021-10-26 22:17:46 +05:30
|
|
|
}
|
2019-03-08 16:56:59 +05:30
|
|
|
}
|
2020-04-23 00:17:31 +05:30
|
|
|
|
2021-04-09 18:45:28 +05:30
|
|
|
import {Request as MockRequest} from "../../mocks/Request.js";
|
2020-04-23 00:17:31 +05:30
|
|
|
|
2021-04-09 18:45:28 +05:30
|
|
|
export function tests() {
|
2020-04-23 00:17:31 +05:30
|
|
|
return {
|
|
|
|
"superficial happy path for GET": async assert => {
|
2021-11-23 18:09:33 +05:30
|
|
|
// @ts-ignore
|
2020-04-23 00:17:31 +05:30
|
|
|
const hsApi = new HomeServerApi({
|
2021-04-09 18:45:28 +05:30
|
|
|
request: () => new MockRequest().respond(200, 42),
|
2021-11-23 18:09:33 +05:30
|
|
|
homeserver: "https://hs.tld",
|
2020-04-23 00:17:31 +05:30
|
|
|
});
|
2021-11-23 18:09:33 +05:30
|
|
|
const result = await hsApi
|
|
|
|
._get("foo", undefined, undefined, undefined)
|
|
|
|
.response();
|
2020-04-23 00:17:31 +05:30
|
|
|
assert.strictEqual(result, 42);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|