icu_testdata crates.io

icu_testdata is a unit testing package for [ICU4X].

The package exposes a DataProvider with stable data useful for unit testing. The data is based on a CLDR tag and a short list of locales that, together, cover a range of scenarios.

The list of locales and the current CLDR tag can be found in Cargo.toml.

The output data can be found in the data subdirectory. There, you will find:

Pointing to custom test data

If you wish to run ICU4X tests with custom test data, you may do so by setting the "ICU4XTESTDATADIR" environment variable:

bash $ ICU4X_TESTDATA_DIR=/path/to/custom/testdata cargo test

Re-generating the data

From the top level directory of the icu4x metapackage, run:

bash $ cargo make testdata

The following commands are also available:

Examples

```rust use std::borrow::Cow; use icuprovider::prelude::*; use iculocid_macros::langid;

let dataprovider = icutestdata::get_provider();

let data: DataPayload = dataprovider .loadpayload(&DataRequest { resourcepath: ResourcePath { key: icuplurals::provider::key::CARDINALV1, options: ResourceOptions { langid: Some(langid!("ru")), variant: None, }, }, }) .unwrap() .takepayload() .unwrap(); assert_eq!(data.get().few, Some(Cow::Borrowed("v = 0 and i % 10 = 2..4 and i % 100 != 12..14"))); ```

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.