1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { sanitizeToken, getClipboardUrl } from "./helpers";
7 describe('helpers', () => {
9 const url = 'https://example.com/c=zzzzz/t=v2/a/b/LIMS/1.html';
11 describe('sanitizeToken', () => {
12 it('should sanitize token from the url', () => {
14 const result = sanitizeToken(url);
17 expect(result).toBe('https://example.com/c=zzzzz/LIMS/1.html?api_token=v2/a/b');
21 describe('getClipboardUrl', () => {
22 it('should add redirectTo query param', () => {
24 const result = getClipboardUrl(url);
27 expect(result).toBe('http://localhost?redirectTo=https://example.com/c=zzzzz/LIMS/1.html');