/* * Tencent is pleased to support the open source community by making TMagicEditor available. * * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { describe, expect, test } from 'vitest'; import * as util from '../../src'; describe('datetimeFormatter', () => { // Date会将时间转为UTC const date = new Date('2021-07-17T15:37:00'); const dateValue = '2021-07-17 15:37:00'; const defaultValue = '默认值'; test('v为空且未设置默认时间', () => { expect(util.datetimeFormatter('')).toBe('-'); }); test('v是字符串且未设置了默认时间', () => { expect(util.datetimeFormatter('abc', defaultValue)).toMatch(defaultValue); }); test('v是日期字符串', () => { expect(util.datetimeFormatter(date.toISOString(), defaultValue)).toMatch(dateValue); }); test('v是Date对象', () => { expect(util.datetimeFormatter(date)).toMatch(dateValue); }); test('v是UTC字符串', () => { expect(util.datetimeFormatter(date.toUTCString())).toMatch(dateValue); }); test('format是x', () => { expect(util.datetimeFormatter(date.toISOString(), defaultValue, 'timestamp')).toBe(date.getTime()); }); }); describe('asyncLoadJs', () => { const url = 'https://m.film.qq.com/magic-ui/production/1/1625056093304/magic/magic-ui.umd.min.js'; test('第一次加载asyncLoadJs带url与crossorigin参数', () => { const crossOrigin = 'anonymous'; const load = util.asyncLoadJs(url, crossOrigin); load.then(() => { const script = document.getElementsByTagName('script')[0]; expect(script).not.toBeUndefined(); expect(script.type).toMatch('text/javascript'); // 设置了anonymous expect(script.crossOrigin).toMatch(crossOrigin); expect(script.src).toMatch(url); }); }); test('第二次加载asyncLoadJs', () => { util.asyncLoadJs(url, 'anonymous').then(() => { util.asyncLoadJs(url, 'use-credentials').then(() => { const scriptList = document.getElementsByTagName('script'); expect(scriptList.length).toBe(1); expect(scriptList[0].crossOrigin).toMatch('anonymous'); expect(scriptList[0].src).toMatch(url); }); }); }); test('url无效', () => { util.asyncLoadJs('123').catch((e: any) => { expect(e).toMatch('error'); }); }); }); describe('asyncLoadCss', () => { const url = 'https://beta.m.film.qq.com/magic-act/css/BuyGift.75d837d2b3fd.css?max_age=864000'; test('第一次加载asyncLoadCss', () => { const load = util.asyncLoadCss(url); load.then(() => { const link = document.getElementsByTagName('link')[0]; expect(link).not.toBeUndefined(); expect(link.rel).toMatch('stylesheet'); expect(link.href).toMatch(url); }); }); test('第二次加载asyncLoadJs', () => { util.asyncLoadCss(url).then(() => { util.asyncLoadCss(url).then(() => { const linkList = document.getElementsByTagName('link'); expect(linkList.length).toBe(1); expect(linkList[0].href).toMatch(url); }); }); }); test('url无效', () => { util.asyncLoadCss('123').catch((e: any) => { expect(e).toMatch('error'); }); }); }); describe('toLine', () => { test('aBc', () => { const value = util.toLine('aBc'); expect(value).toBe('a-bc'); }); test('aBC', () => { const value = util.toLine('aBC'); expect(value).toBe('a-b-c'); }); test('ABC', () => { const value = util.toLine('ABC'); expect(value).toBe('a-b-c'); }); }); describe('toHump', () => { test('a-bc', () => { const value = util.toHump('a-bc'); expect(value).toBe('aBc'); }); test('a-b-c', () => { const value = util.toHump('a-b-c'); expect(value).toBe('aBC'); }); test('-b-c', () => { const value = util.toHump('-b-c'); expect(value).toBe('BC'); }); }); describe('getNodePath', () => { const root = [ { id: 1, type: 'container', items: [ { id: 11, items: [ { id: 111, }, ], }, ], }, { id: 2, type: 'container', items: [ { id: 22, items: [ { id: 222, }, ], }, ], }, ]; test('基础', () => { const path = util.getNodePath(111, root); const path2 = util.getNodePath(22, root); expect(path).toHaveLength(3); expect(path2).toHaveLength(2); }); test('error', () => { const path = util.getNodePath(111, 123 as any); const path2 = util.getNodePath(33, root); expect(path).toHaveLength(0); expect(path2).toHaveLength(0); }); }); describe('filterXSS', () => { test('<>', () => { const value = util.filterXSS('
'); expect(value).toBe('<div></div>'); }); test(`'"`, () => { const value = util.filterXSS(`'div'"span"`); expect(value).toBe(''div'"span"'); }); }); describe('getUrlParam', () => { test('正常', () => { const url = 'http://film.qq.com?a=b'; const value = util.getUrlParam('a', url); expect(value).toBe('b'); }); test('null', () => { const url = 'http://film.qq.com'; const value = util.getUrlParam('a', url); expect(value).toBe(''); }); test('emprty', () => { const url = 'http://film.qq.com?a='; const value = util.getUrlParam('a', url); expect(value).toBe(''); }); }); describe('isPop', () => { // type 为 pop 结尾 isPop 才为 true test('true', () => { expect( util.isPop({ type: 'pop', id: 1, }), ).toBeTruthy(); }); test('endswidth true', () => { expect( util.isPop({ type: 'xxxpop', id: 1, }), ).toBeTruthy(); }); test('false', () => { expect( util.isPop({ type: 'pop1', id: 1, }), ).toBeFalsy(); }); }); describe('isPage', () => { test('true', () => { expect( util.isPage({ type: 'page', id: 1, }), ).toBeTruthy(); }); test('false', () => { expect( util.isPage({ type: 'pop1', id: 1, }), ).toBeFalsy(); }); }); describe('getHost', () => { test('正常', () => { const host = util.getHost('https://film.qq.com/index.html'); expect(host).toBe('film.qq.com'); }); }); describe('isSameDomain', () => { test('正常', () => { const flag = util.isSameDomain('https://film.qq.com/index.html', 'film.qq.com'); expect(flag).toBeTruthy(); }); test('不正常', () => { const flag = util.isSameDomain('https://film.qq.com/index.html', 'test.film.qq.com'); expect(flag).toBeFalsy(); }); test('不是http', () => { const flag = util.isSameDomain('ftp://film.qq.com/index.html', 'test.film.qq.com'); expect(flag).toBeTruthy(); }); }); describe('guid', () => { test('获取id', () => { const id = util.guid(); const id1 = util.guid(); expect(typeof id).toBe('string'); expect(id === id1).toBeFalsy(); }); }); describe('getValueByKeyPath', () => { test('key', () => { const value = util.getValueByKeyPath('a', { a: 1, }); expect(value).toBe(1); }); test('keys', () => { const value = util.getValueByKeyPath('a.b', { a: { b: 1, }, }); expect(value).toBe(1); }); test('error', () => { const value = util.getValueByKeyPath('a.b.c.d', { a: {}, }); expect(value).toBeUndefined(); const value1 = util.getValueByKeyPath('a.b.c', { a: {}, }); expect(value1).toBeUndefined(); }); }); describe('getNodes', () => { test('获取id', () => { const root = [ { id: 1, type: 'container', items: [ { id: 11, items: [ { id: 111, }, ], }, ], }, { id: 2, type: 'container', items: [ { id: 22, items: [ { id: 222, }, ], }, ], }, { id: 3, type: 'container', items: { id: 33, items: [ { id: 333, }, ], }, }, ]; const nodes = util.getNodes([22, 111, 2], root); expect(nodes.length).toBe(3); }); }); describe('getDepKeys', () => { test('get keys', () => { const keys = util.getDepKeys( { ds_bebcb2d5: { 61705611: { name: '文本', keys: ['text'], }, }, }, 61705611, ); expect(keys).toEqual(['text']); }); }); describe('getDepNodeIds', () => { test('get node ids', () => { const ids = util.getDepNodeIds({ ds_bebcb2d5: { 61705611: { name: '文本', keys: ['text'], }, }, }); expect(ids).toEqual(['61705611']); }); }); describe('replaceChildNode', () => { test('replace', () => { const root = [ { id: 1, text: '', type: 'container', items: [ { id: 11, text: '', items: [ { id: 111, text: '', }, ], }, ], }, { id: 2, type: 'container', text: '', items: [ { id: 22, text: '', items: [ { id: 222, text: '', }, ], }, ], }, ]; expect(root[1].items[0].items[0].text).toBe(''); util.replaceChildNode( { id: 222, text: '文本', }, root, ); expect(root[1].items[0].items[0].text).toBe('文本'); }); test('replace whith parent', () => { const root = [ { id: 1, text: '', type: 'container', items: [ { id: 11, text: '', items: [ { id: 111, text: '', }, ], }, ], }, { id: 2, type: 'container', text: '', items: [ { id: 22, text: '', items: [ { id: 222, text: '', }, ], }, ], }, ]; expect(root[1].items[0].items[0].text).toBe(''); util.replaceChildNode( { id: 222, text: '文本', }, root, 22, ); expect(root[1].items[0].items[0].text).toBe('文本'); }); }); describe('compiledNode', () => { test('compiled', () => { const node = util.compiledNode( (_str: string) => '123', { id: 61705611, type: 'text', text: '456', }, { ds_bebcb2d5: { 61705611: { name: '文本', keys: ['text'], }, }, }, ); expect(node.text).toBe('123'); }); test('compile with source id', () => { const node = util.compiledNode( (_str: string) => '123', { id: 61705611, type: 'text', text: '456', }, { ds_bebcb2d5: { 61705611: { name: '文本', keys: ['text'], }, }, }, 'ds_bebcb2d5', ); expect(node.text).toBe('123'); }); test('compile error', () => { const node = util.compiledNode( (_str: string) => { throw new Error('error'); }, { id: 61705611, type: 'text', text: '456', }, { ds_bebcb2d5: { 61705611: { name: '文本', keys: ['text'], }, }, }, ); expect(node.text).toBe(''); }); });