-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OWDistances: Do not show messages when data is removed
- Loading branch information
Showing
2 changed files
with
44 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Test methods with long descriptive names can omit docstrings | ||
# pylint: disable=missing-docstring | ||
import numpy as np | ||
|
||
from Orange.data import Table | ||
from Orange.distance import MahalanobisDistance | ||
from Orange.widgets.unsupervised.owdistances import OWDistances, METRICS | ||
from Orange.widgets.tests.base import WidgetTest | ||
|
||
|
||
class TestOWDistances(WidgetTest): | ||
@classmethod | ||
def setUpClass(cls): | ||
super().setUpClass() | ||
cls.iris = Table("iris") | ||
cls.titanic = Table("titanic") | ||
|
||
def setUp(self): | ||
self.widget = self.create_widget(OWDistances) | ||
|
||
def test_distance_combo(self): | ||
"""Check distances when the metric changes""" | ||
self.assertEqual(self.widget.metrics_combo.count(), len(METRICS)) | ||
self.send_signal("Data", self.iris) | ||
for i, metric in enumerate(METRICS): | ||
if isinstance(metric, MahalanobisDistance): | ||
metric.fit(self.iris) | ||
self.widget.metrics_combo.activated.emit(i) | ||
self.widget.metrics_combo.setCurrentIndex(i) | ||
self.send_signal("Data", self.iris) | ||
np.testing.assert_array_equal( | ||
metric(self.iris), self.get_output("Distances")) | ||
|
||
def test_error_message(self): | ||
"""Check if error message appears and then disappears when | ||
data is removed from input""" | ||
self.send_signal("Data", self.iris) | ||
self.assertFalse(self.widget.Error.no_continuous_features.is_shown()) | ||
self.send_signal("Data", self.titanic) | ||
self.assertTrue(self.widget.Error.no_continuous_features.is_shown()) | ||
self.send_signal("Data", None) | ||
self.assertFalse(self.widget.Error.no_continuous_features.is_shown()) |