[MM-39680] E2E Test for Deep Linking (#1843)

* [MM-39680] E2E Test for Deep Linking

* Only for Win32
This commit is contained in:
Devin Binnie 2021-10-29 11:28:52 -04:00 committed by GitHub
parent c53e897bfd
commit bb3269f2f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 116 additions and 3 deletions

View file

@ -227,7 +227,7 @@ function initializeBeforeAppReady() {
authManager = new AuthManager(config.data, trustedOriginsStore); authManager = new AuthManager(config.data, trustedOriginsStore);
certificateManager = new CertificateManager(); certificateManager = new CertificateManager();
if (isDev) { if (isDev && process.env.NODE_ENV !== 'test') {
log.info('In development mode, deeplinking is disabled'); log.info('In development mode, deeplinking is disabled');
} else if (protocols && protocols[0] && protocols[0].schemes && protocols[0].schemes[0]) { } else if (protocols && protocols[0] && protocols[0].schemes && protocols[0].schemes[0]) {
scheme = protocols[0].schemes[0]; scheme = protocols[0].schemes[0];

View file

@ -66,10 +66,10 @@ module.exports = {
} }
}, },
async getApp() { async getApp(args = []) {
const options = { const options = {
executablePath: electronBinaryPath, executablePath: electronBinaryPath,
args: [`${path.join(sourceRootDir, 'dist')}`, `--data-dir=${userDataDir}`, '--disable-dev-mode'], args: [`${path.join(sourceRootDir, 'dist')}`, `--data-dir=${userDataDir}`, '--disable-dev-mode', ...args],
}; };
// if (process.env.MM_DEBUG_SETTINGS) { // if (process.env.MM_DEBUG_SETTINGS) {

111
test/specs/deeplink_test.js Normal file
View file

@ -0,0 +1,111 @@
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
'use strict';
const fs = require('fs');
const env = require('../modules/environment');
const {asyncSleep} = require('../modules/utils');
describe('application', function desc() {
this.timeout(30000);
const config = {
version: 3,
teams: [{
name: 'example',
url: env.mattermostURL,
order: 0,
tabs: [
{
name: 'TAB_MESSAGING',
order: 0,
isOpen: true,
},
{
name: 'TAB_FOCALBOARD',
order: 1,
isOpen: false,
},
{
name: 'TAB_PLAYBOOKS',
order: 2,
isOpen: false,
},
],
lastActiveTab: 0,
}, {
name: 'github',
url: 'https://github.com/',
order: 1,
tabs: [
{
name: 'TAB_MESSAGING',
order: 0,
isOpen: true,
},
{
name: 'TAB_FOCALBOARD',
order: 1,
isOpen: false,
},
{
name: 'TAB_PLAYBOOKS',
order: 2,
isOpen: false,
},
],
lastActiveTab: 0,
}],
showTrayIcon: false,
trayIconTheme: 'light',
minimizeToTray: false,
notifications: {
flashWindow: 0,
bounceIcon: false,
bounceIconType: 'informational',
},
showUnreadBadge: true,
useSpellChecker: true,
enableHardwareAcceleration: true,
autostart: true,
darkMode: false,
lastActiveTeam: 0,
spellCheckerLocales: [],
};
beforeEach(async () => {
env.cleanDataDir();
env.createTestUserDataDir();
env.cleanTestConfig();
fs.writeFileSync(env.configFilePath, JSON.stringify(config));
await asyncSleep(1000);
});
afterEach(async () => {
if (this.app) {
try {
await this.app.close();
// eslint-disable-next-line no-empty
} catch (err) {}
}
});
if (process.platform === 'win32') {
it('should open the app on the requested deep link', async () => {
this.app = await env.getApp(['mattermost://github.com/test/url']);
this.serverMap = await env.getServerMap(this.app);
const mainWindow = await this.app.firstWindow();
const browserWindow = await this.app.browserWindow(mainWindow);
const webContentsId = this.serverMap[`${config.teams[1].name}___TAB_MESSAGING`].webContentsId;
const isActive = await browserWindow.evaluate((window, id) => {
return window.getBrowserViews().find((view) => view.webContents.id === id).webContents.getURL();
}, webContentsId);
isActive.should.equal('https://github.com/test/url');
const mainView = this.app.windows().find((window) => window.url().includes('index'));
const dropdownButtonText = await mainView.innerText('.TeamDropdownButton');
dropdownButtonText.should.equal('github');
await this.app.close();
});
}
});

View file

@ -3,7 +3,9 @@
import './app_test.js'; import './app_test.js';
import './config_test.js'; import './config_test.js';
import './deeplink_test.js';
import './mattermost_test.js'; import './mattermost_test.js';
import './menu_test.js';
import './window_test.js'; import './window_test.js';
import './browser/index_test.js'; import './browser/index_test.js';