forked from opengeos/leafmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
187 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
#!/usr/bin/env python | ||
|
||
"""Tests for `colormaps` module.""" | ||
|
||
import unittest | ||
import leafmap.colormaps as cm | ||
import ipyleaflet | ||
import ipywidgets as widgets | ||
from unittest.mock import patch | ||
from leafmap import leafmap | ||
|
||
|
||
class TestColormaps(unittest.TestCase): | ||
"""Tests for `colormaps` module.""" | ||
|
||
def setUp(self): | ||
"""Set up test fixtures, if any.""" | ||
|
||
def tearDown(self): | ||
"""Tear down test fixtures, if any.""" | ||
|
||
def test_get_palette(self): | ||
"""Test the get_palette function.""" | ||
# test the function with a valid palette | ||
palette = cm.get_palette("terrain", n_class=8) | ||
self.assertEqual(len(palette), 8) | ||
self.assertEqual(palette[0], "333399") | ||
self.assertEqual(palette[1], "0294fa") | ||
self.assertEqual(palette[2], "24d36d") | ||
|
||
# test the function with an invalid palette | ||
with self.assertRaises(ValueError): | ||
cm.get_palette("not_a_palette") | ||
|
||
@patch("matplotlib.pyplot.show") | ||
def test_get_colorbar(self, mock_show): | ||
"""Test the get_colorbar function.""" | ||
m = leafmap.Map() | ||
colors = cm.get_palette("terrain", n_class=8) | ||
output = widgets.Output() | ||
with output: | ||
output.clear_output() | ||
cm.get_colorbar(colors, discrete=False) | ||
cm.get_colorbar(colors, discrete=True) | ||
control = ipyleaflet.WidgetControl(widget=output, position="bottomright") | ||
m.add_control(control) | ||
out_str = m.to_html() | ||
assert "image/png" in out_str | ||
|
||
@patch("matplotlib.pyplot.show") | ||
def test_list_colormaps(self, mock_show): | ||
"""Test the get_colorbar function.""" | ||
# test the function with a valid colorbar | ||
m = leafmap.Map() | ||
output = widgets.Output() | ||
with output: | ||
output.clear_output() | ||
cm.list_colormaps() | ||
control = ipyleaflet.WidgetControl(widget=output, position="bottomright") | ||
m.add_control(control) | ||
out_str = m.to_html() | ||
assert "image/png" in out_str | ||
|
||
@patch("matplotlib.pyplot.show") | ||
def test_plot_colormap(self, mock_show): | ||
"""Test the get_colorbar function.""" | ||
# test the function with a valid colorbar | ||
m = leafmap.Map() | ||
output = widgets.Output() | ||
with output: | ||
output.clear_output() | ||
cm.plot_colormap( | ||
cmap="gray", | ||
colors=None, | ||
discrete=False, | ||
label=None, | ||
width=8.0, | ||
height=0.4, | ||
orientation="horizontal", | ||
vmin=0, | ||
vmax=1.0, | ||
axis_off=False, | ||
show_name=False, | ||
font_size=12, | ||
) | ||
control = ipyleaflet.WidgetControl(widget=output, position="bottomright") | ||
m.add_control(control) | ||
out_str = m.to_html() | ||
assert "image/png" in out_str | ||
m.remove_control(control) | ||
|
||
with output: | ||
output.clear_output() | ||
cm.plot_colormap( | ||
colors=[ | ||
"333399", | ||
"0294fa", | ||
"24d36d", | ||
"b6f08a", | ||
"dbd085", | ||
"92735e", | ||
"b6a29d", | ||
"ffffff", | ||
], | ||
discrete=False, | ||
label="Elevation", | ||
width=8.0, | ||
height=0.4, | ||
orientation="horizontal", | ||
vmin=0, | ||
vmax=1.0, | ||
axis_off=True, | ||
show_name=True, | ||
font_size=12, | ||
) | ||
control = ipyleaflet.WidgetControl(widget=output, position="bottomright") | ||
m.add_control(control) | ||
out_str = m.to_html() | ||
assert "image/png" in out_str | ||
|
||
@patch("matplotlib.pyplot.show") | ||
def test_plot_colormaps(self, mock_show): | ||
"""Test the get_colorbar function.""" | ||
# test the function with a valid colorbar | ||
m = leafmap.Map() | ||
output = widgets.Output() | ||
with output: | ||
output.clear_output() | ||
cm.plot_colormaps(width=8.0, height=0.4) | ||
control = ipyleaflet.WidgetControl(widget=output, position="bottomright") | ||
m.add_control(control) | ||
out_str = m.to_html() | ||
assert "image/png" in out_str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters