2022-12-28 01:27:12 -08:00
|
|
|
/**
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2023-12-14 11:48:22 -08:00
|
|
|
*
|
2024-09-25 15:46:55 -07:00
|
|
|
* @generated SignedSource<<285a0c9dd4b646e7b1af77658fc41d99>>
|
2023-12-14 11:48:22 -08:00
|
|
|
* generated by gentest/gentest-driver.ts from gentest/fixtures/YGFlexDirectionTest.html
|
2022-12-28 01:27:12 -08:00
|
|
|
*/
|
|
|
|
|
2024-06-26 10:00:17 -07:00
|
|
|
import { instrinsicSizeMeasureFunc } from '../tools/utils.ts'
|
Consolidate JavaScript Flavors (#1433)
Summary:
Fixes https://github.com/facebook/yoga/issues/1417
This dramatically simplifies the matrix of Node vs web, ASM vs WASM, sync vs async compilation, or CommonJS vs ES Modules. We have one variant, using wasm, with ESModule top-level await to do async compilation. Web/node share the same binary, and we base64 encode the WASM into a wrapper JS file for compatibility with Node and bundlers.
This has some downsides, like requiring an environment with top level await, but also has upsides, like a consistent, sync looking API compatible with older Yoga, and mitigating TypeScript issues with package exports and typings resolution.
As part of this work I also removed `ts-node` from the toolchain (at the cost of a couple of config files needing to be vanilla JS).
Pull Request resolved: https://github.com/facebook/yoga/pull/1433
Test Plan:
1. `yarn test`
2. `yarn lint`
3. `yarn tsc`
4. `yarn benchmark`
5. `yarn build` website-next
6. `yarn lint` website-next
7. Locally test website-next
8. Examine package artifact created by GitHub
9. All Automation passes
Reviewed By: yungsters
Differential Revision: D50453324
Pulled By: NickGerleman
fbshipit-source-id: fe1192acc69e57fa69a1ff056dd7b5844d2198d5
2023-10-31 20:41:38 -07:00
|
|
|
import Yoga from 'yoga-layout';
|
2023-05-10 22:46:39 -07:00
|
|
|
import {
|
|
|
|
Align,
|
2024-09-25 15:46:55 -07:00
|
|
|
BoxSizing,
|
2023-05-10 22:46:39 -07:00
|
|
|
Direction,
|
|
|
|
Display,
|
|
|
|
Edge,
|
|
|
|
Errata,
|
|
|
|
ExperimentalFeature,
|
|
|
|
FlexDirection,
|
|
|
|
Gutter,
|
|
|
|
Justify,
|
|
|
|
MeasureMode,
|
|
|
|
Overflow,
|
|
|
|
PositionType,
|
|
|
|
Unit,
|
|
|
|
Wrap,
|
|
|
|
} from 'yoga-layout';
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
test('flex_direction_column_no_height', () => {
|
2022-12-28 01:27:12 -08:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2022-12-28 01:27:12 -08:00
|
|
|
root.setWidth(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setHeight(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setHeight(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setHeight(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(30);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(10);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(20);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(10);
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(30);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(10);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(20);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(10);
|
|
|
|
} finally {
|
2023-05-10 22:46:39 -07:00
|
|
|
if (typeof root !== 'undefined') {
|
2022-12-28 01:27:12 -08:00
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-05-10 22:46:39 -07:00
|
|
|
test('flex_direction_row_no_width', () => {
|
2022-12-28 01:27:12 -08:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.setFlexDirection(FlexDirection.Row);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2022-12-28 01:27:12 -08:00
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(30);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(30);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
2023-05-10 22:46:39 -07:00
|
|
|
if (typeof root !== 'undefined') {
|
2022-12-28 01:27:12 -08:00
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-05-10 22:46:39 -07:00
|
|
|
test('flex_direction_column', () => {
|
2022-12-28 01:27:12 -08:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2022-12-28 01:27:12 -08:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setHeight(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setHeight(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setHeight(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(10);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(20);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(10);
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(10);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(20);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(10);
|
|
|
|
} finally {
|
2023-05-10 22:46:39 -07:00
|
|
|
if (typeof root !== 'undefined') {
|
2022-12-28 01:27:12 -08:00
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-05-10 22:46:39 -07:00
|
|
|
test('flex_direction_row', () => {
|
2022-12-28 01:27:12 -08:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.setFlexDirection(FlexDirection.Row);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2022-12-28 01:27:12 -08:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
2023-05-10 22:46:39 -07:00
|
|
|
if (typeof root !== 'undefined') {
|
2022-12-28 01:27:12 -08:00
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-05-10 22:46:39 -07:00
|
|
|
test('flex_direction_column_reverse', () => {
|
2022-12-28 01:27:12 -08:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.setFlexDirection(FlexDirection.ColumnReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2022-12-28 01:27:12 -08:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setHeight(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setHeight(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setHeight(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(80);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(70);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(10);
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(80);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(70);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(10);
|
|
|
|
} finally {
|
2023-05-10 22:46:39 -07:00
|
|
|
if (typeof root !== 'undefined') {
|
2022-12-28 01:27:12 -08:00
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-05-10 22:46:39 -07:00
|
|
|
test('flex_direction_row_reverse', () => {
|
2022-12-28 01:27:12 -08:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2022-12-28 01:27:12 -08:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
2022-12-28 01:27:12 -08:00
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
2023-05-10 22:46:39 -07:00
|
|
|
if (typeof root !== 'undefined') {
|
2022-12-28 01:27:12 -08:00
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-03 11:31:34 -07:00
|
|
|
test('flex_direction_row_reverse_margin_left', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(Edge.Left, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(100);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(100);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-12 16:22:27 -07:00
|
|
|
test('flex_direction_row_reverse_margin_start', () => {
|
2023-10-03 11:31:34 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(Edge.Start, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(100);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_margin_right', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(Edge.Right, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-12 16:22:27 -07:00
|
|
|
test('flex_direction_row_reverse_margin_end', () => {
|
2023-10-03 11:31:34 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(Edge.End, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(100);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_column_reverse_margin_top', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.ColumnReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(Edge.Top, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(100);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(100);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_column_reverse_margin_bottom', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.ColumnReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(Edge.Bottom, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-11 14:02:39 -07:00
|
|
|
test('flex_direction_row_reverse_padding_left', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(Edge.Left, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(110);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(120);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-17 20:30:16 -07:00
|
|
|
test('flex_direction_row_reverse_padding_start', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(Edge.Start, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_padding_right', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(Edge.Right, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(-10);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(-20);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(-30);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-17 20:30:16 -07:00
|
|
|
test('flex_direction_row_reverse_padding_end', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(Edge.End, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(-10);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(-20);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(-30);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(110);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(120);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_column_reverse_padding_top', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.ColumnReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(Edge.Top, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_column_reverse_padding_bottom', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.ColumnReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(Edge.Bottom, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
2023-10-11 14:02:39 -07:00
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_border_left', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(Edge.Left, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(110);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(120);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-17 20:30:16 -07:00
|
|
|
test('flex_direction_row_reverse_border_start', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(Edge.Start, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_border_right', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(Edge.Right, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(-10);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(-20);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(-30);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-17 20:30:16 -07:00
|
|
|
test('flex_direction_row_reverse_border_end', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.RowReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(Edge.End, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(-10);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(-20);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(-30);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(110);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(120);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_column_reverse_border_top', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.ColumnReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(Edge.Top, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_column_reverse_border_bottom', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setFlexDirection(FlexDirection.ColumnReverse);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(Edge.Bottom, 100);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setWidth(10);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child1 = Yoga.Node.create(config);
|
2023-10-11 14:02:39 -07:00
|
|
|
root_child1.setWidth(10);
|
|
|
|
root.insertChild(root_child1, 1);
|
|
|
|
|
|
|
|
const root_child2 = Yoga.Node.create(config);
|
|
|
|
root_child2.setWidth(10);
|
|
|
|
root.insertChild(root_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-18 17:30:18 -07:00
|
|
|
test('flex_direction_row_reverse_pos_left', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setPosition(Edge.Left, 100);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-18 17:30:18 -07:00
|
|
|
test('flex_direction_row_reverse_pos_start', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setPosition(Edge.Start, 100);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(-100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-18 17:30:18 -07:00
|
|
|
test('flex_direction_row_reverse_pos_right', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setPosition(Edge.Right, 100);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(-100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(-100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-18 17:30:18 -07:00
|
|
|
test('flex_direction_row_reverse_pos_end', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setPosition(Edge.End, 100);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(-100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(70);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-18 17:30:18 -07:00
|
|
|
test('flex_direction_column_reverse_pos_top', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setPosition(Edge.Top, 100);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(100);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-10-18 17:30:18 -07:00
|
|
|
test('flex_direction_column_reverse_pos_bottom', () => {
|
2023-10-11 14:02:39 -07:00
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(PositionType.Absolute);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setPosition(Edge.Bottom, 100);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedTop()).toBe(-100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root.getComputedTop()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(-100);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
2023-10-11 14:02:39 -07:00
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2023-11-07 11:02:20 -08:00
|
|
|
test('flex_direction_row_reverse_inner_pos_left', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPosition(Edge.Left, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_pos_right', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPosition(Edge.Right, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_pos_top', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPosition(Edge.Top, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_pos_bottom', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPosition(Edge.Bottom, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test.skip('flex_direction_row_reverse_inner_pos_start', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPosition(Edge.Start, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test.skip('flex_direction_row_reverse_inner_pos_end', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPosition(Edge.End, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_margin_left', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setMargin(Edge.Left, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_margin_right', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setMargin(Edge.Right, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_margin_top', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setMargin(Edge.Top, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_margin_bottom', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setMargin(Edge.Bottom, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_marign_start', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setMargin(Edge.Start, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_margin_end', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setMargin(Edge.End, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_border_left', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setBorder(Edge.Left, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_border_right', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setBorder(Edge.Right, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_border_top', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setBorder(Edge.Top, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_border_bottom', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setBorder(Edge.Bottom, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_border_start', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setBorder(Edge.Left, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_border_end', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setBorder(Edge.Right, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_padding_left', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPadding(Edge.Left, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_padding_right', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPadding(Edge.Right, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_padding_top', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPadding(Edge.Top, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_col_reverse_inner_padding_bottom', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.ColumnReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPadding(Edge.Bottom, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(0);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(100);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(0);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_padding_start', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPadding(Edge.Start, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
test('flex_direction_row_reverse_inner_padding_end', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(100);
|
|
|
|
root.setHeight(100);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.RowReverse);
|
|
|
|
root_child0.setWidth(100);
|
|
|
|
root_child0.setHeight(100);
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0_child0.setPositionType(PositionType.Absolute);
|
|
|
|
root_child0_child0.setPadding(Edge.End, 10);
|
|
|
|
root_child0_child0.setWidth(10);
|
|
|
|
root_child0_child0.setHeight(10);
|
|
|
|
root_child0.insertChild(root_child0_child0, 0);
|
|
|
|
|
|
|
|
const root_child0_child1 = Yoga.Node.create(config);
|
|
|
|
root_child0_child1.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child1, 1);
|
|
|
|
|
|
|
|
const root_child0_child2 = Yoga.Node.create(config);
|
|
|
|
root_child0_child2.setWidth(10);
|
|
|
|
root_child0.insertChild(root_child0_child2, 2);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(90);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(80);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(100);
|
|
|
|
expect(root.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child0.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child0.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child0.getComputedHeight()).toBe(10);
|
|
|
|
|
|
|
|
expect(root_child0_child1.getComputedLeft()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child1.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child1.getComputedHeight()).toBe(100);
|
|
|
|
|
|
|
|
expect(root_child0_child2.getComputedLeft()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedTop()).toBe(0);
|
|
|
|
expect(root_child0_child2.getComputedWidth()).toBe(10);
|
|
|
|
expect(root_child0_child2.getComputedHeight()).toBe(100);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|
2024-06-10 18:25:19 -07:00
|
|
|
test('flex_direction_alternating_with_percent', () => {
|
|
|
|
const config = Yoga.Config.create();
|
|
|
|
let root;
|
|
|
|
|
|
|
|
try {
|
|
|
|
root = Yoga.Node.create(config);
|
|
|
|
root.setPositionType(PositionType.Absolute);
|
|
|
|
root.setWidth(200);
|
|
|
|
root.setHeight(300);
|
|
|
|
|
|
|
|
const root_child0 = Yoga.Node.create(config);
|
|
|
|
root_child0.setFlexDirection(FlexDirection.Row);
|
|
|
|
root_child0.setPosition(Edge.Left, "10%");
|
|
|
|
root_child0.setPosition(Edge.Top, "10%");
|
|
|
|
root_child0.setWidth("50%");
|
|
|
|
root_child0.setHeight("50%");
|
|
|
|
root.insertChild(root_child0, 0);
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.LTR);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(200);
|
|
|
|
expect(root.getComputedHeight()).toBe(300);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(20);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(30);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(150);
|
|
|
|
|
|
|
|
root.calculateLayout(undefined, undefined, Direction.RTL);
|
|
|
|
|
|
|
|
expect(root.getComputedLeft()).toBe(0);
|
|
|
|
expect(root.getComputedTop()).toBe(0);
|
|
|
|
expect(root.getComputedWidth()).toBe(200);
|
|
|
|
expect(root.getComputedHeight()).toBe(300);
|
|
|
|
|
|
|
|
expect(root_child0.getComputedLeft()).toBe(120);
|
|
|
|
expect(root_child0.getComputedTop()).toBe(30);
|
|
|
|
expect(root_child0.getComputedWidth()).toBe(100);
|
|
|
|
expect(root_child0.getComputedHeight()).toBe(150);
|
|
|
|
} finally {
|
|
|
|
if (typeof root !== 'undefined') {
|
|
|
|
root.freeRecursive();
|
|
|
|
}
|
|
|
|
|
|
|
|
config.free();
|
|
|
|
}
|
|
|
|
});
|