mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-10 19:04:28 +08:00
* Logic for calculating if we should apply height fix for safari * Revert safari height fix for safari >= 16.1 * Deprecate static isBrowser funcions, using them directly is incorrect * Changes based on feedback * Update CSS to use & selector --------- Co-authored-by: Hinton <hinton@users.noreply.github.com>
160 lines
5.2 KiB
TypeScript
160 lines
5.2 KiB
TypeScript
import { DeviceType } from "@bitwarden/common/enums";
|
|
|
|
import BrowserPlatformUtilsService from "./browserPlatformUtils.service";
|
|
|
|
describe("Browser Utils Service", () => {
|
|
describe("getBrowser", () => {
|
|
const originalUserAgent = navigator.userAgent;
|
|
|
|
// Reset the userAgent.
|
|
afterAll(() => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
value: originalUserAgent,
|
|
});
|
|
});
|
|
|
|
let browserPlatformUtilsService: BrowserPlatformUtilsService;
|
|
beforeEach(() => {
|
|
(window as any).matchMedia = jest.fn().mockReturnValueOnce({});
|
|
browserPlatformUtilsService = new BrowserPlatformUtilsService(null, null, null, window);
|
|
});
|
|
|
|
afterEach(() => {
|
|
window.matchMedia = undefined;
|
|
(window as any).chrome = undefined;
|
|
(BrowserPlatformUtilsService as any).deviceCache = null;
|
|
});
|
|
|
|
it("should detect chrome", () => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
configurable: true,
|
|
value:
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36",
|
|
});
|
|
|
|
(window as any).chrome = {};
|
|
|
|
expect(browserPlatformUtilsService.getDevice()).toBe(DeviceType.ChromeExtension);
|
|
});
|
|
|
|
it("should detect firefox", () => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
configurable: true,
|
|
value: "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0",
|
|
});
|
|
|
|
expect(browserPlatformUtilsService.getDevice()).toBe(DeviceType.FirefoxExtension);
|
|
});
|
|
|
|
it("should detect opera", () => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
configurable: true,
|
|
value:
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3175.3 Safari/537.36 OPR/49.0.2695.0 (Edition developer)",
|
|
});
|
|
|
|
expect(browserPlatformUtilsService.getDevice()).toBe(DeviceType.OperaExtension);
|
|
});
|
|
|
|
it("should detect edge", () => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
configurable: true,
|
|
value:
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.74 Safari/537.36 Edg/79.0.309.43",
|
|
});
|
|
|
|
expect(browserPlatformUtilsService.getDevice()).toBe(DeviceType.EdgeExtension);
|
|
});
|
|
|
|
it("should detect safari", () => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
configurable: true,
|
|
value:
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/602.4.8 (KHTML, like Gecko) Version/10.0.3 Safari/602.4.8",
|
|
});
|
|
|
|
expect(browserPlatformUtilsService.getDevice()).toBe(DeviceType.SafariExtension);
|
|
});
|
|
|
|
it("should detect vivaldi", () => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
configurable: true,
|
|
value:
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.97 Safari/537.36 Vivaldi/1.94.1008.40",
|
|
});
|
|
|
|
expect(browserPlatformUtilsService.getDevice()).toBe(DeviceType.VivaldiExtension);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Safari Height Fix", () => {
|
|
const originalUserAgent = navigator.userAgent;
|
|
|
|
// Reset the userAgent.
|
|
afterAll(() => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
value: originalUserAgent,
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
(BrowserPlatformUtilsService as any).deviceCache = null;
|
|
});
|
|
|
|
test.each([
|
|
[
|
|
"safari 15.6.1",
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15",
|
|
true,
|
|
],
|
|
[
|
|
"safari 16.0",
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15",
|
|
true,
|
|
],
|
|
|
|
[
|
|
"safari 16.1",
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15",
|
|
false,
|
|
],
|
|
[
|
|
"safari 16.4",
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Safari/605.1.15",
|
|
false,
|
|
],
|
|
[
|
|
"safari 17.0 (future release)",
|
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Safari/605.1.15",
|
|
false,
|
|
],
|
|
[
|
|
"chrome",
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36",
|
|
false,
|
|
],
|
|
[
|
|
"firefox",
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0",
|
|
false,
|
|
],
|
|
[
|
|
"opera",
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3175.3 Safari/537.36 OPR/49.0.2695.0 (Edition developer)",
|
|
false,
|
|
],
|
|
[
|
|
"edge",
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.74 Safari/537.36 Edg/79.0.309.43",
|
|
false,
|
|
],
|
|
])("Apply fix for %s", (name, userAgent, expected) => {
|
|
Object.defineProperty(navigator, "userAgent", {
|
|
configurable: true,
|
|
value: userAgent,
|
|
});
|
|
expect(BrowserPlatformUtilsService.shouldApplySafariHeightFix(window)).toBe(expected);
|
|
});
|
|
});
|