UNPKG

@uppy/utils

Version:

Shared utility functions for Uppy Core and plugins maintained by the Uppy team.

12 lines (11 loc) 795 B
import { describe, expect, it } from 'vitest'; import getSocketHost from './getSocketHost.js'; describe('getSocketHost', () => { it('should get the host from the specified url', () => { expect(getSocketHost('https://foo.bar/a/b/cd?e=fghi&l=k&m=n')).toEqual('wss://foo.bar/a/b/cd?e=fghi&l=k&m=n'); expect(getSocketHost('https://www.foo.bar/a/b/cd?e=fghi&l=k&m=n')).toEqual('wss://www.foo.bar/a/b/cd?e=fghi&l=k&m=n'); expect(getSocketHost('Https://foo.bar/a/b/cd?e=fghi&l=k&m=n')).toEqual('wss://foo.bar/a/b/cd?e=fghi&l=k&m=n'); expect(getSocketHost('foo.bar/a/b/cd?e=fghi&l=k&m=n')).toEqual('wss://foo.bar/a/b/cd?e=fghi&l=k&m=n'); expect(getSocketHost('http://foo.bar/a/b/cd?e=fghi&l=k&m=n')).toEqual('ws://foo.bar/a/b/cd?e=fghi&l=k&m=n'); }); });