summaryrefslogtreecommitdiff
path: root/src/silx/gui/widgets/test/test_floatedit.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/silx/gui/widgets/test/test_floatedit.py')
-rw-r--r--src/silx/gui/widgets/test/test_floatedit.py82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/silx/gui/widgets/test/test_floatedit.py b/src/silx/gui/widgets/test/test_floatedit.py
new file mode 100644
index 0000000..c5edded
--- /dev/null
+++ b/src/silx/gui/widgets/test/test_floatedit.py
@@ -0,0 +1,82 @@
+# /*##########################################################################
+#
+# Copyright (c) 2018 European Synchrotron Radiation Facility
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+#
+# ###########################################################################*/
+"""Tests for FloatEdit"""
+
+__license__ = "MIT"
+
+import pytest
+from silx.gui import qt
+from silx.gui.widgets.FloatEdit import FloatEdit
+
+
+@pytest.fixture
+def floatEdit(qWidgetFactory):
+ widget = qWidgetFactory(FloatEdit)
+ yield widget
+
+
+@pytest.fixture
+def floatEditHolder(qWidgetFactory, floatEdit):
+ widget = qWidgetFactory(qt.QWidget)
+ layout = qt.QHBoxLayout(widget)
+ layout.addStretch()
+ layout.addWidget(floatEdit)
+ yield widget
+
+
+def test_show(floatEdit):
+ pass
+
+
+def test_value(floatEdit):
+ floatEdit.setValue(1.5)
+ assert floatEdit.value() == 1.5
+
+
+def test_no_widgetresize(floatEditHolder, floatEdit):
+ floatEditHolder.resize(50, 50)
+ floatEdit.setValue(123)
+ a = floatEdit.width()
+ floatEdit.setValue(123456789123456789.123456789123456789)
+ b = floatEdit.width()
+ assert b == a
+
+
+def test_widgetresize(qapp_utils, floatEditHolder, floatEdit):
+ floatEditHolder.resize(50, 50)
+ floatEdit.setWidgetResizable(True)
+ # Initial
+ floatEdit.setValue(123)
+ qapp_utils.qWait()
+ a = floatEdit.width()
+ # Grow
+ floatEdit.setValue(123456789123456789.123456789123456789)
+ qapp_utils.qWait()
+ b = floatEdit.width()
+ # Shrink
+ floatEdit.setValue(123)
+ qapp_utils.qWait()
+ c = floatEdit.width()
+ assert b > a
+ assert a <= c < b