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
Generates only those numpy dtypes which xarray can handle. |
|
Generates arbitrary string names for dimensions / variables. |
|
|
Generates an arbitrary list of valid dimension names. |
|
Generates an arbitrary mapping from dimension names to lengths. |
Generates arbitrary valid attributes dictionaries for xarray objects. |
|
|
Generates arbitrary xarray.Variable objects. |
|
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 (jýļív: 2)> Size: 16B
array([ 27, 1800051425], dtype=uint64)
Attributes:
ţIŜĔø: False
:
ĥŽŚ: [b'\xe5Q']
ŠÕ: [b'\xa8']
śóžoĢ:
Ľþś: ['"ÍJ@X\x98\U0004a405\U000b7a5cö¾']
ijeĶþ: ÁÐſſĿ
Åû2Êķ: [b'\x17>"\xbe\xec\xf0c']
8žſõŬ: None
cupy: True
real: None
In [4]: xrst.variables().example()
Out[4]:
<xarray.Variable (ſżŮžu: 6, Z: 6)> Size: 36B
array([[ 63, 33, 33, 33, 100, 48],
[ 33, 33, 33, 33, 33, 33],
[ 33, 33, 37, 33, 33, 33],
[ 33, 33, 33, 19, 33, 33],
[ 33, 33, 33, 33, -55, 33],
[ 33, 33, 33, 33, 33, 33]], shape=(6, 6), dtype=int8)
Attributes:
: True
ſmđž: False
ŚNļ: None
ĜŻñ:
ë: [[b'nA\xaa\xb1\x88 \x7f\xe4\xf2\xce' b'Z~']]
čBWgū: 8R
In [5]: xrst.variables().example()
Out[5]:
<xarray.Variable (0: 1)> Size: 8B
array([0.+0.j], dtype=complex64)
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 (Ď: 2, áŜëĔ: 3, ʼn: 1)> Size: 96B
array([[[-4.749e+016+4.941e-324j],
[-6.632e+016+2.968e+301j],
[-8.219e+243-8.843e+014j]],
[[-4.716e+016+1.308e+016j],
[ 5.817e+016-5.459e+016j],
[ inf+6.256e+103j]]])
Attributes:
: {'Êiſ': None, '': False, 'ĭņ': array([''], dtype='<U13'), 'ĤÒ':...
Ŧ: {'': None, 'ß': None, '5İ': None, 'ĒſūÇĞ': False}
hž: {'ĆÐĶ': '', 'ĭÔ': None, 'ÍXēŖ': array([['ë£kz'],\n ['C\U0...
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: 3, y: 1)> Size: 24B
array([[ 128],
[ 5509441604533886533],
[-9223372036854737047]])
Attributes:
ōż: [b'']
Ïą: None
ĺ: p
Ař8Ņ: [b'' b'']
Ŗr: [b'\xfdc\x15']
żĩÖťã: False
lČĬ: [b'\x96M\xbbd\xd2' b'8|@\xe9\xe7\xbc\xc6\xfcXO`\xe38']
ð3ĂÖ: False
lñeOa: True
COM1: False
ŕXJ: None
Û: [['\x92' '']\n ['' 'à\U000e98a8']]
(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([[ -78, 100, -128],
[ 90, -78, 88]], dtype=int8)
Attributes:
: None
YÕŷğ: False
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 (àG: 1, ż9ķž: 5, Īo9: 3)> Size: 15B
array([[[131, 44, 128],
[225, 109, 96],
[207, 40, 149],
[ 52, 35, 195],
[203, 90, 238]]], shape=(1, 5, 3), dtype=uint8)
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': 3, 'z': 2}
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: 128B
array([[ 5.131e+016-1.175e-038j, 2.852e+148+3.687e+016j, 6.106e+130-3.767e+020j,
6.033e+016+3.144e+016j],
[ 4.104e+016+8.000e-001j, -1.478e-009+1.950e-295j, -1.401e-045 +nanj,
6.077e+098+4.057e+277j]])
Attributes:
Gýrt: {'żxnŊż': {}}
In [18]: special_variables.example()
Out[18]:
<xarray.Variable (x: 2, y: 4)> Size: 8B
array([[ 86, 115, 220, 112],
[225, 189, 222, 208]], dtype=uint8)
Attributes:
žŲ: None
ijš: [[1566782138]]
: ['' ';']
áſ: SëPŻĨ
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 (0: 1)> Size: 0B
<COO: shape=(1,), dtype=int8, nnz=0, fill_value=0>
In [23]: sparse_variables.example()
Out[23]:
<xarray.Variable (žOëřĭ: 2, Żſī: 2)> Size: 36B
<COO: shape=(2, 2), dtype=float16, nnz=2, fill_value=0.0>
Attributes:
õļ: {'ŊIż': '', '': False}
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 (ý: 2)> Size: 32B
<COO: shape=(2,), dtype=float64, nnz=2, fill_value=0.0>
Attributes:
Ċ1žŷ: 1ĚĴxħ
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]: import numpy as xp # compatible in numpy 2.0
# use `import numpy.array_api as xp` in numpy>=1.23,<2.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 (ſŽįł: 2, EìÈöm: 3, sËč: 4)> Size: 24B
array([[[ True, False, True, True],
[ True, True, True, True],
[False, True, False, True]],
[[ True, False, True, True],
[False, True, True, True],
[False, False, True, True]]], shape=(2, 3, 4))
Attributes:
: ŗżæſ
û: None
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]: ['y', 'z']
In [35]: xrst.unique_subset_of(dims).example()
Out[35]: ['y']
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]: {'z': 4, 'x': 2}
In [38]: xrst.unique_subset_of(dim_sizes).example()
Out[38]: {'x': 2}
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)