/* Copyright 2022 The Matrix.org Foundation C.I.C. 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. */ /// declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace Cypress { interface Chainable { // Intercept all /_matrix/ networking requests for the logged-in user and fail them goOffline(): void; // Remove intercept on all /_matrix/ networking requests goOnline(): void; // Intercept calls to vector.im/matrix.org so a login page can be shown offline stubDefaultServer(): void; } } } // We manage intercepting Matrix APIs here, as fully disabling networking will disconnect // the browser under test from the Cypress runner, so can cause issues. Cypress.Commands.add("goOffline", (): void => { cy.log("Going offline"); cy.window({ log: false }).then((win) => { cy.intercept( "**/_matrix/**", { headers: { Authorization: "Bearer " + win.mxMatrixClientPeg.matrixClient.getAccessToken(), }, }, (req) => { req.destroy(); }, ); }); }); Cypress.Commands.add("goOnline", (): void => { cy.log("Going online"); cy.window({ log: false }).then((win) => { cy.intercept( "**/_matrix/**", { headers: { Authorization: "Bearer " + win.mxMatrixClientPeg.matrixClient.getAccessToken(), }, }, (req) => { req.continue(); }, ); win.dispatchEvent(new Event("online")); }); }); // Needed to make this file a module export {};