1/* 2 * Copyright (C) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16// @ts-ignore 17import {mem, ProcessMemStruct} from "../../../dist/trace/database/ProcedureWorkerMem.js"; 18// @ts-ignore 19import {Rect} from "../../../dist/trace/component/trace/timer-shaft/Rect.js"; 20 21describe(' Test', () => { 22 23 it('MemTest01', () => { 24 let dataList = new Array(); 25 dataList.push({startTime: 0, duration: 10, frame: {x:0, y:9, width:10, height:10}}) 26 dataList.push({startTime: 1, duration: 111}) 27 let rect = new Rect(0, 10, 10, 10); 28 mem(dataList, new Set(), 1, 100254, 100256, rect) 29 }) 30 31 it('MemTest02', () => { 32 let dataList = new Array(); 33 dataList.push({startTime: 0, duration: 10, frame: {x:0, y:9, width:10, height:10}}) 34 dataList.push({startTime: 1, duration: 111, frame: {x:0, y:9, width:10, height:10}}) 35 let rect = new Rect(0, 10, 10, 10); 36 mem(dataList, new Set(), 2, 100254, 100254, rect) 37 }) 38 39 it('MemTest03', () => { 40 const canvas = document.createElement('canvas'); 41 canvas.width = 1; 42 canvas.height = 1; 43 const ctx = canvas.getContext('2d'); 44 45 const data = { 46 frame: { 47 x: 20, 48 y: 20, 49 width: 100, 50 height: 100 51 }, 52 startNS: 200, 53 value: 50 54 } 55 expect(ProcessMemStruct.draw(ctx, data)).toBeUndefined() 56 }) 57 58 59 // it('MemTest03', () => { 60 // setMemFrame(dataList, new Set(), 1, 100254, 100254, rect) 61 // }) 62 63});