chrome-devtools-frontend
Version:
Chrome DevTools UI
125 lines (112 loc) • 7.03 kB
text/typescript
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as UI from '../../legacy.js';
import * as InlineEditor from './inline_editor.js';
describe('BezierUI', () => {
it('can be instantiated successfully', () => {
const testWidth = 1;
const testHeight = 2;
const testMarginTop = 3;
const testRadius = 4;
const testLinearLine = true;
const bezierUI = new InlineEditor.BezierUI.BezierUI({
width: testWidth,
height: testHeight,
marginTop: testMarginTop,
controlPointRadius: testRadius,
shouldDrawLine: testLinearLine,
});
assert.strictEqual(bezierUI.width, testWidth, 'width was not set or retrieved correctly');
assert.strictEqual(bezierUI.height, testHeight, 'height was not set or retrieved correctly');
assert.strictEqual(bezierUI.marginTop, testMarginTop, 'margin top was not set or retrieved correctly');
assert.strictEqual(bezierUI.radius, testRadius, 'radius was not set or retrieved correctly');
assert.strictEqual(bezierUI.shouldDrawLine, testLinearLine, 'linear line value was not set or retrieved correctly');
});
it('can draw velocity chart correctly', () => {
const bezier = new UI.Geometry.CubicBezier(new UI.Geometry.Point(1, 1), new UI.Geometry.Point(3, 4));
const path = document.createElement('path');
InlineEditor.BezierUI.BezierUI.drawVelocityChart(bezier, path, 10);
assert.strictEqual(
path.outerHTML,
'<path d="M 0 26 L 0.02 10.58 L 0.81 10.11 L 1.63 9.72 L 2.48 9.40 L 3.36 9.12 L 4.25 8.88 L 5.16 8.68 L 6.08 8.50 L 7.00 8.34 L 7.92 8.20 L 8.84 8.08 L 9.74 7.97 L 10.63 7.88 L 11.49 7.80 L 12.33 7.72 L 13.14 7.66 L 13.91 7.61 L 14.64 7.57 L 15.32 7.54 L 15.96 7.52 L 16.53 7.52 L 17.04 7.54 L 17.49 7.60 L 17.87 7.72 L 18.16 7.94 L 18.38 8.46 L 18.51 10.15 L 18.55 50.73 L 18.49 4.00 L 18.33 5.24 L 18.06 5.68 L 17.68 5.89 L 17.18 6.01 L 16.56 6.08 L 15.82 6.13 L 14.94 6.16 L 13.92 6.18 L 12.76 6.19 L 11.46 6.20 L 10.00 6.20 L 10.00 26 Z"></path>',
'velocity chart was not drawn correctly');
});
it('calculates curve width correctly', () => {
const bezierUI = new InlineEditor.BezierUI.BezierUI({
width: 10,
height: 10,
marginTop: 1,
controlPointRadius: 3,
shouldDrawLine: true,
});
assert.strictEqual(bezierUI.curveWidth(), 4, 'curve width was not calculated correctly');
});
it('calculates curve height correctly', () => {
const bezierUI = new InlineEditor.BezierUI.BezierUI({
width: 10,
height: 10,
marginTop: 1,
controlPointRadius: 3,
shouldDrawLine: true,
});
assert.strictEqual(bezierUI.curveHeight(), 2, 'curve height was not calculated correctly');
});
it('draws a curve correctly', () => {
const bezierUI = new InlineEditor.BezierUI.BezierUI({
width: 10,
height: 10,
marginTop: 1,
controlPointRadius: 3,
shouldDrawLine: true,
});
const bezier = new UI.Geometry.CubicBezier(new UI.Geometry.Point(1, 1), new UI.Geometry.Point(3, 4));
const svg = document.createElement('svg');
bezierUI.drawCurve(bezier, svg);
/*
<svg width="10" height="10">
<g>
<line class="linear-line" x1="3" y1="6" x2="7" y2="4"></line>
<path class="bezier-path" d="M3,6 C7, 4 15, -2 7, 4"></path>
<line class="bezier-control-line" x1="3" y1="6" x2="7" y2="4"></line>
<circle class="bezier-control-circle" cx="7" cy="4" r="3"></circle>
<line class="bezier-control-line" x1="7" y1="4" x2="15" y2="-2"></line>
<circle class="bezier-control-circle" cx="15" cy="-2" r="3"></circle>
</g>
</svg>
*/
assert.strictEqual(svg.getAttribute('width'), '10', 'curve SVG\'s width was not set up correctly');
assert.strictEqual(svg.getAttribute('height'), '10', 'curve SVG\'s height was not set up correctly');
const linearLine = svg.querySelector('.linear-line');
assert.instanceOf(linearLine, SVGLineElement);
assert.exists(linearLine, 'Bezier curve\'s linear line did not exist');
assert.strictEqual(linearLine.getAttribute('x1'), '3', 'Bezier curve\'s linear line had wrong x1');
assert.strictEqual(linearLine.getAttribute('y1'), '6', 'Bezier curve\'s linear line had wrong y1');
assert.strictEqual(linearLine.getAttribute('x2'), '7', 'Bezier curve\'s linear line had wrong x2');
assert.strictEqual(linearLine.getAttribute('y2'), '4', 'Bezier curve\'s linear line had wrong y2');
const path = svg.querySelector('.bezier-path');
assert.instanceOf(path, SVGPathElement);
assert.exists(path, 'Bezier curve\'s path did not exist');
assert.strictEqual(path.getAttribute('d'), 'M3,6 C7, 4 15, -2 7, 4', 'Bezier curve\'s path had wrong d');
const [controlLine1, controlLine2] = Array.from(svg.querySelectorAll('.bezier-control-line'));
assert.exists(controlLine1, 'Bezier curve\'s control line 1 did not exist');
assert.strictEqual(controlLine1.getAttribute('x1'), '3', 'Bezier curve\'s control line 1 had wrong x1 value');
assert.strictEqual(controlLine1.getAttribute('y1'), '6', 'Bezier curve\'s control line 1 had wrong y1 value');
assert.strictEqual(controlLine1.getAttribute('x2'), '7', 'Bezier curve\'s control line 1 had wrong x2 value');
assert.strictEqual(controlLine1.getAttribute('y2'), '4', 'Bezier curve\'s control line 1 had wrong y2 value');
assert.exists(controlLine2, 'Bezier curve\'s control line 2 did not exist');
assert.strictEqual(controlLine2.getAttribute('x1'), '7', 'Bezier curve\'s control line 2 had wrong x1 value');
assert.strictEqual(controlLine2.getAttribute('y1'), '4', 'Bezier curve\'s control line 2 had wrong y1 value');
assert.strictEqual(controlLine2.getAttribute('x2'), '15', 'Bezier curve\'s control line 2 had wrong x2 value');
assert.strictEqual(controlLine2.getAttribute('y2'), '-2', 'Bezier curve\'s control line 2 had wrong y2 value');
const [controlCircle1, controlCircle2] = Array.from(svg.querySelectorAll('.bezier-control-circle'));
assert.exists(controlCircle1, 'Bezier curve\'s control circle 1 did not exist');
assert.strictEqual(controlCircle1.getAttribute('cx'), '7', 'Bezier curve\'s control circle 1 had wrong cx value');
assert.strictEqual(controlCircle1.getAttribute('cy'), '4', 'Bezier curve\'s control circle 1 had wrong cy value');
assert.strictEqual(controlCircle1.getAttribute('r'), '3', 'Bezier curve\'s control circle 1 had wrong r value');
assert.exists(controlCircle2, 'Bezier curve\'s control circle 2 did not exist');
assert.strictEqual(controlCircle2.getAttribute('cx'), '15', 'Bezier curve\'s control circle 2 had wrong cx value');
assert.strictEqual(controlCircle2.getAttribute('cy'), '-2', 'Bezier curve\'s control circle 2 had wrong cy value');
assert.strictEqual(controlCircle2.getAttribute('r'), '3', 'Bezier curve\'s control circle 2 had wrong r value');
});
});