1 | import sys |
---|
2 | import unittest |
---|
3 | import platform |
---|
4 | |
---|
5 | from PyQt5 import QtGui, QtWidgets, QtPrintSupport |
---|
6 | from PyQt5 import QtCore |
---|
7 | from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas |
---|
8 | from unittest.mock import MagicMock |
---|
9 | from unittest.mock import patch |
---|
10 | |
---|
11 | ####### TEMP |
---|
12 | import path_prepare |
---|
13 | ####### |
---|
14 | from sas.qtgui.Plotting.PlotterData import Data1D |
---|
15 | from sas.qtgui.Plotting.PlotterData import Data2D |
---|
16 | from sas.qtgui.UnitTesting.TestUtils import WarningTestNotImplemented |
---|
17 | from sas.qtgui.Plotting.LinearFit import LinearFit |
---|
18 | from sas.qtgui.Plotting.PlotProperties import PlotProperties |
---|
19 | |
---|
20 | # Tested module |
---|
21 | import sas.qtgui.Plotting.Plotter as Plotter |
---|
22 | |
---|
23 | if not QtWidgets.QApplication.instance(): |
---|
24 | app = QtWidgets.QApplication(sys.argv) |
---|
25 | |
---|
26 | |
---|
27 | class PlotterTest(unittest.TestCase): |
---|
28 | '''Test the Plotter 1D class''' |
---|
29 | def setUp(self): |
---|
30 | '''create''' |
---|
31 | |
---|
32 | self.plotter = Plotter.Plotter(None, quickplot=True) |
---|
33 | self.data = Data1D(x=[1.0, 2.0, 3.0], |
---|
34 | y=[10.0, 11.0, 12.0], |
---|
35 | dx=[0.1, 0.2, 0.3], |
---|
36 | dy=[0.1, 0.2, 0.3]) |
---|
37 | self.data.title="Test data" |
---|
38 | self.data.name="Test name" |
---|
39 | self.data.id = 1 |
---|
40 | self.isWindows = platform.system=="Windows" |
---|
41 | |
---|
42 | def tearDown(self): |
---|
43 | '''destroy''' |
---|
44 | self.plotter = None |
---|
45 | |
---|
46 | def testDataProperty(self): |
---|
47 | """ Adding data """ |
---|
48 | self.plotter.data = self.data |
---|
49 | |
---|
50 | self.assertEqual(self.plotter.data, self.data) |
---|
51 | self.assertEqual(self.plotter._title, self.data.name) |
---|
52 | self.assertEqual(self.plotter.xLabel, "") |
---|
53 | self.assertEqual(self.plotter.yLabel, "") |
---|
54 | |
---|
55 | def testPlotWithErrors(self): |
---|
56 | """ Look at the plotting with error bars""" |
---|
57 | self.plotter.data = self.data |
---|
58 | self.plotter.show() |
---|
59 | FigureCanvas.draw_idle = MagicMock() |
---|
60 | |
---|
61 | self.plotter.plot(hide_error=False) |
---|
62 | |
---|
63 | self.assertEqual(self.plotter.ax.get_xscale(), 'log') |
---|
64 | self.assertTrue(FigureCanvas.draw_idle.called) |
---|
65 | |
---|
66 | self.plotter.figure.clf() |
---|
67 | |
---|
68 | def testPlotWithoutErrors(self): |
---|
69 | """ Look at the plotting without error bars""" |
---|
70 | self.plotter.data = self.data |
---|
71 | self.plotter.show() |
---|
72 | FigureCanvas.draw_idle = MagicMock() |
---|
73 | |
---|
74 | self.plotter.plot(hide_error=True) |
---|
75 | |
---|
76 | self.assertEqual(self.plotter.ax.get_yscale(), 'log') |
---|
77 | self.assertTrue(FigureCanvas.draw_idle.called) |
---|
78 | self.plotter.figure.clf() |
---|
79 | |
---|
80 | def testPlotWithSesans(self): |
---|
81 | """ Ensure that Sesans data is plotted in linear cooredinates""" |
---|
82 | data = Data1D(x=[1.0, 2.0, 3.0], |
---|
83 | y=[10.0, 11.0, 12.0], |
---|
84 | dx=[0.1, 0.2, 0.3], |
---|
85 | dy=[0.1, 0.2, 0.3]) |
---|
86 | data.title = "Sesans data" |
---|
87 | data.name = "Test Sesans" |
---|
88 | data.isSesans = True |
---|
89 | data.id = 2 |
---|
90 | |
---|
91 | self.plotter.data = data |
---|
92 | self.plotter.show() |
---|
93 | FigureCanvas.draw_idle = MagicMock() |
---|
94 | |
---|
95 | self.plotter.plot(hide_error=True) |
---|
96 | |
---|
97 | self.assertEqual(self.plotter.ax.get_xscale(), 'linear') |
---|
98 | self.assertEqual(self.plotter.ax.get_yscale(), 'linear') |
---|
99 | self.assertTrue(FigureCanvas.draw_idle.called) |
---|
100 | |
---|
101 | def testCreateContextMenuQuick(self): |
---|
102 | """ Test the right click menu """ |
---|
103 | self.plotter.createContextMenuQuick() |
---|
104 | actions = self.plotter.contextMenu.actions() |
---|
105 | self.assertEqual(len(actions), 7) |
---|
106 | |
---|
107 | # Trigger Print Image and make sure the method is called |
---|
108 | self.assertEqual(actions[1].text(), "Print Image") |
---|
109 | QtPrintSupport.QPrintDialog.exec_ = MagicMock(return_value=QtWidgets.QDialog.Rejected) |
---|
110 | actions[1].trigger() |
---|
111 | self.assertTrue(QtPrintSupport.QPrintDialog.exec_.called) |
---|
112 | |
---|
113 | # Trigger Copy to Clipboard and make sure the method is called |
---|
114 | self.assertEqual(actions[2].text(), "Copy to Clipboard") |
---|
115 | |
---|
116 | # Trigger Toggle Grid and make sure the method is called |
---|
117 | self.assertEqual(actions[4].text(), "Toggle Grid On/Off") |
---|
118 | self.plotter.ax.grid = MagicMock() |
---|
119 | actions[4].trigger() |
---|
120 | self.assertTrue(self.plotter.ax.grid.called) |
---|
121 | |
---|
122 | # Trigger Change Scale and make sure the method is called |
---|
123 | self.assertEqual(actions[6].text(), "Change Scale") |
---|
124 | self.plotter.properties.exec_ = MagicMock(return_value=QtWidgets.QDialog.Rejected) |
---|
125 | actions[6].trigger() |
---|
126 | self.assertTrue(self.plotter.properties.exec_.called) |
---|
127 | |
---|
128 | # Spy on cliboard's dataChanged() signal |
---|
129 | if not self.isWindows: |
---|
130 | return |
---|
131 | self.clipboard_called = False |
---|
132 | def done(): |
---|
133 | self.clipboard_called = True |
---|
134 | QtCore.QObject.connect(QtWidgets.qApp.clipboard(), QtCore.SIGNAL("dataChanged()"), done) |
---|
135 | actions[2].trigger() |
---|
136 | QtWidgets.qApp.processEvents() |
---|
137 | # Make sure clipboard got updated. |
---|
138 | self.assertTrue(self.clipboard_called) |
---|
139 | |
---|
140 | def testXyTransform(self): |
---|
141 | """ Tests the XY transformation and new chart update """ |
---|
142 | self.plotter.plot(self.data) |
---|
143 | |
---|
144 | # Transform the points |
---|
145 | self.plotter.xyTransform(xLabel="x", yLabel="log10(y)") |
---|
146 | |
---|
147 | # Assure new plot has correct labels |
---|
148 | #self.assertEqual(self.plotter.ax.get_xlabel(), "$()$") |
---|
149 | #self.assertEqual(self.plotter.ax.get_ylabel(), "$()$") |
---|
150 | # ... and scale |
---|
151 | self.assertEqual(self.plotter.xscale, "linear") |
---|
152 | self.assertEqual(self.plotter.yscale, "log") |
---|
153 | # See that just one plot is present |
---|
154 | self.assertEqual(len(self.plotter.plot_dict), 1) |
---|
155 | self.assertEqual(len(self.plotter.ax.collections), 1) |
---|
156 | self.plotter.figure.clf() |
---|
157 | |
---|
158 | def testAddText(self): |
---|
159 | """ Checks the functionality of adding text to graph """ |
---|
160 | |
---|
161 | self.plotter.plot(self.data) |
---|
162 | self.plotter.x_click = 100.0 |
---|
163 | self.plotter.y_click = 100.0 |
---|
164 | # modify the text edit control |
---|
165 | test_text = "Smoke in cabin" |
---|
166 | test_font = QtGui.QFont("Arial", 16, QtGui.QFont.Bold) |
---|
167 | test_color = "#00FF00" |
---|
168 | self.plotter.addText.textEdit.setText(test_text) |
---|
169 | |
---|
170 | # Return the requested font parameters |
---|
171 | self.plotter.addText.font = MagicMock(return_value = test_font) |
---|
172 | self.plotter.addText.color = MagicMock(return_value = test_color) |
---|
173 | # Return OK from the dialog |
---|
174 | self.plotter.addText.exec_ = MagicMock(return_value = QtWidgets.QDialog.Accepted) |
---|
175 | # Add text to graph |
---|
176 | self.plotter.onAddText() |
---|
177 | self.plotter.show() |
---|
178 | # Check if the text was added properly |
---|
179 | self.assertEqual(len(self.plotter.textList), 1) |
---|
180 | self.assertEqual(self.plotter.textList[0].get_text(), test_text) |
---|
181 | self.assertEqual(self.plotter.textList[0].get_color(), test_color) |
---|
182 | self.assertEqual(self.plotter.textList[0].get_fontproperties().get_family()[0], 'Arial') |
---|
183 | self.assertEqual(self.plotter.textList[0].get_fontproperties().get_size(), 16) |
---|
184 | self.plotter.figure.clf() |
---|
185 | |
---|
186 | def testOnRemoveText(self): |
---|
187 | """ Cheks if annotations can be removed from the graph """ |
---|
188 | |
---|
189 | # Add some text |
---|
190 | self.plotter.plot(self.data) |
---|
191 | test_text = "Safety instructions" |
---|
192 | self.plotter.addText.textEdit.setText(test_text) |
---|
193 | # Return OK from the dialog |
---|
194 | self.plotter.addText.exec_ = MagicMock(return_value = QtWidgets.QDialog.Accepted) |
---|
195 | # Add text to graph |
---|
196 | self.plotter.x_click = 1.0 |
---|
197 | self.plotter.y_click = 5.0 |
---|
198 | self.plotter.onAddText() |
---|
199 | self.plotter.show() |
---|
200 | # Check if the text was added properly |
---|
201 | self.assertEqual(len(self.plotter.textList), 1) |
---|
202 | |
---|
203 | # Now, remove the text |
---|
204 | self.plotter.onRemoveText() |
---|
205 | |
---|
206 | # And assure no text is displayed |
---|
207 | self.assertEqual(self.plotter.textList, []) |
---|
208 | |
---|
209 | # Attempt removal on empty and check |
---|
210 | self.plotter.onRemoveText() |
---|
211 | self.assertEqual(self.plotter.textList, []) |
---|
212 | self.plotter.figure.clf() |
---|
213 | |
---|
214 | def testOnSetGraphRange(self): |
---|
215 | """ Cheks if the graph can be resized for range """ |
---|
216 | new_x = (1,2) |
---|
217 | new_y = (10,11) |
---|
218 | self.plotter.plot(self.data) |
---|
219 | self.plotter.show() |
---|
220 | self.plotter.setRange.exec_ = MagicMock(return_value = QtWidgets.QDialog.Accepted) |
---|
221 | self.plotter.setRange.xrange = MagicMock(return_value = new_x) |
---|
222 | self.plotter.setRange.yrange = MagicMock(return_value = new_y) |
---|
223 | |
---|
224 | # Call the tested method |
---|
225 | self.plotter.onSetGraphRange() |
---|
226 | # See that ranges changed accordingly |
---|
227 | self.assertEqual(self.plotter.ax.get_xlim(), new_x) |
---|
228 | self.assertEqual(self.plotter.ax.get_ylim(), new_y) |
---|
229 | self.plotter.figure.clf() |
---|
230 | |
---|
231 | def testOnResetGraphRange(self): |
---|
232 | """ Cheks if the graph can be reset after resizing for range """ |
---|
233 | # New values |
---|
234 | new_x = (1,2) |
---|
235 | new_y = (10,11) |
---|
236 | # define the plot |
---|
237 | self.plotter.plot(self.data) |
---|
238 | self.plotter.show() |
---|
239 | |
---|
240 | # mock setRange methods |
---|
241 | self.plotter.setRange.exec_ = MagicMock(return_value = QtWidgets.QDialog.Accepted) |
---|
242 | self.plotter.setRange.xrange = MagicMock(return_value = new_x) |
---|
243 | self.plotter.setRange.yrange = MagicMock(return_value = new_y) |
---|
244 | |
---|
245 | # Change the axes range |
---|
246 | self.plotter.onSetGraphRange() |
---|
247 | |
---|
248 | # Now, reset the range back |
---|
249 | self.plotter.onResetGraphRange() |
---|
250 | |
---|
251 | # See that ranges are changed |
---|
252 | self.assertNotEqual(self.plotter.ax.get_xlim(), new_x) |
---|
253 | self.assertNotEqual(self.plotter.ax.get_ylim(), new_y) |
---|
254 | self.plotter.figure.clf() |
---|
255 | |
---|
256 | def testOnLinearFit(self): |
---|
257 | """ Checks the response to LinearFit call """ |
---|
258 | self.plotter.plot(self.data) |
---|
259 | self.plotter.show() |
---|
260 | QtWidgets.QDialog.exec_ = MagicMock(return_value=QtWidgets.QDialog.Accepted) |
---|
261 | |
---|
262 | # Just this one plot |
---|
263 | self.assertEqual(len(list(self.plotter.plot_dict.keys())), 1) |
---|
264 | self.plotter.onLinearFit('Test name') |
---|
265 | |
---|
266 | # Check that exec_ got called |
---|
267 | self.assertTrue(QtWidgets.QDialog.exec_.called) |
---|
268 | self.plotter.figure.clf() |
---|
269 | |
---|
270 | def testOnRemovePlot(self): |
---|
271 | """ Assure plots get removed when requested """ |
---|
272 | # Add two plots |
---|
273 | self.plotter.show() |
---|
274 | self.plotter.plot(self.data) |
---|
275 | data2 = Data1D(x=[1.0, 2.0, 3.0], |
---|
276 | y=[11.0, 12.0, 13.0], |
---|
277 | dx=[0.1, 0.2, 0.3], |
---|
278 | dy=[0.1, 0.2, 0.3]) |
---|
279 | data2.title="Test data 2" |
---|
280 | data2.name="Test name 2" |
---|
281 | data2.id = 2 |
---|
282 | self.plotter.plot(data2) |
---|
283 | |
---|
284 | # Assure the plotter window is visible |
---|
285 | #self.assertTrue(self.plotter.isVisible()) |
---|
286 | |
---|
287 | # Assure we have two sets |
---|
288 | self.assertEqual(len(list(self.plotter.plot_dict.keys())), 2) |
---|
289 | |
---|
290 | # Delete one set |
---|
291 | self.plotter.onRemovePlot('Test name 2') |
---|
292 | # Assure we have two sets |
---|
293 | self.assertEqual(len(list(self.plotter.plot_dict.keys())), 1) |
---|
294 | |
---|
295 | self.plotter.manager = MagicMock() |
---|
296 | |
---|
297 | # Delete the remaining set |
---|
298 | self.plotter.onRemovePlot('Test name') |
---|
299 | # Assure we have no plots |
---|
300 | self.assertEqual(len(list(self.plotter.plot_dict.keys())), 0) |
---|
301 | # Assure the plotter window is closed |
---|
302 | self.assertFalse(self.plotter.isVisible()) |
---|
303 | self.plotter.figure.clf() |
---|
304 | |
---|
305 | def testRemovePlot(self): |
---|
306 | """ Test plot removal """ |
---|
307 | # Add two plots |
---|
308 | self.plotter.show() |
---|
309 | self.plotter.plot(self.data) |
---|
310 | data2 = Data1D(x=[1.0, 2.0, 3.0], |
---|
311 | y=[11.0, 12.0, 13.0], |
---|
312 | dx=[0.1, 0.2, 0.3], |
---|
313 | dy=[0.1, 0.2, 0.3]) |
---|
314 | data2.title="Test data 2" |
---|
315 | data2.name="Test name 2" |
---|
316 | data2.id = 2 |
---|
317 | data2._xaxis = "XAXIS" |
---|
318 | data2._xunit = "furlong*fortnight^{-1}" |
---|
319 | data2._yaxis = "YAXIS" |
---|
320 | data2._yunit = "cake" |
---|
321 | data2.hide_error = True |
---|
322 | self.plotter.plot(data2) |
---|
323 | |
---|
324 | # delete plot 1 |
---|
325 | self.plotter.removePlot(1) |
---|
326 | |
---|
327 | # See that the labels didn't change |
---|
328 | xl = self.plotter.ax.xaxis.label.get_text() |
---|
329 | yl = self.plotter.ax.yaxis.label.get_text() |
---|
330 | self.assertEqual(xl, "$XAXIS(furlong*fortnight^{-1})$") |
---|
331 | self.assertEqual(yl, "$YAXIS(cake)$") |
---|
332 | # The hide_error flag should also remain |
---|
333 | self.assertTrue(self.plotter.plot_dict['Test name 2'].hide_error) |
---|
334 | self.plotter.figure.clf() |
---|
335 | |
---|
336 | def testOnToggleHideError(self): |
---|
337 | """ Test the error bar toggle on plots """ |
---|
338 | # Add two plots |
---|
339 | self.plotter.show() |
---|
340 | self.plotter.plot(self.data) |
---|
341 | data2 = Data1D(x=[1.0, 2.0, 3.0], |
---|
342 | y=[11.0, 12.0, 13.0], |
---|
343 | dx=[0.1, 0.2, 0.3], |
---|
344 | dy=[0.1, 0.2, 0.3]) |
---|
345 | data2.title="Test data 2" |
---|
346 | data2.name="Test name 2" |
---|
347 | data2.id = 2 |
---|
348 | data2._xaxis = "XAXIS" |
---|
349 | data2._xunit = "furlong*fortnight^{-1}" |
---|
350 | data2._yaxis = "YAXIS" |
---|
351 | data2._yunit = "cake" |
---|
352 | error_status = True |
---|
353 | data2.hide_error = error_status |
---|
354 | self.plotter.plot(data2) |
---|
355 | |
---|
356 | # Reverse the toggle |
---|
357 | self.plotter.onToggleHideError('Test name 2') |
---|
358 | # See that the labels didn't change |
---|
359 | xl = self.plotter.ax.xaxis.label.get_text() |
---|
360 | yl = self.plotter.ax.yaxis.label.get_text() |
---|
361 | self.assertEqual(xl, "$XAXIS(furlong*fortnight^{-1})$") |
---|
362 | self.assertEqual(yl, "$YAXIS(cake)$") |
---|
363 | # The hide_error flag should toggle |
---|
364 | self.assertEqual(self.plotter.plot_dict['Test name 2'].hide_error, not error_status) |
---|
365 | self.plotter.figure.clf() |
---|
366 | |
---|
367 | def testOnFitDisplay(self): |
---|
368 | """ Test the fit line display on the chart """ |
---|
369 | self.assertIsInstance(self.plotter.fit_result, Data1D) |
---|
370 | self.assertEqual(self.plotter.fit_result.symbol, 13) |
---|
371 | self.assertEqual(self.plotter.fit_result.name, "Fit") |
---|
372 | |
---|
373 | # fudge some init data |
---|
374 | fit_data = [[0.0,0.0], [5.0,5.0]] |
---|
375 | # Call the method |
---|
376 | self.plotter.plot = MagicMock() |
---|
377 | self.plotter.onFitDisplay(fit_data) |
---|
378 | self.assertTrue(self.plotter.plot.called) |
---|
379 | # Look at arguments passed to .plot() |
---|
380 | self.plotter.plot.assert_called_with(data=self.plotter.fit_result, |
---|
381 | hide_error=True, marker='-') |
---|
382 | self.plotter.figure.clf() |
---|
383 | |
---|
384 | def testReplacePlot(self): |
---|
385 | """ Test the plot refresh functionality """ |
---|
386 | # Add original data |
---|
387 | self.plotter.show() |
---|
388 | self.plotter.plot(self.data) |
---|
389 | # See the default labels |
---|
390 | xl = self.plotter.ax.xaxis.label.get_text() |
---|
391 | yl = self.plotter.ax.yaxis.label.get_text() |
---|
392 | self.assertEqual(xl, "") |
---|
393 | self.assertEqual(yl, "") |
---|
394 | |
---|
395 | # Prepare new data |
---|
396 | data2 = Data1D(x=[1.0, 2.0, 3.0], |
---|
397 | y=[11.0, 12.0, 13.0], |
---|
398 | dx=[0.1, 0.2, 0.3], |
---|
399 | dy=[0.1, 0.2, 0.3]) |
---|
400 | data2.title="Test data 2" |
---|
401 | data2.name="Test name 2" |
---|
402 | data2.id = 2 |
---|
403 | data2._xaxis = "XAXIS" |
---|
404 | data2._xunit = "furlong*fortnight^{-1}" |
---|
405 | data2._yaxis = "YAXIS" |
---|
406 | data2._yunit = "cake" |
---|
407 | error_status = True |
---|
408 | data2.hide_error = error_status |
---|
409 | |
---|
410 | # Replace data in plot |
---|
411 | self.plotter.replacePlot(1, data2) |
---|
412 | |
---|
413 | # See that the labels changed |
---|
414 | xl = self.plotter.ax.xaxis.label.get_text() |
---|
415 | yl = self.plotter.ax.yaxis.label.get_text() |
---|
416 | self.assertEqual(xl, "$XAXIS(furlong*fortnight^{-1})$") |
---|
417 | self.assertEqual(yl, "$YAXIS(cake)$") |
---|
418 | # The hide_error flag should be as set |
---|
419 | self.assertEqual(self.plotter.plot_dict['Test name 2'].hide_error, error_status) |
---|
420 | self.plotter.figure.clf() |
---|
421 | |
---|
422 | def notestOnModifyPlot(self): |
---|
423 | """ Test the functionality for changing plot properties """ |
---|
424 | # Prepare new data |
---|
425 | data2 = Data1D(x=[1.0, 2.0, 3.0], |
---|
426 | y=[11.0, 12.0, 13.0], |
---|
427 | dx=[0.1, 0.2, 0.3], |
---|
428 | dy=[0.1, 0.2, 0.3]) |
---|
429 | data2.title="Test data 2" |
---|
430 | data2.name="Test name 2" |
---|
431 | data2.id = 2 |
---|
432 | data2.custom_color = None |
---|
433 | data2.symbol = 1 |
---|
434 | data2.markersize = 11 |
---|
435 | |
---|
436 | self.plotter.plot(data2) |
---|
437 | |
---|
438 | with patch('sas.qtgui.Plotting.PlotProperties.PlotProperties') as mock: |
---|
439 | instance = mock.return_value |
---|
440 | QtWidgets.QDialog.exec_ = MagicMock(return_value=QtWidgets.QDialog.Accepted) |
---|
441 | instance.symbol.return_value = 7 |
---|
442 | |
---|
443 | self.plotter.onModifyPlot(2) |
---|
444 | self.plotter.figure.clf() |
---|
445 | |
---|
446 | |
---|
447 | if __name__ == "__main__": |
---|
448 | unittest.main() |
---|