# This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Copyright(C) 2013-2019 Max-Planck-Society # # NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik. import itertools import numpy as np import pytest from numpy.testing import assert_almost_equal, assert_equal, assert_raises from nifty8 import GLSpace, myassert from ..common import setup_function, teardown_function pmp = pytest.mark.parametrize # [nlat, nlon, expected] CONSTRUCTOR_CONFIGS = [[ 2, None, { 'nlat': 2, 'nlon': 3, 'harmonic': False, 'shape': (6,), 'size': 6, } ], [0, None, { 'error': ValueError }]] def get_dvol_configs(): wgt = [2.0943951, 2.0943951] # for GLSpace(nlat=2, nlon=3) dvol_0 = np.array( list( itertools.chain.from_iterable( itertools.repeat(x, 3) for x in wgt))) return [ [1, dvol_0], ] @pmp('attribute', ['nlat', 'nlon']) def test_property_ret_type(attribute): g = GLSpace(2) myassert(isinstance(getattr(g, attribute), int)) @pmp('nlat, nlon, expected', CONSTRUCTOR_CONFIGS) def test_constructor(nlat, nlon, expected): g = GLSpace(4) if 'error' in expected: with assert_raises(expected['error']): GLSpace(nlat, nlon) else: g = GLSpace(nlat, nlon) for key, value in expected.items(): assert_equal(getattr(g, key), value) @pmp('power, expected', get_dvol_configs()) def test_dvol(power, expected): assert_almost_equal(GLSpace(2).dvol, expected)