|
1
|
|
|
# Copyright (c) 2008-2016 MetPy Developers. |
|
2
|
|
|
# Distributed under the terms of the BSD 3-Clause License. |
|
3
|
|
|
# SPDX-License-Identifier: BSD-3-Clause |
|
4
|
|
|
"""Tests for the `_util` module.""" |
|
5
|
|
|
|
|
6
|
|
|
from datetime import datetime |
|
7
|
|
|
|
|
8
|
|
|
import matplotlib |
|
9
|
|
|
import matplotlib.pyplot as plt |
|
10
|
|
|
import pytest |
|
11
|
|
|
|
|
12
|
|
|
from metpy.plots import add_logo, add_timestamp |
|
13
|
|
|
# Fixture to make sure we have the right backend |
|
14
|
|
|
from metpy.testing import set_agg_backend # noqa: F401 |
|
15
|
|
|
|
|
16
|
|
|
MPL_VERSION = matplotlib.__version__[:3] |
|
17
|
|
|
|
|
18
|
|
|
|
|
19
|
|
|
@pytest.mark.mpl_image_compare(tolerance={'1.4': 5.58}.get(MPL_VERSION, 0.01), |
|
20
|
|
|
remove_text=True) |
|
21
|
|
|
def test_add_timestamp(): |
|
22
|
|
|
"""Test adding a timestamp to an axes object.""" |
|
23
|
|
|
fig = plt.figure(figsize=(9, 9)) |
|
24
|
|
|
ax = plt.subplot(1, 1, 1) |
|
25
|
|
|
add_timestamp(ax, time=datetime(2017, 1, 1)) |
|
26
|
|
|
return fig |
|
27
|
|
|
|
|
28
|
|
|
|
|
29
|
|
|
@pytest.mark.mpl_image_compare(tolerance={'1.4': 0.004}.get(MPL_VERSION, 0.01), |
|
30
|
|
|
remove_text=True) |
|
31
|
|
|
def test_add_logo_small(): |
|
32
|
|
|
"""Test adding a logo to a figure.""" |
|
33
|
|
|
fig = plt.figure(figsize=(9, 9)) |
|
34
|
|
|
add_logo(fig) |
|
35
|
|
|
return fig |
|
36
|
|
|
|
|
37
|
|
|
|
|
38
|
|
|
@pytest.mark.mpl_image_compare(tolerance={'1.4': 0.004}.get(MPL_VERSION, 0.01), |
|
39
|
|
|
remove_text=True) |
|
40
|
|
|
def test_add_logo_large(): |
|
41
|
|
|
"""Test adding a logo to a figure.""" |
|
42
|
|
|
fig = plt.figure(figsize=(9, 9)) |
|
43
|
|
|
add_logo(fig, size='large') |
|
44
|
|
|
return fig |
|
45
|
|
|
|
|
46
|
|
|
|
|
47
|
|
|
def test_add_logo_invalid_size(): |
|
48
|
|
|
"""Test adding a logo to a figure with an invalid size specification.""" |
|
49
|
|
|
fig = plt.figure(figsize=(9, 9)) |
|
50
|
|
|
with pytest.raises(ValueError): |
|
51
|
|
|
add_logo(fig, size='jumbo') |
|
52
|
|
|
|