-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_accessor.py
More file actions
403 lines (345 loc) · 14.7 KB
/
test_accessor.py
File metadata and controls
403 lines (345 loc) · 14.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
"""Tests for the DataArray plotting accessor."""
from __future__ import annotations
import numpy as np
import pandas as pd
import plotly.graph_objects as go
import pytest
import xarray as xr
import xarray_plotly # noqa: F401 - registers accessor
from xarray_plotly import xpx
class TestXpxFunction:
"""Tests for the xpx() function."""
def test_xpx_returns_dataarray_accessor(self) -> None:
"""Test that xpx() returns a DataArrayPlotlyAccessor for DataArray."""
da = xr.DataArray(np.random.rand(10), dims=["time"])
accessor = xpx(da)
assert hasattr(accessor, "line")
assert hasattr(accessor, "bar")
assert hasattr(accessor, "scatter")
assert hasattr(accessor, "imshow")
def test_xpx_returns_dataset_accessor(self) -> None:
"""Test that xpx() returns a DatasetPlotlyAccessor for Dataset."""
ds = xr.Dataset({"temp": (["time"], np.random.rand(10))})
accessor = xpx(ds)
assert hasattr(accessor, "line")
assert hasattr(accessor, "bar")
assert hasattr(accessor, "scatter")
# Dataset accessor should not have imshow
assert not hasattr(accessor, "imshow")
def test_xpx_dataarray_equivalent_to_accessor(self) -> None:
"""Test that xpx(da).line() works the same as da.plotly.line()."""
da = xr.DataArray(
np.random.rand(10, 3),
dims=["time", "city"],
coords={"time": np.arange(10), "city": ["A", "B", "C"]},
name="test",
)
fig1 = xpx(da).line()
fig2 = da.plotly.line()
assert isinstance(fig1, go.Figure)
assert isinstance(fig2, go.Figure)
def test_xpx_dataset_equivalent_to_accessor(self) -> None:
"""Test that xpx(ds).line() works the same as ds.plotly.line()."""
ds = xr.Dataset(
{
"temperature": (["time", "city"], np.random.rand(10, 3)),
"humidity": (["time", "city"], np.random.rand(10, 3)),
}
)
fig1 = xpx(ds).line()
fig2 = ds.plotly.line()
assert isinstance(fig1, go.Figure)
assert isinstance(fig2, go.Figure)
class TestDataArrayPxplot:
"""Tests for DataArray.plotly accessor."""
@pytest.fixture(autouse=True)
def setup(self) -> None:
"""Set up test data."""
self.da_1d = xr.DataArray(
np.random.rand(10),
dims=["time"],
coords={"time": pd.date_range("2020", periods=10)},
name="temperature",
)
self.da_2d = xr.DataArray(
np.random.rand(10, 3),
dims=["time", "city"],
coords={
"time": pd.date_range("2020", periods=10),
"city": ["NYC", "LA", "Chicago"],
},
name="temperature",
)
self.da_3d = xr.DataArray(
np.random.rand(10, 3, 2),
dims=["time", "city", "scenario"],
coords={
"time": pd.date_range("2020", periods=10),
"city": ["NYC", "LA", "Chicago"],
"scenario": ["baseline", "warming"],
},
name="temperature",
)
self.da_unnamed = xr.DataArray(np.random.rand(5, 3), dims=["x", "y"])
def test_accessor_exists(self) -> None:
"""Test that plotly accessor is available on DataArray."""
assert hasattr(self.da_2d, "plotly")
assert hasattr(self.da_2d.plotly, "line")
assert hasattr(self.da_2d.plotly, "bar")
assert hasattr(self.da_2d.plotly, "area")
assert hasattr(self.da_2d.plotly, "scatter")
assert hasattr(self.da_2d.plotly, "box")
assert hasattr(self.da_2d.plotly, "imshow")
def test_line_returns_figure(self) -> None:
"""Test that line() returns a Plotly Figure."""
fig = self.da_2d.plotly.line()
assert isinstance(fig, go.Figure)
def test_line_1d(self) -> None:
"""Test line plot with 1D data."""
fig = self.da_1d.plotly.line()
assert isinstance(fig, go.Figure)
assert len(fig.data) >= 1
def test_line_2d(self) -> None:
"""Test line plot with 2D data."""
fig = self.da_2d.plotly.line()
assert isinstance(fig, go.Figure)
assert len(fig.data) >= 1
def test_line_explicit_assignment(self) -> None:
"""Test line plot with explicit dimension assignment."""
fig = self.da_2d.plotly.line(x="time", color="city")
assert isinstance(fig, go.Figure)
def test_line_skip_slot(self) -> None:
"""Test line plot with skipped slot."""
fig = self.da_3d.plotly.line(color=None)
assert isinstance(fig, go.Figure)
def test_line_px_kwargs(self) -> None:
"""Test that px_kwargs are passed through."""
fig = self.da_2d.plotly.line(title="My Plot")
assert fig.layout.title.text == "My Plot"
def test_bar_returns_figure(self) -> None:
"""Test that bar() returns a Plotly Figure."""
fig = self.da_2d.plotly.bar()
assert isinstance(fig, go.Figure)
def test_area_returns_figure(self) -> None:
"""Test that area() returns a Plotly Figure."""
fig = self.da_2d.plotly.area()
assert isinstance(fig, go.Figure)
def test_fast_bar_returns_figure(self) -> None:
"""Test that fast_bar() returns a Plotly Figure."""
fig = self.da_2d.plotly.fast_bar()
assert isinstance(fig, go.Figure)
def test_fast_bar_trace_styling(self) -> None:
"""Test that fast_bar applies correct trace styling."""
fig = self.da_2d.plotly.fast_bar()
for trace in fig.data:
assert trace.line.width == 0
assert trace.line.shape == "hv"
assert trace.fillcolor is not None
def test_fast_bar_animation_frames(self) -> None:
"""Test that fast_bar styling applies to animation frames."""
da = xr.DataArray(
np.random.rand(5, 3, 4),
dims=["time", "city", "year"],
)
fig = da.plotly.fast_bar(animation_frame="year")
assert len(fig.frames) > 0
for frame in fig.frames:
for trace in frame.data:
assert trace.line.width == 0
assert trace.line.shape == "hv"
assert trace.fillcolor is not None
def test_fast_bar_mixed_signs_dashed(self) -> None:
"""Test that fast_bar shows mixed-sign traces as dashed lines."""
da = xr.DataArray(
np.array([[50, -30], [-40, 60]]), # Both columns have mixed signs
dims=["time", "category"],
)
fig = da.plotly.fast_bar()
# Mixed traces should have no stacking and dashed lines
for trace in fig.data:
assert trace.stackgroup is None
assert trace.line.dash == "dash"
def test_fast_bar_separate_sign_columns(self) -> None:
"""Test that fast_bar uses separate stackgroups when columns have different signs."""
da = xr.DataArray(
np.array([[50, -30], [60, -40]]), # Column 0 positive, column 1 negative
dims=["time", "category"],
)
fig = da.plotly.fast_bar()
stackgroups = {trace.stackgroup for trace in fig.data}
assert "positive" in stackgroups
assert "negative" in stackgroups
def test_fast_bar_same_sign_stacks(self) -> None:
"""Test that fast_bar uses stacking for same-sign data."""
da = xr.DataArray(
np.random.rand(5, 3) * 100,
dims=["time", "category"],
)
fig = da.plotly.fast_bar()
for trace in fig.data:
assert trace.stackgroup is not None
def test_scatter_returns_figure(self) -> None:
"""Test that scatter() returns a Plotly Figure."""
fig = self.da_2d.plotly.scatter()
assert isinstance(fig, go.Figure)
def test_scatter_dim_vs_dim(self) -> None:
"""Test scatter plot with dimension vs dimension, colored by values."""
da = xr.DataArray(
np.random.rand(5, 10),
dims=["lat", "lon"],
coords={"lat": np.arange(5), "lon": np.arange(10)},
name="temperature",
)
fig = da.plotly.scatter(x="lon", y="lat", color="value")
assert isinstance(fig, go.Figure)
def test_box_returns_figure(self) -> None:
"""Test that box() returns a Plotly Figure."""
fig = self.da_2d.plotly.box()
assert isinstance(fig, go.Figure)
def test_box_with_aggregation(self) -> None:
"""Test box plot with unassigned dimensions aggregated."""
fig = self.da_2d.plotly.box(x="city", color=None)
assert isinstance(fig, go.Figure)
def test_imshow_returns_figure(self) -> None:
"""Test that imshow() returns a Plotly Figure."""
fig = self.da_2d.plotly.imshow()
assert isinstance(fig, go.Figure)
def test_imshow_transpose(self) -> None:
"""Test that imshow correctly transposes based on x and y."""
da = xr.DataArray(
np.random.rand(10, 20),
dims=["lat", "lon"],
coords={"lat": np.arange(10), "lon": np.arange(20)},
)
fig = da.plotly.imshow()
assert isinstance(fig, go.Figure)
fig = da.plotly.imshow(x="lon", y="lat")
assert isinstance(fig, go.Figure)
def test_unnamed_dataarray(self) -> None:
"""Test plotting unnamed DataArray."""
fig = self.da_unnamed.plotly.line()
assert isinstance(fig, go.Figure)
def test_unassigned_dims_error(self) -> None:
"""Test that too many dimensions raises an error."""
da_8d = xr.DataArray(np.random.rand(2, 2, 2, 2, 2, 2, 2, 2), dims=list("abcdefgh"))
with pytest.raises(ValueError, match="Unassigned dimension"):
da_8d.plotly.line()
class TestLabelsAndMetadata:
"""Tests for label extraction from xarray attributes."""
@pytest.fixture(autouse=True)
def setup(self) -> None:
"""Set up test data with metadata."""
self.da = xr.DataArray(
np.random.rand(10, 3),
dims=["time", "station"],
coords={
"time": pd.date_range("2020", periods=10),
"station": ["A", "B", "C"],
},
name="temperature",
attrs={
"long_name": "Air Temperature",
"units": "K",
},
)
self.da.coords["time"].attrs = {
"long_name": "Time",
"units": "days since 2020-01-01",
}
def test_value_label_from_attrs(self) -> None:
"""Test that value labels are extracted from attributes."""
fig = self.da.plotly.line()
assert isinstance(fig, go.Figure)
class TestDatasetPlotlyAccessor:
"""Tests for Dataset.plotly accessor."""
@pytest.fixture(autouse=True)
def setup(self) -> None:
"""Set up test data."""
self.ds = xr.Dataset(
{
"temperature": (["time", "city"], np.random.rand(10, 3)),
"humidity": (["time", "city"], np.random.rand(10, 3)),
},
coords={
"time": pd.date_range("2020", periods=10),
"city": ["NYC", "LA", "Chicago"],
},
)
def test_accessor_exists(self) -> None:
"""Test that plotly accessor is available on Dataset."""
assert hasattr(self.ds, "plotly")
assert hasattr(self.ds.plotly, "line")
assert hasattr(self.ds.plotly, "bar")
assert hasattr(self.ds.plotly, "area")
assert hasattr(self.ds.plotly, "scatter")
assert hasattr(self.ds.plotly, "box")
def test_line_all_variables(self) -> None:
"""Test line plot with all variables."""
fig = self.ds.plotly.line()
assert isinstance(fig, go.Figure)
def test_line_single_variable(self) -> None:
"""Test line plot with single variable."""
fig = self.ds.plotly.line(var="temperature")
assert isinstance(fig, go.Figure)
def test_line_variable_as_facet(self) -> None:
"""Test line plot with variable as facet."""
fig = self.ds.plotly.line(facet_col="variable")
assert isinstance(fig, go.Figure)
def test_bar_all_variables(self) -> None:
"""Test bar plot with all variables."""
fig = self.ds.plotly.bar()
assert isinstance(fig, go.Figure)
def test_area_all_variables(self) -> None:
"""Test area plot with all variables."""
fig = self.ds.plotly.area()
assert isinstance(fig, go.Figure)
def test_scatter_all_variables(self) -> None:
"""Test scatter plot with all variables."""
fig = self.ds.plotly.scatter()
assert isinstance(fig, go.Figure)
def test_box_all_variables(self) -> None:
"""Test box plot with all variables."""
fig = self.ds.plotly.box()
assert isinstance(fig, go.Figure)
class TestImshowBounds:
"""Tests for imshow global bounds and robust mode."""
def test_imshow_global_bounds(self) -> None:
"""Test that imshow uses global min/max by default."""
da = xr.DataArray(
np.array([[[1, 2], [3, 4]], [[5, 6], [7, 100]]]),
dims=["time", "y", "x"],
)
fig = da.plotly.imshow(animation_frame="time")
# Check coloraxis for zmin/zmax (plotly stores them there)
coloraxis = fig.layout.coloraxis
assert coloraxis.cmin == 1.0
assert coloraxis.cmax == 100.0
def test_imshow_robust_bounds(self) -> None:
"""Test that robust=True uses percentile-based bounds."""
# Create data with outlier
data = np.random.rand(10, 20) * 100
data[0, 0] = 10000 # extreme outlier
da = xr.DataArray(data, dims=["y", "x"])
fig = da.plotly.imshow(robust=True)
# With robust=True, cmax should be much less than the outlier
coloraxis = fig.layout.coloraxis
assert coloraxis.cmax < 10000
assert coloraxis.cmax < 200 # Should be around 98th percentile (~98)
def test_imshow_user_zmin_zmax_override(self) -> None:
"""Test that user-provided zmin/zmax overrides auto bounds."""
da = xr.DataArray(np.random.rand(10, 20) * 100, dims=["y", "x"])
fig = da.plotly.imshow(zmin=0, zmax=50)
coloraxis = fig.layout.coloraxis
assert coloraxis.cmin == 0
assert coloraxis.cmax == 50
def test_imshow_animation_consistent_bounds(self) -> None:
"""Test that animation frames have consistent color bounds."""
da = xr.DataArray(
np.array([[[0, 10], [20, 30]], [[40, 50], [60, 70]]]),
dims=["time", "y", "x"],
)
fig = da.plotly.imshow(animation_frame="time")
# All frames should use global min (0) and max (70)
coloraxis = fig.layout.coloraxis
assert coloraxis.cmin == 0.0
assert coloraxis.cmax == 70.0