🍾 Xarray is now 10 years old! 🎉

Testing your code#

Hypothesis testing#

Note

Testing with hypothesis is a fairly advanced topic. Before reading this section it is recommended that you take a look at our guide to xarray’s Data Structures, are familiar with conventional unit testing in pytest, and have seen the hypothesis library documentation.

The hypothesis library is a powerful tool for property-based testing. Instead of writing tests for one example at a time, it allows you to write tests parameterized by a source of many dynamically generated examples. For example you might have written a test which you wish to be parameterized by the set of all possible integers via hypothesis.strategies.integers().

Property-based testing is extremely powerful, because (unlike more conventional example-based testing) it can find bugs that you did not even think to look for!

Strategies#

Each source of examples is called a “strategy”, and xarray provides a range of custom strategies which produce xarray data structures containing arbitrary data. You can use these to efficiently test downstream code, quickly ensuring that your code can handle xarray objects of all possible structures and contents.

These strategies are accessible in the xarray.testing.strategies module, which provides

testing.strategies.supported_dtypes()

Generates only those numpy dtypes which xarray can handle.

testing.strategies.names()

Generates arbitrary string names for dimensions / variables.

testing.strategies.dimension_names(*[, ...])

Generates an arbitrary list of valid dimension names.

testing.strategies.dimension_sizes(*[, ...])

Generates an arbitrary mapping from dimension names to lengths.

testing.strategies.attrs()

Generates arbitrary valid attributes dictionaries for xarray objects.

testing.strategies.variables(*[, ...])

Generates arbitrary xarray.Variable objects.

testing.strategies.unique_subset_of(objs, *)

Return a strategy which generates a unique subset of the given objects.

These build upon the numpy and array API strategies offered in hypothesis.extra.numpy and hypothesis.extra.array_api:

In [1]: import hypothesis.extra.numpy as npst

Generating Examples#

To see an example of what each of these strategies might produce, you can call one followed by the .example() method, which is a general hypothesis method valid for all strategies.

In [2]: import xarray.testing.strategies as xrst

In [3]: xrst.variables().example()
Out[3]: 
<xarray.Variable (ĀEæŃŞ: 1, Ĺ: 3, Ïž: 2)> Size: 96B
array([[[        inf      +infj, -7.160e+016      +infj],
        [ 1.000e-005      -infj,  4.941e-324+3.403e+38j],
        [        nan      -infj, -6.852e+016      +nanj]]])
Attributes:
    ĪîÐſg:    [[41302]]
    :         
    x:        True
    đňčŎě:    None
    BŚœwï:    None

In [4]: xrst.variables().example()
Out[4]: 
<xarray.Variable (0: 1)> Size: 1B
array([0], dtype=int8)

In [5]: xrst.variables().example()
Out[5]: 
<xarray.Variable (50Żž: 2, 30: 1, 0: 4)> Size: 32B
array([[[2.87e+14, 2.87e+14, 2.87e+14, 2.87e+14]],

       [[2.87e+14, 2.87e+14, 2.87e+14, 2.87e+14]]], dtype='>f4')
Attributes:
    Ż:        {'0': False, 'Żž1': None}

You can see that calling .example() multiple times will generate different examples, giving you an idea of the wide range of data that the xarray strategies can generate.

In your tests however you should not use .example() - instead you should parameterize your tests with the hypothesis.given() decorator:

In [6]: from hypothesis import given
In [7]: @given(xrst.variables())
   ...: def test_function_that_acts_on_variables(var):
   ...:     assert func(var) == ...
   ...: 

Chaining Strategies#

Xarray’s strategies can accept other strategies as arguments, allowing you to customise the contents of the generated examples.

# generate a Variable containing an array with a complex number dtype, but all other details still arbitrary
In [8]: from hypothesis.extra.numpy import complex_number_dtypes

In [9]: xrst.variables(dtype=complex_number_dtypes()).example()
Out[9]: 
<xarray.Variable (1213į: 4, 11: 3)> Size: 192B
array([[ 6.733e+004-2.826e+14j,  2.000e+000+1.000e+07j,  6.733e+004-2.826e+14j],
       [        nan+9.031e+10j,  6.733e+004-2.826e+14j,  1.222e-165+6.554e+11j],
       [ 6.733e+004-2.826e+14j,  6.733e+004-2.826e+14j,  6.733e+004-2.826e+14j],
       [-2.220e-016+1.031e+11j,  6.733e+004-2.826e+14j,  6.733e+004-2.826e+14j]], dtype='>c16')

This also works with custom strategies, or strategies defined in other packages. For example you could imagine creating a chunks strategy to specify particular chunking patterns for a dask-backed array.

Fixing Arguments#

If you want to fix one aspect of the data structure, whilst allowing variation in the generated examples over all other aspects, then use hypothesis.strategies.just().

In [10]: import hypothesis.strategies as st

# Generates only variable objects with dimensions ["x", "y"]
In [11]: xrst.variables(dims=st.just(["x", "y"])).example()
Out[11]: 
<xarray.Variable (x: 1, y: 1)> Size: 1B
array([[82]], dtype=uint8)
Attributes:
    ĕâžĔż:    {}

(This is technically another example of chaining strategies - hypothesis.strategies.just() is simply a special strategy that just contains a single example.)

To fix the length of dimensions you can instead pass dims as a mapping of dimension names to lengths (i.e. following xarray objects’ .sizes() property), e.g.

# Generates only variables with dimensions ["x", "y"], of lengths 2 & 3 respectively
In [12]: xrst.variables(dims=st.just({"x": 2, "y": 3})).example()
Out[12]: 
<xarray.Variable (x: 2, y: 3)> Size: 6B
array([[0, 5, 5],
       [7, 3, 7]], dtype=uint8)

You can also use this to specify that you want examples which are missing some part of the data structure, for instance

# Generates a Variable with no attributes
In [13]: xrst.variables(attrs=st.just({})).example()
Out[13]: 
<xarray.Variable (ŗW߯j: 3, ŻłżÜč: 4)> Size: 96B
array([[1, 1, 1, 1],
       [1, 1, 1, 1],
       [1, 1, 1, 1]])

Through a combination of chaining strategies and fixing arguments, you can specify quite complicated requirements on the objects your chained strategy will generate.

In [14]: fixed_x_variable_y_maybe_z = st.fixed_dictionaries(
   ....:     {"x": st.just(2), "y": st.integers(3, 4)}, optional={"z": st.just(2)}
   ....: )
   ....: 

In [15]: fixed_x_variable_y_maybe_z.example()
Out[15]: {'x': 2, 'y': 4}

In [16]: special_variables = xrst.variables(dims=fixed_x_variable_y_maybe_z)

In [17]: special_variables.example()
Out[17]: 
<xarray.Variable (x: 2, y: 4)> Size: 64B
array([[ 3.403e+38+0.000e+00j,  3.113e+16+5.250e+16j, -0.000e+00      +infj,
        -1.000e+07+0.000e+00j],
       [       inf+1.000e-05j, -2.000e+00-3.333e-01j,  1.500e+00+6.104e-05j,
        -4.925e+16-1.401e-45j]], dtype=complex64)
Attributes:
    ż3ſĪs:    {'ąąĺ¾ũ': None, 'ůżźŘS': None, '': array([[  1. +0.j, -inf+nanj...
    :         {'': 'ĕ', 'ŴŦöģĀ': False, 'hžžYL': 'ģÍŽŋķ', 'A': 'MH', '³E8ŀž':...

In [18]: special_variables.example()
Out[18]: 
<xarray.Variable (x: 2, y: 3)> Size: 24B
array([[50386, 33054, 51292],
       [33054,    83, 33054]], dtype='>u4')
Attributes:
    :         żżžŨŽ
    żŶ:       None
    HŔѾŜ:    ĹřċŻķ
    N:        [-inf -inf]
    rŶrż:     

Here we have used one of hypothesis’ built-in strategies hypothesis.strategies.fixed_dictionaries() to create a strategy which generates mappings of dimension names to lengths (i.e. the size of the xarray object we want). This particular strategy will always generate an x dimension of length 2, and a y dimension of length either 3 or 4, and will sometimes also generate a z dimension of length 2. By feeding this strategy for dictionaries into the dims argument of xarray’s variables() strategy, we can generate arbitrary Variable objects whose dimensions will always match these specifications.

Generating Duck-type Arrays#

Xarray objects don’t have to wrap numpy arrays, in fact they can wrap any array type which presents the same API as a numpy array (so-called “duck array wrapping”, see wrapping numpy-like arrays).

Imagine we want to write a strategy which generates arbitrary Variable objects, each of which wraps a sparse.COO array instead of a numpy.ndarray. How could we do that? There are two ways:

1. Create a xarray object with numpy data and use the hypothesis’ .map() method to convert the underlying array to a different type:

In [19]: import sparse
In [20]: def convert_to_sparse(var):
   ....:     return var.copy(data=sparse.COO.from_numpy(var.to_numpy()))
   ....: 
In [21]: sparse_variables = xrst.variables(dims=xrst.dimension_names(min_dims=1)).map(
   ....:     convert_to_sparse
   ....: )
   ....: 

In [22]: sparse_variables.example()
Out[22]: 
<xarray.Variable (7: 1)> Size: 16B
<COO: shape=(1,), dtype=complex64, nnz=1, fill_value=0j>
Attributes:
    ž20:      {}
    Ń:        {'Kėſĕ': array([[              14838,                 216],\n  ...

In [23]: sparse_variables.example()
Out[23]: 
<xarray.Variable (Ģè: 4)> Size: 48B
<COO: shape=(4,), dtype=>u4, nnz=4, fill_value=0>
Attributes:
    Íſ:       None
    ùĀžŭń:    True
    :         None
    SĒ:       None
    yĔŽſ¹:    False
    ı:        False
  1. Pass a function which returns a strategy which generates the duck-typed arrays directly to the array_strategy_fn argument of the xarray strategies:

In [24]: def sparse_random_arrays(shape: tuple[int]) -> sparse._coo.core.COO:
   ....:     """Strategy which generates random sparse.COO arrays"""
   ....:     if shape is None:
   ....:         shape = npst.array_shapes()
   ....:     else:
   ....:         shape = st.just(shape)
   ....:     density = st.integers(min_value=0, max_value=1)
   ....:     return st.builds(sparse.random, shape=shape, density=density)
   ....: 

In [25]: def sparse_random_arrays_fn(
   ....:     *, shape: tuple[int, ...], dtype: np.dtype
   ....: ) -> st.SearchStrategy[sparse._coo.core.COO]:
   ....:     return sparse_random_arrays(shape=shape)
   ....: 
In [26]: sparse_random_variables = xrst.variables(
   ....:     array_strategy_fn=sparse_random_arrays_fn, dtype=st.just(np.dtype("float64"))
   ....: )
   ....: 

In [27]: sparse_random_variables.example()
Out[27]: 
<xarray.Variable (ſ3: 6, 1: 5)> Size: 720B
<COO: shape=(6, 5), dtype=float64, nnz=30, fill_value=0.0>
Attributes:
    620Ž:     ĘŸ
    PŰªž:     [False]
    0:        
    :         False
    Xå:       
    ō2Ñŷ:     None
    ž9ŗRų:    True
    ēſŗŭq:    [['-17536621475646-05-04T05:53'            '5368-04-04T23:52']\...
    ŻÓþė:     False
    Žē:       žÔ
    aŻĥŻŽ:    False
    ŘńiÙĭ:    None

Either approach is fine, but one may be more convenient than the other depending on the type of the duck array which you want to wrap.

Compatibility with the Python Array API Standard#

Xarray aims to be compatible with any duck-array type that conforms to the Python Array API Standard (see our docs on Array API Standard support).

Warning

The strategies defined in testing.strategies are not guaranteed to use array API standard-compliant dtypes by default. For example arrays with the dtype np.dtype('float16') may be generated by testing.strategies.variables() (assuming the dtype kwarg was not explicitly passed), despite np.dtype('float16') not being in the array API standard.

If the array type you want to generate has an array API-compliant top-level namespace (e.g. that which is conventionally imported as xp or similar), you can use this neat trick:

In [28]: from numpy import array_api as xp  # available in numpy 1.26.0

In [29]: from hypothesis.extra.array_api import make_strategies_namespace

In [30]: xps = make_strategies_namespace(xp)

In [31]: xp_variables = xrst.variables(
   ....:     array_strategy_fn=xps.arrays,
   ....:     dtype=xps.scalar_dtypes(),
   ....: )
   ....: 

In [32]: xp_variables.example()
Out[32]: 
<xarray.Variable (0: 1)> Size: 16B
Array([0.+0.j], dtype=complex128)

Another array API-compliant duck array library would replace the import, e.g. import cupy as cp instead.

Testing over Subsets of Dimensions#

A common task when testing xarray user code is checking that your function works for all valid input dimensions. We can chain strategies to achieve this, for which the helper strategy unique_subset_of() is useful.

It works for lists of dimension names

In [33]: dims = ["x", "y", "z"]

In [34]: xrst.unique_subset_of(dims).example()
Out[34]: []

In [35]: xrst.unique_subset_of(dims).example()
Out[35]: ['y', 'z', 'x']

as well as for mappings of dimension names to sizes

In [36]: dim_sizes = {"x": 2, "y": 3, "z": 4}

In [37]: xrst.unique_subset_of(dim_sizes).example()
Out[37]: {'y': 3, 'x': 2, 'z': 4}

In [38]: xrst.unique_subset_of(dim_sizes).example()
Out[38]: {'x': 2, 'y': 3, 'z': 4}

This is useful because operations like reductions can be performed over any subset of the xarray object’s dimensions. For example we can write a pytest test that tests that a reduction gives the expected result when applying that reduction along any possible valid subset of the Variable’s dimensions.

import numpy.testing as npt


@given(st.data(), xrst.variables(dims=xrst.dimension_names(min_dims=1)))
def test_mean(data, var):
    """Test that the mean of an xarray Variable is always equal to the mean of the underlying array."""

    # specify arbitrary reduction along at least one dimension
    reduction_dims = data.draw(xrst.unique_subset_of(var.dims, min_size=1))

    # create expected result (using nanmean because arrays with Nans will be generated)
    reduction_axes = tuple(var.get_axis_num(dim) for dim in reduction_dims)
    expected = np.nanmean(var.data, axis=reduction_axes)

    # assert property is always satisfied
    result = var.mean(dim=reduction_dims).data
    npt.assert_equal(expected, result)