summaryrefslogtreecommitdiff
path: root/silx/test/test_sx.py
blob: f0da32de4adaf658670406453be3ee7c79bd34da (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# coding: utf-8
# /*##########################################################################
#
# Copyright (c) 2016-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.
#
# ###########################################################################*/
__authors__ = ["T. Vincent", "P. Knobel"]
__license__ = "MIT"
__date__ = "27/02/2018"


import logging
import os
import sys
import unittest
import numpy

from silx.test.utils import test_options


_logger = logging.getLogger(__name__)


if sys.platform.startswith('linux') and not os.environ.get('DISPLAY', ''):
    # On linux and no DISPLAY available (e.g., ssh without -X)
    _logger.warning('silx.sx tests disabled (DISPLAY env. variable not set)')

    class SkipSXTest(unittest.TestCase):
        def runTest(self):
            self.skipTest(
                'silx.sx tests disabled (DISPLAY env. variable not set)')

    def suite():
        suite = unittest.TestSuite()
        suite.addTest(SkipSXTest())
        return suite

elif not test_options.WITH_QT_TEST:
    # Explicitly disabled tests
    msg = "silx.sx tests disabled %s" % test_options.WITH_QT_TEST_REASON
    _logger.warning(msg)

    class SkipSXTest(unittest.TestCase):
        def runTest(self):
            self.skipTest(test_options.WITH_QT_TEST_REASON)

    def suite():
        suite = unittest.TestSuite()
        suite.addTest(SkipSXTest())
        return suite

else:
    # Import here to avoid loading QT if tests are disabled

    from silx.gui import qt
    # load TestCaseQt before sx
    from silx.gui.test.utils import TestCaseQt
    from silx.gui.plot.Colors import rgba
    from silx import sx

    class SXTest(TestCaseQt):
        """Test the sx module"""

        def _expose_and_close(self, plot):
            self.qWaitForWindowExposed(plot)
            self.qapp.processEvents()
            plot.setAttribute(qt.Qt.WA_DeleteOnClose)
            plot.close()

        def test_plot(self):
            """Test plot function"""
            y = numpy.random.random(100)
            x = numpy.arange(len(y)) * 0.5

            # Nothing
            plt = sx.plot()
            self._expose_and_close(plt)

            # y
            plt = sx.plot(y, title='y')
            self._expose_and_close(plt)

            # y, style
            plt = sx.plot(y, 'blued ', title='y, "blued "')
            self._expose_and_close(plt)

            # x, y
            plt = sx.plot(x, y, title='x, y')
            self._expose_and_close(plt)

            # x, y, style
            plt = sx.plot(x, y, 'ro-', xlabel='x', title='x, y, "ro-"')
            self._expose_and_close(plt)

            # x, y, style, y
            plt = sx.plot(x, y, 'ro-', y ** 2, xlabel='x', ylabel='y',
                          title='x, y, "ro-", y ** 2')
            self._expose_and_close(plt)

            # x, y, style, y, style
            plt = sx.plot(x, y, 'ro-', y ** 2, 'b--',
                          title='x, y, "ro-", y ** 2, "b--"')
            self._expose_and_close(plt)

            # x, y, style, x, y, style
            plt = sx.plot(x, y, 'ro-', x, y ** 2, 'b--',
                          title='x, y, "ro-", x, y ** 2, "b--"')
            self._expose_and_close(plt)

            # x, y, x, y
            plt = sx.plot(x, y, x, y ** 2, title='x, y, x, y ** 2')
            self._expose_and_close(plt)

        def test_imshow(self):
            """Test imshow function"""
            img = numpy.arange(100.).reshape(10, 10) + 1

            # Nothing
            plt = sx.imshow()
            self._expose_and_close(plt)

            # image
            plt = sx.imshow(img)
            self._expose_and_close(plt)

            # image, gray cmap
            plt = sx.imshow(img, cmap='jet', title='jet cmap')
            self._expose_and_close(plt)

            # image, log cmap
            plt = sx.imshow(img, norm='log', title='log cmap')
            self._expose_and_close(plt)

            # image, fixed range
            plt = sx.imshow(img, vmin=10, vmax=20,
                            title='[10,20] cmap')
            self._expose_and_close(plt)

            # image, keep ratio
            plt = sx.imshow(img, aspect=True,
                            title='keep ratio')
            self._expose_and_close(plt)

            # image, change origin and scale
            plt = sx.imshow(img, origin=(10, 10), scale=(2, 2),
                            title='origin=(10, 10), scale=(2, 2)')
            self._expose_and_close(plt)

        def test_ginput(self):
            """Test ginput function

            This does NOT perform interactive tests
            """

            plt = sx.plot()
            self.qWaitForWindowExposed(plt)
            self.qapp.processEvents()

            result = sx.ginput(1, timeout=0.1)
            self.assertEqual(len(result), 0)

            plt.setAttribute(qt.Qt.WA_DeleteOnClose)
            plt.close()

        @unittest.skipUnless(test_options.WITH_GL_TEST,
                             test_options.WITH_GL_TEST_REASON)
        def test_contour3d(self):
            """Test contour3d function"""
            coords = numpy.linspace(-10, 10, 64)
            z = coords.reshape(-1, 1, 1)
            y = coords.reshape(1, -1, 1)
            x = coords.reshape(1, 1, -1)
            data = numpy.sin(x * y * z) / (x * y * z)

            # Just data
            window = sx.contour3d(data)

            isosurfaces = window.getIsosurfaces()
            self.assertEqual(len(isosurfaces), 1)

            self._expose_and_close(window)
            if not window.getPlot3DWidget().isValid():
                self.skipTest("OpenGL context is not valid")

            # N contours + color
            colors = ['red', 'green', 'blue']
            window = sx.contour3d(data, copy=False, contours=len(colors),
                                  color=colors)

            isosurfaces = window.getIsosurfaces()
            self.assertEqual(len(isosurfaces), len(colors))
            for iso, color in zip(isosurfaces, colors):
                self.assertEqual(rgba(iso.getColor()), rgba(color))

            self._expose_and_close(window)

            # by isolevel, single color
            contours = 0.2, 0.5
            window = sx.contour3d(data, copy=False, contours=contours,
                                  color='yellow')

            isosurfaces = window.getIsosurfaces()
            self.assertEqual(len(isosurfaces), len(contours))
            for iso, level in zip(isosurfaces, contours):
                self.assertEqual(iso.getLevel(), level)
                self.assertEqual(rgba(iso.getColor()),
                                 rgba('yellow'))

            self._expose_and_close(window)

            # Single isolevel, colormap
            window = sx.contour3d(data, copy=False, contours=0.5,
                                  colormap='gray', vmin=0.6, opacity=0.4)

            isosurfaces = window.getIsosurfaces()
            self.assertEqual(len(isosurfaces), 1)
            self.assertEqual(isosurfaces[0].getLevel(), 0.5)
            self.assertEqual(rgba(isosurfaces[0].getColor()),
                             (0., 0., 0., 0.4))

            self._expose_and_close(window)

        @unittest.skipUnless(test_options.WITH_GL_TEST,
                             test_options.WITH_GL_TEST_REASON)
        def test_points3d(self):
            """Test points3d function"""
            x = numpy.random.random(1024)
            y = numpy.random.random(1024)
            z = numpy.random.random(1024)
            values = numpy.random.random(1024)

            # 3D positions, no value
            window = sx.points3d(x, y, z)

            self._expose_and_close(window)
            if not window.getSceneWidget().isValid():
                self.skipTest("OpenGL context is not valid")

            # 3D positions, values
            window = sx.points3d(x, y, z, values, mode='2dsquare',
                                 colormap='magma', vmin=0.4, vmax=0.5)
            self._expose_and_close(window)

            # 2D positions, no value
            window = sx.points3d(x, y)
            self._expose_and_close(window)

            # 2D positions, values
            window = sx.points3d(x, y, values=values, mode=',',
                                 colormap='magma', vmin=0.4, vmax=0.5)
            self._expose_and_close(window)

    def suite():
        test_suite = unittest.TestSuite()
        test_suite.addTest(
            unittest.defaultTestLoader.loadTestsFromTestCase(SXTest))
        return test_suite


if __name__ == '__main__':
    unittest.main(defaultTest='suite')