65 lines
3.0 KiB
TypeScript
65 lines
3.0 KiB
TypeScript
|
|
import { describe, test, expect, vi, beforeEach, afterEach } from 'vitest';
|
||
|
|
import { copyToClipboard } from './clipboard';
|
||
|
|
|
||
|
|
describe('copyToClipboard', () => {
|
||
|
|
const originalClipboard = (navigator as any).clipboard;
|
||
|
|
const originalIsSecureContext = window.isSecureContext;
|
||
|
|
const originalExecCommand = (document as any).execCommand;
|
||
|
|
|
||
|
|
afterEach(() => {
|
||
|
|
Object.defineProperty(navigator, 'clipboard', { value: originalClipboard, configurable: true });
|
||
|
|
Object.defineProperty(window, 'isSecureContext', { value: originalIsSecureContext, configurable: true });
|
||
|
|
(document as any).execCommand = originalExecCommand;
|
||
|
|
vi.restoreAllMocks();
|
||
|
|
});
|
||
|
|
|
||
|
|
test('uses navigator.clipboard.writeText when available in a secure context', async () => {
|
||
|
|
const writeText = vi.fn().mockResolvedValue(undefined);
|
||
|
|
Object.defineProperty(navigator, 'clipboard', { value: { writeText }, configurable: true });
|
||
|
|
Object.defineProperty(window, 'isSecureContext', { value: true, configurable: true });
|
||
|
|
|
||
|
|
const ok = await copyToClipboard('hello');
|
||
|
|
expect(ok).toBe(true);
|
||
|
|
expect(writeText).toHaveBeenCalledWith('hello');
|
||
|
|
});
|
||
|
|
|
||
|
|
test('falls back to execCommand when clipboard API is unavailable', async () => {
|
||
|
|
Object.defineProperty(navigator, 'clipboard', { value: undefined, configurable: true });
|
||
|
|
Object.defineProperty(window, 'isSecureContext', { value: false, configurable: true });
|
||
|
|
(document as any).execCommand = vi.fn().mockReturnValue(true);
|
||
|
|
|
||
|
|
const ok = await copyToClipboard('hello');
|
||
|
|
expect(ok).toBe(true);
|
||
|
|
expect((document as any).execCommand).toHaveBeenCalledWith('copy');
|
||
|
|
});
|
||
|
|
|
||
|
|
test('falls back to execCommand when clipboard.writeText rejects', async () => {
|
||
|
|
const writeText = vi.fn().mockRejectedValue(new Error('denied'));
|
||
|
|
Object.defineProperty(navigator, 'clipboard', { value: { writeText }, configurable: true });
|
||
|
|
Object.defineProperty(window, 'isSecureContext', { value: true, configurable: true });
|
||
|
|
(document as any).execCommand = vi.fn().mockReturnValue(true);
|
||
|
|
|
||
|
|
const ok = await copyToClipboard('hello');
|
||
|
|
expect(ok).toBe(true);
|
||
|
|
expect((document as any).execCommand).toHaveBeenCalledWith('copy');
|
||
|
|
});
|
||
|
|
|
||
|
|
test('returns false when both clipboard API and execCommand fail', async () => {
|
||
|
|
Object.defineProperty(navigator, 'clipboard', { value: undefined, configurable: true });
|
||
|
|
Object.defineProperty(window, 'isSecureContext', { value: false, configurable: true });
|
||
|
|
(document as any).execCommand = vi.fn().mockReturnValue(false);
|
||
|
|
|
||
|
|
const ok = await copyToClipboard('hello');
|
||
|
|
expect(ok).toBe(false);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('returns false and does not throw when execCommand itself throws', async () => {
|
||
|
|
Object.defineProperty(navigator, 'clipboard', { value: undefined, configurable: true });
|
||
|
|
Object.defineProperty(window, 'isSecureContext', { value: false, configurable: true });
|
||
|
|
(document as any).execCommand = vi.fn().mockImplementation(() => { throw new Error('nope'); });
|
||
|
|
|
||
|
|
const ok = await copyToClipboard('hello');
|
||
|
|
expect(ok).toBe(false);
|
||
|
|
});
|
||
|
|
});
|