Files
mattermostest/src/main/authManager.test.js
Devin Binnie 9b36c25e4e [MM-52696] Upgrade and clean up Desktop App dev dependencies (#2970)
* Upgrade to ESLint v8

* Upgrade TypeScript, api-types, react-intl

* Remove unnecessary dependencies

* Update to React 17.0.2

* npm audit fixes, remove storybook

* Lock some packages

* Remove nan patch

* Remove some deprecated dependencies

* Fix lint/type/tests

* Merge'd

* Fix bad use of spawn

* Fix notarize

* Fix afterpack, switch to tsc es2020

* Fix api types

* Use @mattermost/eslint-plugin
2024-03-07 15:55:33 -05:00

240 lines
9.8 KiB
JavaScript

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
'use strict';
import {AuthManager} from 'main/authManager';
import ModalManager from 'main/views/modalManager';
import ViewManager from 'main/views/viewManager';
import MainWindow from 'main/windows/mainWindow';
jest.mock('common/utils/url', () => {
const actualUrl = jest.requireActual('common/utils/url');
return {
...actualUrl,
isTrustedURL: (url) => {
return url.toString() === 'http://trustedurl.com/';
},
isCustomLoginURL: (url) => {
return url.toString() === 'http://customloginurl.com/';
},
};
});
jest.mock('electron', () => ({
app: {
getPath: jest.fn(),
},
ipcMain: {
on: jest.fn(),
},
}));
jest.mock('main/trustedOrigins', () => ({
addPermission: jest.fn(),
checkPermission: (url) => {
return url.toString() === 'http://haspermissionurl.com/';
},
save: jest.fn(),
}));
jest.mock('main/windows/mainWindow', () => ({
get: jest.fn().mockImplementation(() => ({})),
}));
jest.mock('main/views/viewManager', () => ({
getViewByWebContentsId: jest.fn(),
}));
jest.mock('main/views/modalManager', () => ({
addModal: jest.fn(),
}));
jest.mock('main/utils', () => ({
getLocalPreload: (file) => file,
getLocalURLString: (file) => file,
}));
describe('main/authManager', () => {
describe('handleAppLogin', () => {
const authManager = new AuthManager();
authManager.popLoginModal = jest.fn();
authManager.popPermissionModal = jest.fn();
it('should not pop any modal on a missing server', () => {
ViewManager.getViewByWebContentsId.mockReturnValue(undefined);
authManager.handleAppLogin({preventDefault: jest.fn()}, {id: 0}, {url: 'http://badurl.com/'}, null, jest.fn());
expect(authManager.popLoginModal).not.toBeCalled();
expect(authManager.popPermissionModal).not.toBeCalled();
});
it('should popLoginModal when isTrustedURL', () => {
ViewManager.getViewByWebContentsId.mockReturnValue({view: {server: {url: new URL('http://trustedurl.com/')}}});
authManager.handleAppLogin({preventDefault: jest.fn()}, {id: 1}, {url: 'http://trustedurl.com/'}, null, jest.fn());
expect(authManager.popLoginModal).toBeCalled();
expect(authManager.popPermissionModal).not.toBeCalled();
});
it('should popLoginModal when isCustomLoginURL', () => {
ViewManager.getViewByWebContentsId.mockReturnValue({view: {server: {url: new URL('http://customloginurl.com/')}}});
authManager.handleAppLogin({preventDefault: jest.fn()}, {id: 1}, {url: 'http://customloginurl.com/'}, null, jest.fn());
expect(authManager.popLoginModal).toBeCalled();
expect(authManager.popPermissionModal).not.toBeCalled();
});
it('should popLoginModal when has permission', () => {
ViewManager.getViewByWebContentsId.mockReturnValue({view: {server: {url: new URL('http://haspermissionurl.com/')}}});
authManager.handleAppLogin({preventDefault: jest.fn()}, {id: 1}, {url: 'http://haspermissionurl.com/'}, null, jest.fn());
expect(authManager.popLoginModal).toBeCalled();
expect(authManager.popPermissionModal).not.toBeCalled();
});
it('should popPermissionModal when anything else is true', () => {
ViewManager.getViewByWebContentsId.mockReturnValue({view: {server: {url: new URL('http://someotherurl.com/')}}});
authManager.handleAppLogin({preventDefault: jest.fn()}, {id: 1}, {url: 'http://someotherurl.com/'}, null, jest.fn());
expect(authManager.popLoginModal).not.toBeCalled();
expect(authManager.popPermissionModal).toBeCalled();
});
it('should set login callback when logging in', () => {
ViewManager.getViewByWebContentsId.mockReturnValue({view: {server: {url: new URL('http://someotherurl.com/')}}});
const callback = jest.fn();
authManager.handleAppLogin({preventDefault: jest.fn()}, {id: 1}, {url: 'http://someotherurl.com/'}, null, callback);
expect(authManager.loginCallbackMap.get('http://someotherurl.com/')).toEqual(callback);
});
});
describe('popLoginModal', () => {
const authManager = new AuthManager();
it('should not pop modal when no main window exists', () => {
MainWindow.get.mockImplementationOnce(() => null);
authManager.popLoginModal({url: 'http://anormalurl.com'}, {
isProxy: false,
host: 'anormalurl',
});
expect(ModalManager.addModal).not.toBeCalled();
});
it('should call with prefix based on proxy setting', () => {
authManager.popLoginModal({url: 'http://anormalurl.com'},
{
isProxy: true,
host: 'anormalurl',
});
expect(ModalManager.addModal).toBeCalledWith(
'proxy-anormalurl',
expect.any(String),
expect.any(String),
expect.any(Object),
expect.any(Object),
);
authManager.popLoginModal({url: 'http://anormalurl.com'},
{
isProxy: false,
host: 'anormalurl',
});
expect(ModalManager.addModal).toBeCalledWith(
'login-http://anormalurl.com',
expect.any(String),
expect.any(String),
expect.any(Object),
expect.any(Object),
);
});
it('should return login credentials when modal resolves', async () => {
authManager.handleLoginCredentialsEvent = jest.fn();
const promise = Promise.resolve({username: 'test', password: 'password'});
ModalManager.addModal.mockImplementationOnce(() => promise);
authManager.popLoginModal({url: 'http://anormalurl.com'},
{
isProxy: false,
host: 'anormalurl',
});
await promise;
expect(authManager.handleLoginCredentialsEvent).toBeCalledWith({url: 'http://anormalurl.com'}, 'test', 'password');
});
it('should cancel the login event when modal rejects', async () => {
authManager.handleCancelLoginEvent = jest.fn();
const error = new Error('oops');
const promise = Promise.reject(error);
ModalManager.addModal.mockImplementationOnce(() => promise);
authManager.popLoginModal({url: 'http://anormalurl.com'},
{
isProxy: false,
host: 'anormalurl',
});
await expect(promise).rejects.toThrow(error);
expect(authManager.handleCancelLoginEvent).toBeCalledWith({url: 'http://anormalurl.com'});
});
});
describe('popPermissionModal', () => {
const authManager = new AuthManager();
it('should not pop modal when no main window exists', () => {
MainWindow.get.mockImplementationOnce(() => null);
authManager.popPermissionModal({url: 'http://anormalurl.com'}, {
isProxy: false,
host: 'anormalurl',
}, 'canBasicAuth');
expect(ModalManager.addModal).not.toBeCalled();
});
it('should call the login event when modal resolves', async () => {
authManager.popLoginModal = jest.fn();
authManager.handlePermissionGranted = jest.fn();
const promise = Promise.resolve();
ModalManager.addModal.mockImplementationOnce(() => promise);
authManager.popPermissionModal({url: 'http://anormalurl.com'},
{
isProxy: false,
host: 'anormalurl',
}, 'canBasicAuth');
await promise;
expect(authManager.handlePermissionGranted).toBeCalledWith('http://anormalurl.com', 'canBasicAuth');
expect(authManager.popLoginModal).toBeCalledWith({url: 'http://anormalurl.com'}, {
isProxy: false,
host: 'anormalurl',
});
});
it('should cancel the login event when modal rejects', async () => {
authManager.handleCancelLoginEvent = jest.fn();
const error = new Error('oops');
const promise = Promise.reject(error);
ModalManager.addModal.mockImplementationOnce(() => promise);
authManager.popPermissionModal({url: 'http://anormalurl.com'},
{
isProxy: false,
host: 'anormalurl',
}, 'canBasicAuth');
await expect(promise).rejects.toThrow(error);
expect(authManager.handleCancelLoginEvent).toBeCalledWith({url: 'http://anormalurl.com'});
});
});
describe('handleLoginCredentialsEvent', () => {
const authManager = new AuthManager();
const callback = jest.fn();
beforeEach(() => {
authManager.loginCallbackMap.set('http://someurl.com', callback);
});
it('should fire callback on successful login', () => {
authManager.handleLoginCredentialsEvent({url: 'http://someurl.com'}, 'test', 'password');
expect(callback).toBeCalledWith('test', 'password');
expect(authManager.loginCallbackMap.get('http://someurl.com')).toBe(undefined);
});
it('should fail gracefully on no callback found', () => {
authManager.handleLoginCredentialsEvent({url: 'http://someotherurl.com'}, 'test', 'password');
expect(callback).not.toBeCalled();
expect(authManager.loginCallbackMap.get('http://someurl.com')).toBe(callback);
});
});
});