diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:47:13 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:47:13 +0000 |
commit | c14d4fe25cb5cd482369734dd487ac8f376851c9 (patch) | |
tree | ebd088e5ccb2ca8162b53f1c443c6de303e9abe7 /numpy/testing | |
parent | 3496a3cda8ea70253a76ed17c0af261f2d645fe2 (diff) | |
download | numpy-c14d4fe25cb5cd482369734dd487ac8f376851c9.tar.gz |
Change most setup.py files
Diffstat (limited to 'numpy/testing')
-rw-r--r-- | numpy/testing/test_type_check.py | 238 | ||||
-rw-r--r-- | numpy/testing/utils.py | 12 |
2 files changed, 6 insertions, 244 deletions
diff --git a/numpy/testing/test_type_check.py b/numpy/testing/test_type_check.py deleted file mode 100644 index aac24bd6e..000000000 --- a/numpy/testing/test_type_check.py +++ /dev/null @@ -1,238 +0,0 @@ - -import sys - -from scipy.testing import * -set_package_path() -import scipy.base;reload(scipy.base);reload(scipy.base.type_check) -from scipy.base import * -restore_path() - -def assert_all(x): - assert(all(x)), x - -class test_mintypecode(ScipyTestCase): - - def check_default_1(self): - for itype in '1bcsuwil': - assert_equal(mintypecode(itype),'d') - assert_equal(mintypecode('f'),'f') - assert_equal(mintypecode('d'),'d') - assert_equal(mintypecode('F'),'F') - assert_equal(mintypecode('D'),'D') - - def check_default_2(self): - for itype in '1bcsuwil': - assert_equal(mintypecode(itype+'f'),'f') - assert_equal(mintypecode(itype+'d'),'d') - assert_equal(mintypecode(itype+'F'),'F') - assert_equal(mintypecode(itype+'D'),'D') - assert_equal(mintypecode('ff'),'f') - assert_equal(mintypecode('fd'),'d') - assert_equal(mintypecode('fF'),'F') - assert_equal(mintypecode('fD'),'D') - assert_equal(mintypecode('df'),'d') - assert_equal(mintypecode('dd'),'d') - #assert_equal(mintypecode('dF',savespace=1),'F') - assert_equal(mintypecode('dF'),'D') - assert_equal(mintypecode('dD'),'D') - assert_equal(mintypecode('Ff'),'F') - #assert_equal(mintypecode('Fd',savespace=1),'F') - assert_equal(mintypecode('Fd'),'D') - assert_equal(mintypecode('FF'),'F') - assert_equal(mintypecode('FD'),'D') - assert_equal(mintypecode('Df'),'D') - assert_equal(mintypecode('Dd'),'D') - assert_equal(mintypecode('DF'),'D') - assert_equal(mintypecode('DD'),'D') - - def check_default_3(self): - assert_equal(mintypecode('fdF'),'D') - #assert_equal(mintypecode('fdF',savespace=1),'F') - assert_equal(mintypecode('fdD'),'D') - assert_equal(mintypecode('fFD'),'D') - assert_equal(mintypecode('dFD'),'D') - - assert_equal(mintypecode('ifd'),'d') - assert_equal(mintypecode('ifF'),'F') - assert_equal(mintypecode('ifD'),'D') - assert_equal(mintypecode('idF'),'D') - #assert_equal(mintypecode('idF',savespace=1),'F') - assert_equal(mintypecode('idD'),'D') - -class test_isscalar(ScipyTestCase): - def check_basic(self): - assert(isscalar(3)) - assert(not isscalar([3])) - assert(not isscalar((3,))) - assert(isscalar(3j)) - assert(isscalar(10L)) - assert(isscalar(4.0)) - -class test_real(ScipyTestCase): - def check_real(self): - y = rand(10,) - assert_array_equal(y,real(y)) - - def check_cmplx(self): - y = rand(10,)+1j*rand(10,) - assert_array_equal(y.real,real(y)) - -class test_imag(ScipyTestCase): - def check_real(self): - y = rand(10,) - assert_array_equal(0,imag(y)) - - def check_cmplx(self): - y = rand(10,)+1j*rand(10,) - assert_array_equal(y.imag,imag(y)) - -class test_iscomplex(ScipyTestCase): - def check_fail(self): - z = array([-1,0,1]) - res = iscomplex(z) - assert(not sometrue(res)) - def check_pass(self): - z = array([-1j,1,0]) - res = iscomplex(z) - assert_array_equal(res,[1,0,0]) - -class test_isreal(ScipyTestCase): - def check_pass(self): - z = array([-1,0,1j]) - res = isreal(z) - assert_array_equal(res,[1,1,0]) - def check_fail(self): - z = array([-1j,1,0]) - res = isreal(z) - assert_array_equal(res,[0,1,1]) - -class test_iscomplexobj(ScipyTestCase): - def check_basic(self): - z = array([-1,0,1]) - assert(not iscomplexobj(z)) - z = array([-1j,0,-1]) - assert(iscomplexobj(z)) - -class test_isrealobj(ScipyTestCase): - def check_basic(self): - z = array([-1,0,1]) - assert(isrealobj(z)) - z = array([-1j,0,-1]) - assert(not isrealobj(z)) - -class test_isnan(ScipyTestCase): - def check_goodvalues(self): - z = array((-1.,0.,1.)) - res = isnan(z) == 0 - assert_all(alltrue(res)) - def check_posinf(self): - assert_all(isnan(array((1.,))/0.) == 0) - def check_neginf(self): - assert_all(isnan(array((-1.,))/0.) == 0) - def check_ind(self): - assert_all(isnan(array((0.,))/0.) == 1) - #def check_qnan(self): log(-1) return pi*j now - # assert_all(isnan(log(-1.)) == 1) - def check_integer(self): - assert_all(isnan(1) == 0) - def check_complex(self): - assert_all(isnan(1+1j) == 0) - def check_complex1(self): - assert_all(isnan(array(0+0j)/0.) == 1) - -class test_isfinite(ScipyTestCase): - def check_goodvalues(self): - z = array((-1.,0.,1.)) - res = isfinite(z) == 1 - assert_all(alltrue(res)) - def check_posinf(self): - assert_all(isfinite(array((1.,))/0.) == 0) - def check_neginf(self): - assert_all(isfinite(array((-1.,))/0.) == 0) - def check_ind(self): - assert_all(isfinite(array((0.,))/0.) == 0) - #def check_qnan(self): - # assert_all(isfinite(log(-1.)) == 0) - def check_integer(self): - assert_all(isfinite(1) == 1) - def check_complex(self): - assert_all(isfinite(1+1j) == 1) - def check_complex1(self): - assert_all(isfinite(array(1+1j)/0.) == 0) - -class test_isinf(ScipyTestCase): - def check_goodvalues(self): - z = array((-1.,0.,1.)) - res = isinf(z) == 0 - assert_all(alltrue(res)) - def check_posinf(self): - assert_all(isinf(array((1.,))/0.) == 1) - def check_posinf_scalar(self): - assert_all(isinf(array(1.,)/0.) == 1) - def check_neginf(self): - assert_all(isinf(array((-1.,))/0.) == 1) - def check_neginf_scalar(self): - assert_all(isinf(array(-1.)/0.) == 1) - def check_ind(self): - assert_all(isinf(array((0.,))/0.) == 0) - #def check_qnan(self): - # assert_all(isinf(log(-1.)) == 0) - # assert_all(isnan(log(-1.)) == 1) - -class test_isposinf(ScipyTestCase): - def check_generic(self): - vals = isposinf(array((-1.,0,1))/0.) - assert(vals[0] == 0) - assert(vals[1] == 0) - assert(vals[2] == 1) - -class test_isneginf(ScipyTestCase): - def check_generic(self): - vals = isneginf(array((-1.,0,1))/0.) - assert(vals[0] == 1) - assert(vals[1] == 0) - assert(vals[2] == 0) - -class test_nan_to_num(ScipyTestCase): - def check_generic(self): - vals = nan_to_num(array((-1.,0,1))/0.) - assert_all(vals[0] < -1e10) and assert_all(isfinite(vals[0])) - assert(vals[1] == 0) - assert_all(vals[2] > 1e10) and assert_all(isfinite(vals[2])) - def check_integer(self): - vals = nan_to_num(1) - assert_all(vals == 1) - def check_complex_good(self): - vals = nan_to_num(1+1j) - assert_all(vals == 1+1j) - def check_complex_bad(self): - v = 1+1j - v += array(0+1.j)/0. - vals = nan_to_num(v) - # !! This is actually (unexpectedly) zero - assert_all(isfinite(vals)) - def check_complex_bad2(self): - v = 1+1j - v += array(-1+1.j)/0. - vals = nan_to_num(v) - assert_all(isfinite(vals)) - #assert_all(vals.imag > 1e10) and assert_all(isfinite(vals)) - # !! This is actually (unexpectedly) positive - # !! inf. Comment out for now, and see if it - # !! changes - #assert_all(vals.real < -1e10) and assert_all(isfinite(vals)) - - -class test_real_if_close(ScipyTestCase): - def check_basic(self): - a = rand(10) - b = real_if_close(a+1e-15j) - assert_all(isrealobj(b)) - assert_array_equal(a,b) - b = real_if_close(a+1e-7j) - assert_all(iscomplexobj(b)) - b = real_if_close(a+1e-7j,tol=1e-6) - assert_all(isrealobj(b)) - -if __name__ == "__main__": - ScipyTest().run() diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 362f30fec..a7d303973 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -17,7 +17,7 @@ def rand(*args): This only uses the standard library, so it is useful for testing purposes. """ import random - from scipy.base import zeros, Float64 + from numpy.core import zeros, Float64 results = zeros(args,Float64) f = results.flat for i in range(len(f)): @@ -64,7 +64,7 @@ def assert_equal(actual,desired,err_msg='',verbose=1): """ Raise an assertion if two items are not equal. I think this should be part of unittest.py """ - from scipy.base import ArrayType + from numpy.core import ArrayType if isinstance(actual, ArrayType) or isinstance(desired, ArrayType): return assert_array_equal(actual, desired, err_msg) msg = '\nItems are not equal:\n' + err_msg @@ -84,7 +84,7 @@ def assert_almost_equal(actual,desired,decimal=7,err_msg='',verbose=1): """ Raise an assertion if two items are not equal. I think this should be part of unittest.py """ - from scipy.base import ArrayType + from numpy.core import ArrayType if isinstance(actual, ArrayType) or isinstance(desired, ArrayType): return assert_array_almost_equal(actual, desired, decimal, err_msg) msg = '\nItems are not equal:\n' + err_msg @@ -134,7 +134,7 @@ def assert_approx_equal(actual,desired,significant=7,err_msg='',verbose=1): def assert_array_equal(x,y,err_msg=''): - from scipy.base import asarray, alltrue, equal, shape, ravel, array2string + from numpy.core import asarray, alltrue, equal, shape, ravel, array2string x,y = asarray(x), asarray(y) msg = '\nArrays are not equal' try: @@ -159,7 +159,7 @@ def assert_array_equal(x,y,err_msg=''): def assert_array_almost_equal(x,y,decimal=6,err_msg=''): - from scipy.base import asarray, alltrue, equal, shape, ravel,\ + from numpy.core import asarray, alltrue, equal, shape, ravel,\ array2string, less_equal, around x = asarray(x) y = asarray(y) @@ -188,7 +188,7 @@ def assert_array_almost_equal(x,y,decimal=6,err_msg=''): raise ValueError, 'arrays are not almost equal' def assert_array_less(x,y,err_msg=''): - from scipy.base import asarray, alltrue, less, equal, shape, ravel, array2string + from numpy.core import asarray, alltrue, less, equal, shape, ravel, array2string x,y = asarray(x), asarray(y) msg = '\nArrays are not less-ordered' try: |