forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_backend_gtk3.py
More file actions
29 lines (25 loc) · 1.13 KB
/
test_backend_gtk3.py
File metadata and controls
29 lines (25 loc) · 1.13 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
import os
from matplotlib import pyplot as plt
import pytest
from unittest import mock
@pytest.mark.backend("gtk3agg", skip_on_importerror=True)
def test_save_figure_return():
from gi.repository import Gtk
fig, ax = plt.subplots()
ax.imshow([[1]])
with mock.patch("gi.repository.Gtk.FileFilter") as fileFilter:
filt = fileFilter.return_value
filt.get_name.return_value = "Portable Network Graphics"
with mock.patch("gi.repository.Gtk.FileChooserDialog") as dialogChooser:
dialog = dialogChooser.return_value
dialog.get_filter.return_value = filt
dialog.get_filename.return_value = "foobar.png"
dialog.run.return_value = Gtk.ResponseType.OK
fname = fig.canvas.manager.toolbar.save_figure()
os.remove("foobar.png")
assert fname == "foobar.png"
with mock.patch("gi.repository.Gtk.MessageDialog"):
dialog.get_filename.return_value = None
dialog.run.return_value = Gtk.ResponseType.OK
fname = fig.canvas.manager.toolbar.save_figure()
assert fname is None