focalboard/webapp/src/utils.test.ts

70 lines
3 KiB
TypeScript
Raw Normal View History

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {Utils} from './utils'
2021-06-15 09:34:59 +02:00
describe('utils', () => {
describe('assureProtocol', () => {
test('should passthrough on valid short protocol', () => {
expect(Utils.ensureProtocol('https://focalboard.com')).toBe('https://focalboard.com')
})
test('should passthrough on valid long protocol', () => {
expect(Utils.ensureProtocol('somecustomprotocol://focalboard.com')).toBe('somecustomprotocol://focalboard.com')
})
2021-06-15 09:34:59 +02:00
test('should passthrough on valid short protocol', () => {
expect(Utils.ensureProtocol('x://focalboard.com')).toBe('x://focalboard.com')
})
2021-06-15 09:34:59 +02:00
test('should add a https for empty protocol', () => {
expect(Utils.ensureProtocol('focalboard.com')).toBe('https://focalboard.com')
})
})
2021-06-15 09:34:59 +02:00
describe('htmlFromMarkdown', () => {
test('should not allow XSS on links href on the webapp', () => {
expect(Utils.htmlFromMarkdown('[]("xss-attack="true"other="whatever)')).toBe('<p><a href="%22xss-attack=%22true%22other=%22whatever"></a></p>')
})
test('should not allow XSS on links href on the desktop app', () => {
const windowAsAny = window as any
windowAsAny.openInNewBrowser = () => null
2021-06-18 16:46:57 +02:00
const expectedHtml = '<p><a target="_blank" rel="noreferrer" href="%22xss-attack=%22true%22other=%22whatever" title="" onclick="event.stopPropagation(); openInNewBrowser && openInNewBrowser(event.target.href);"></a></p>'
2021-06-15 09:34:59 +02:00
expect(Utils.htmlFromMarkdown('[]("xss-attack="true"other="whatever)')).toBe(expectedHtml)
windowAsAny.openInNewBrowser = null
})
})
2021-06-22 17:26:00 +02:00
describe('test - buildURL', () => {
test('buildURL, no base', () => {
expect(Utils.buildURL('test', true)).toBe('http://localhost/test')
expect(Utils.buildURL('/test', true)).toBe('http://localhost/test')
expect(Utils.buildURL('test')).toBe('/test')
expect(Utils.buildURL('/test')).toBe('/test')
})
test('buildURL, base no slash', () => {
const windowAsAny = window as any
windowAsAny.baseURL = 'base'
expect(Utils.buildURL('test', true)).toBe('http://localhost/base/test')
expect(Utils.buildURL('/test', true)).toBe('http://localhost/base/test')
expect(Utils.buildURL('test')).toBe('base/test')
expect(Utils.buildURL('/test')).toBe('base/test')
})
test('buildUrl, base with slash', () => {
const windowAsAny = window as any
windowAsAny.baseURL = '/base/'
expect(Utils.buildURL('test', true)).toBe('http://localhost/base/test')
expect(Utils.buildURL('/test', true)).toBe('http://localhost/base/test')
expect(Utils.buildURL('test')).toBe('base/test')
expect(Utils.buildURL('/test')).toBe('base/test')
})
})
})