Merge branch '16719-collection-version-basic-ui'
[arvados-workbench2.git] / src / views-components / context-menu / actions / helpers.test.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { sanitizeToken, getClipboardUrl } from "./helpers";
6
7 describe('helpers', () => {
8     // given
9     const url = 'https://example.com/c=zzzzz/t=v2/a/b/LIMS/1.html';
10
11     describe('sanitizeToken', () => {
12         it('should sanitize token from the url', () => {
13             // when
14             const result = sanitizeToken(url);
15
16             // then
17             expect(result).toBe('https://example.com/c=zzzzz/LIMS/1.html?api_token=v2/a/b');
18         });
19     });
20
21     describe('getClipboardUrl', () => {
22         it('should add redirectTo query param', () => {
23             // when
24             const result = getClipboardUrl(url);
25
26             // then
27             expect(result).toBe('http://localhost?redirectTo=https://example.com/c=zzzzz/LIMS/1.html');
28         });
29     });
30 });