2022-08-11 17:13:17 +08:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
2022-09-27 20:35:54 +08:00
|
|
|
import { fireEvent, render } from '@testing-library/react';
|
|
|
|
import { PUSHER_ENABLED } from 'matrix-js-sdk/src/@types/event';
|
2022-08-11 17:13:17 +08:00
|
|
|
|
|
|
|
import DeviceDetails from '../../../../../src/components/views/settings/devices/DeviceDetails';
|
2022-09-27 20:35:54 +08:00
|
|
|
import { mkPusher } from '../../../../test-utils/test-utils';
|
2022-10-05 19:41:01 +08:00
|
|
|
import { DeviceType } from '../../../../../src/utils/device/parseUserAgent';
|
2022-08-11 17:13:17 +08:00
|
|
|
|
|
|
|
describe('<DeviceDetails />', () => {
|
|
|
|
const baseDevice = {
|
|
|
|
device_id: 'my-device',
|
2022-08-16 19:45:09 +08:00
|
|
|
isVerified: false,
|
2022-10-05 19:41:01 +08:00
|
|
|
deviceType: DeviceType.Unknown,
|
2022-08-11 17:13:17 +08:00
|
|
|
};
|
|
|
|
const defaultProps = {
|
|
|
|
device: baseDevice,
|
2022-09-27 20:35:54 +08:00
|
|
|
pusher: null,
|
2022-09-15 00:18:32 +08:00
|
|
|
isSigningOut: false,
|
2022-09-15 22:34:50 +08:00
|
|
|
isLoading: false,
|
2022-09-15 00:18:32 +08:00
|
|
|
onSignOutDevice: jest.fn(),
|
2022-09-15 22:34:50 +08:00
|
|
|
saveDeviceName: jest.fn(),
|
2022-09-29 01:18:10 +08:00
|
|
|
setPushNotifications: jest.fn(),
|
2022-09-27 20:35:54 +08:00
|
|
|
supportsMSC3881: true,
|
2022-08-11 17:13:17 +08:00
|
|
|
};
|
2022-09-27 20:35:54 +08:00
|
|
|
|
2022-08-11 17:13:17 +08:00
|
|
|
const getComponent = (props = {}) => <DeviceDetails {...defaultProps} {...props} />;
|
2022-09-27 20:35:54 +08:00
|
|
|
|
2022-08-11 17:13:17 +08:00
|
|
|
// 14.03.2022 16:15
|
|
|
|
const now = 1647270879403;
|
|
|
|
jest.useFakeTimers();
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.setSystemTime(now);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders device without metadata', () => {
|
|
|
|
const { container } = render(getComponent());
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders device with metadata', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
display_name: 'My Device',
|
|
|
|
last_seen_ip: '123.456.789',
|
|
|
|
last_seen_ts: now - 60000000,
|
2022-10-05 19:41:01 +08:00
|
|
|
appName: 'Element Web',
|
2022-10-07 16:49:35 +08:00
|
|
|
client: 'Firefox 100',
|
|
|
|
deviceModel: 'Iphone X',
|
|
|
|
deviceOperatingSystem: 'Windows 95',
|
2022-08-11 17:13:17 +08:00
|
|
|
};
|
|
|
|
const { container } = render(getComponent({ device }));
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
2022-08-16 19:45:09 +08:00
|
|
|
|
|
|
|
it('renders a verified device', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
isVerified: true,
|
|
|
|
};
|
|
|
|
const { container } = render(getComponent({ device }));
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
2022-09-15 00:18:32 +08:00
|
|
|
|
|
|
|
it('disables sign out button while sign out is pending', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
};
|
|
|
|
const { getByTestId } = render(getComponent({ device, isSigningOut: true }));
|
|
|
|
expect(
|
|
|
|
getByTestId('device-detail-sign-out-cta').getAttribute('aria-disabled'),
|
|
|
|
).toEqual("true");
|
|
|
|
});
|
2022-09-27 20:35:54 +08:00
|
|
|
|
|
|
|
it('renders the push notification section when a pusher exists', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
};
|
|
|
|
const pusher = mkPusher({
|
|
|
|
device_id: device.device_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
const { getByTestId } = render(getComponent({
|
|
|
|
device,
|
|
|
|
pusher,
|
|
|
|
isSigningOut: true,
|
|
|
|
}));
|
|
|
|
|
|
|
|
expect(getByTestId('device-detail-push-notification')).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('hides the push notification section when no pusher', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
};
|
|
|
|
|
|
|
|
const { getByTestId } = render(getComponent({
|
|
|
|
device,
|
|
|
|
pusher: null,
|
|
|
|
isSigningOut: true,
|
|
|
|
}));
|
|
|
|
|
|
|
|
expect(() => getByTestId('device-detail-push-notification')).toThrow();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('disables the checkbox when there is no server support', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
};
|
|
|
|
const pusher = mkPusher({
|
|
|
|
device_id: device.device_id,
|
|
|
|
[PUSHER_ENABLED.name]: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
const { getByTestId } = render(getComponent({
|
|
|
|
device,
|
|
|
|
pusher,
|
|
|
|
isSigningOut: true,
|
|
|
|
supportsMSC3881: false,
|
|
|
|
}));
|
|
|
|
|
|
|
|
const checkbox = getByTestId('device-detail-push-notification-checkbox');
|
|
|
|
|
|
|
|
expect(checkbox.getAttribute('aria-disabled')).toEqual("true");
|
|
|
|
expect(checkbox.getAttribute('aria-checked')).toEqual("false");
|
|
|
|
});
|
|
|
|
|
|
|
|
it('changes the pusher status when clicked', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
};
|
|
|
|
|
|
|
|
const enabled = false;
|
|
|
|
|
|
|
|
const pusher = mkPusher({
|
|
|
|
device_id: device.device_id,
|
|
|
|
[PUSHER_ENABLED.name]: enabled,
|
|
|
|
});
|
|
|
|
|
|
|
|
const { getByTestId } = render(getComponent({
|
|
|
|
device,
|
|
|
|
pusher,
|
|
|
|
isSigningOut: true,
|
|
|
|
}));
|
|
|
|
|
|
|
|
const checkbox = getByTestId('device-detail-push-notification-checkbox');
|
|
|
|
|
|
|
|
fireEvent.click(checkbox);
|
|
|
|
|
2022-09-29 01:18:10 +08:00
|
|
|
expect(defaultProps.setPushNotifications).toHaveBeenCalledWith(device.device_id, !enabled);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('changes the local notifications settings status when clicked', () => {
|
|
|
|
const device = {
|
|
|
|
...baseDevice,
|
|
|
|
};
|
|
|
|
|
|
|
|
const enabled = false;
|
|
|
|
|
|
|
|
const { getByTestId } = render(getComponent({
|
|
|
|
device,
|
|
|
|
localNotificationSettings: {
|
|
|
|
is_silenced: !enabled,
|
|
|
|
},
|
|
|
|
isSigningOut: true,
|
|
|
|
}));
|
|
|
|
|
|
|
|
const checkbox = getByTestId('device-detail-push-notification-checkbox');
|
|
|
|
fireEvent.click(checkbox);
|
|
|
|
|
|
|
|
expect(defaultProps.setPushNotifications).toHaveBeenCalledWith(device.device_id, !enabled);
|
2022-09-27 20:35:54 +08:00
|
|
|
});
|
2022-08-11 17:13:17 +08:00
|
|
|
});
|