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 {heap, HeapStruct} from "../../../dist/trace/database/ProcedureWorkerHeap.js"; 18// @ts-ignore 19import {Rect} from "../../../dist/trace/component/trace/timer-shaft/Rect.js"; 20 21describe(' Test', () => { 22 23 it('HeapTest01', () => { 24 let dataList = new Array(); 25 dataList.push({startTime: 0, dur: 10, frame: {x:0, y:9, width:10, height:10}}) 26 dataList.push({startTime: 1, dur: 111}) 27 let rect = new Rect(0, 10, 10, 10); 28 heap(dataList, new Set(), 1, 100254, 100254, rect) 29 }) 30 31 it('HeapTest02', () => { 32 let dataList = new Array(); 33 dataList.push({startTime: 0, dur: 10, frame: {x:0, y:9, width:10, height:10}}) 34 dataList.push({startTime: 1, dur: 111, frame: {x:0, y:9, width:10, height:10}}) 35 let rect = new Rect(0, 10, 10, 10); 36 heap(dataList, new Set(), 1, 100254, 100254, rect) 37 }) 38 39 it('HeapTest03', () => { 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(HeapStruct.draw(ctx, data)).toBeUndefined() 56 }) 57 it('HeapTest04', () => { 58 const canvas = document.createElement('canvas'); 59 canvas.width = 1; 60 canvas.height = 1; 61 const ctx = canvas.getContext('2d'); 62 63 const data = { 64 frame: { 65 x: 20, 66 y: 20, 67 width: 100, 68 height: 100 69 }, 70 maxHeapSize: 200, 71 value: 50 72 } 73 expect(HeapStruct.draw(ctx, data)).toBeUndefined() 74 }) 75});