# text-rendering-tests **Repository Path**: mirrors_unicode-org/text-rendering-tests ## Basic Information - **Project Name**: text-rendering-tests - **Description**: Unicode’s test suite for text rendering engines - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-12-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Text rendering tests This is a test suite for text rendering engines. It is not easy to correctly display text, so we founded this project to help implementations to get this right. ```bash $ brew install cmake ninja npm rust $ git clone --recursive https://github.com/unicode-org/text-rendering-tests.git $ cd text-rendering-tests $ for engine in CoreText FreeStack TehreerStack fontkit OpenType.js Allsorts ; do python3 check.py --engine=$engine --output=reports/$engine.html ; done ``` ## Supported Platforms Currently, the test suite supports seven OpenType implementations: * With `--engine=FreeStack`, the tests are run on the free/libre open-source text rendering stack with [FreeType](https://www.freetype.org/), [HarfBuzz](https://www.freedesktop.org/wiki/Software/HarfBuzz/), [FriBidi](https://www.fribidi.org/), and [Raqm](https://github.com/HOST-Oman/libraqm). These libraries are used by Linux, Android, ChromeOS, and many other systems. — [Test report for FreeStack](https://rawgit.com/unicode-org/text-rendering-tests/master/reports/FreeStack.html). * With `--engine=CoreText`, the tests are run on Apple’s CoreText. This option will work only if you run the test suite on MacOS X. — [Test report for CoreText](https://rawgit.com/unicode-org/text-rendering-tests/master/reports/CoreText.html). * With `--engine=TehreerStack`, the tests are run on an open-source text rendering stack consisting of [FreeType](https://www.freetype.org/), [SheenBidi](https://github.com/Tehreer/SheenBidi), and [SheenFigure](https://github.com/Tehreer/SheenFigure). — [Test report for TehreerStack](https://rawgit.com/unicode-org/text-rendering-tests/master/reports/TehreerStack.html). * With `--engine=fontkit`, the tests are run on [fontkit](http://github.com/devongovett/fontkit), a JavaScript font engine. — [Test report for fontkit](https://rawgit.com/unicode-org/text-rendering-tests/master/reports/fontkit.html). * With `--engine=OpenType.js`, the tests are run using [OpenType.js](https://github.com/nodebox/opentype.js), another JavaScript font engine. — [Test report for OpenType.js](https://rawgit.com/unicode-org/text-rendering-tests/master/reports/OpenType.js.html). * With `--engine=Allsorts`, the tests are run using [Allsorts](https://github.com/yeslogic/allsorts), a parsing and shaping engine implemented in [Rust](https://www.rust-lang.org/). — [Test report for Allsorts](https://rawgit.com/unicode-org/text-rendering-tests/master/reports/Allsorts.html). * With `--engine=Swash`, the tests are run using [Swash](https://github.com/dfrg/swash), a parsing, shaping, and scaling/rendering engine also implemented in [Rust](https://www.rust-lang.org/). — [Test report for Swash](https://rawgit.com/unicode-org/text-rendering-tests/master/reports/Swash.html). It’s trivial to test other implementations; simply write a small wrapper tool: - For the [Go font library](https://godoc.org/golang.org/x/image/font/sfnt), see [here](https://github.com/golang/go/issues/20208). - For the [Rust font library](https://github.com/google/font-rs), see [here](https://github.com/google/font-rs/issues/17). You may be able to reuse (or factor out) the argument parsing and SVG-writing parts of the [Swash test harness](./src/fonttest-swash-harness/) as a starting point. ## Test Cases The test cases are defined in the [testcases](testcases/) directory. It contains HTML snippets which describe each test, and define the rendering parameters together with the expected result. For each test case, the `check.py` script parses the HTML snippet to extract the rendering parameters. Then, it runs a sub-process (written in C++, Objective C, Rust or JavaScript depending on the tested implementation) that writes the observed rendering in SVG format to Standard Output. Finally, the script checks whether the expected rendering matches the observed result. Currently, “matching” is implemented by iterating over SVG paths, allowing for maximally 1 font design unit of difference. ### Copyright & Licenses Copyright © 2016-2024 Unicode, Inc. Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the United States and other countries. A CLA is required to contribute to this project - please refer to the [CONTRIBUTING.md](https://github.com/unicode-org/.github/blob/main/.github/CONTRIBUTING.md) file (or start a Pull Request) for more information. The contents of this repository are governed by the Unicode [Terms of Use](https://www.unicode.org/copyright.html) and are released under [LICENSE](./LICENSE).