Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support float16 values in array editor #3264

Merged
merged 2 commits into from
Jun 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 2 additions & 70 deletions spyderlib/widgets/variableexplorer/arrayeditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@
is_text_string, PY3, to_binary_string,
to_text_string)
from spyderlib.utils import icon_manager as ima
from spyderlib.utils.qthelpers import (add_actions, create_action, keybinding,
qapplication)
from spyderlib.utils.qthelpers import add_actions, create_action, keybinding


# Note: string and unicode data types will be formatted with '%s' (see below)
Expand All @@ -47,6 +46,7 @@
'double': '%.3f',
'float_': '%.3f',
'longfloat': '%.3f',
'float16': '%.3f',
'float32': '%.3f',
'float64': '%.3f',
'float96': '%.3f',
Expand Down Expand Up @@ -797,71 +797,3 @@ def reject(self):
for index in range(self.stack.count()):
self.stack.widget(index).reject_changes()
QDialog.reject(self)


#==============================================================================
# Tests
#==============================================================================
def test_edit(data, title="", xlabels=None, ylabels=None,
readonly=False, parent=None):
"""Test subroutine"""
app = qapplication(test_time=1.5) # analysis:ignore
dlg = ArrayEditor(parent)

if dlg.setup_and_check(data, title, xlabels=xlabels, ylabels=ylabels,
readonly=readonly):
dlg.exec_()
return dlg.get_value()
else:
import sys
sys.exit(1)


def test():
"""Array editor test"""
from numpy.testing import assert_array_equal

arr = np.array(["kjrekrjkejr"])
assert arr == test_edit(arr, "string array")

arr = np.array([u"ñññéáíó"])
assert arr == test_edit(arr, "unicode array")

arr = np.ma.array([[1, 0], [1, 0]], mask=[[True, False], [False, False]])
assert_array_equal(arr, test_edit(arr, "masked array"))

arr = np.zeros((2, 2), {'names': ('red', 'green', 'blue'),
'formats': (np.float32, np.float32, np.float32)})
assert_array_equal(arr, test_edit(arr, "record array"))

arr = np.array([(0, 0.0), (0, 0.0), (0, 0.0)],
dtype=[(('title 1', 'x'), '|i1'),
(('title 2', 'y'), '>f4')])
assert_array_equal(arr, test_edit(arr, "record array with titles"))

arr = np.random.rand(5, 5)
assert_array_equal(arr, test_edit(arr, "float array",
xlabels=['a', 'b', 'c', 'd', 'e']))

arr = np.round(np.random.rand(5, 5)*10)+\
np.round(np.random.rand(5, 5)*10)*1j
assert_array_equal(arr, test_edit(arr, "complex array",
xlabels=np.linspace(-12, 12, 5),
ylabels=np.linspace(-12, 12, 5)))

arr_in = np.array([True, False, True])
arr_out = test_edit(arr_in, "bool array")
assert arr_in is arr_out

arr = np.array([1, 2, 3], dtype="int8")
assert_array_equal(arr, test_edit(arr, "int array"))

arr = np.zeros((3,3,4))
arr[0,0,0]=1
arr[0,0,1]=2
arr[0,0,2]=3
assert_array_equal(arr, test_edit(arr, "3D array"))


if __name__ == "__main__":
test()
89 changes: 89 additions & 0 deletions spyderlib/widgets/variableexplorer/tests/test_arrayeditor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# -*- coding: utf-8 -*-
#
# Copyright © 2009- The Spyder Development Team
# Licensed under the terms of the MIT License

"""
Tests for arrayeditor.py
"""

# Third party imports
import numpy as np
from numpy.testing import assert_array_equal
import pytest

# Local imports
from spyderlib.utils.qthelpers import qapplication
from spyderlib.widgets.variableexplorer.arrayeditor import ArrayEditor


def launch_arrayeditor(data, title="", xlabels=None, ylabels=None):
"""Helper routine to launch an arrayeditor and return its result"""
dlg = ArrayEditor()
assert dlg.setup_and_check(data, title, xlabels=xlabels, ylabels=ylabels)
dlg.show()
dlg.accept() # trigger slot connected to OK button
return dlg.get_value()


# --- Tests
# -----------------------------------------------------------------------------
def test_arrayeditor_with_string_array(qtbot):
arr = np.array(["kjrekrjkejr"])
assert arr == launch_arrayeditor(arr, "string array")

def test_arrayeditor_with_unicode_array(qtbot):
arr = np.array([u"ñññéáíó"])
assert arr == launch_arrayeditor(arr, "unicode array")

def test_arrayeditor_with_masked_array(qtbot):
arr = np.ma.array([[1, 0], [1, 0]], mask=[[True, False], [False, False]])
assert_array_equal(arr, launch_arrayeditor(arr, "masked array"))

def test_arrayeditor_with_record_array(qtbot):
arr = np.zeros((2, 2), {'names': ('red', 'green', 'blue'),
'formats': (np.float32, np.float32, np.float32)})
assert_array_equal(arr, launch_arrayeditor(arr, "record array"))

def test_arrayeditor_with_record_array_with_titles(qtbot):
arr = np.array([(0, 0.0), (0, 0.0), (0, 0.0)],
dtype=[(('title 1', 'x'), '|i1'),
(('title 2', 'y'), '>f4')])
assert_array_equal(arr, launch_arrayeditor(arr, "record array with titles"))

def test_arrayeditor_with_float_array(qtbot):
arr = np.random.rand(5, 5)
assert_array_equal(arr, launch_arrayeditor(arr, "float array",
xlabels=['a', 'b', 'c', 'd', 'e']))

def test_arrayeditor_with_complex_array(qtbot):
arr = np.round(np.random.rand(5, 5)*10)+\
np.round(np.random.rand(5, 5)*10)*1j
assert_array_equal(arr, launch_arrayeditor(arr, "complex array",
xlabels=np.linspace(-12, 12, 5),
ylabels=np.linspace(-12, 12, 5)))

def test_arrayeditor_with_bool_array(qtbot):
arr_in = np.array([True, False, True])
arr_out = launch_arrayeditor(arr_in, "bool array")
assert arr_in is arr_out

def test_arrayeditor_with_int8_array(qtbot):
arr = np.array([1, 2, 3], dtype="int8")
assert_array_equal(arr, launch_arrayeditor(arr, "int array"))

def test_arrayeditor_with_float16_array(qtbot):
arr = np.zeros((5,5), dtype=np.float16)
assert_array_equal(arr, launch_arrayeditor(arr, "float16 array"))

def test_arrayeditor_with_3d_array(qtbot):
arr = np.zeros((3,3,4))
arr[0,0,0]=1
arr[0,0,1]=2
arr[0,0,2]=3
assert_array_equal(arr, launch_arrayeditor(arr, "3D array"))


if __name__ == "__main__":
pytest.main()