示例#1
0
 def test_lazy(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
示例#2
0
 def test_not_callable(self):
     with self.assertRaisesRegex(TypeError, 'function must be a callable'):
         COUNT.aggregate(self.cube.data, axis=0, function='wibble')
示例#3
0
 def test_lazy_not_callable(self):
     with self.assertRaisesRegex(TypeError, 'function must be a callable'):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                              axis=0,
                              function='wibble')
示例#4
0
 def test_name(self):
     self.assertEqual(COUNT.name(), 'count')
示例#5
0
 def test_no_function(self):
     exp_emsg = r"function must be a callable. Got <.* 'NoneType'>"
     with self.assertRaisesRegex(TypeError, exp_emsg):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(), axis=0)
示例#6
0
 def test_ma(self):
     data = COUNT.aggregate(self.cube.data, axis=0, function=self.func)
     self.assertArrayEqual(data, [2])
示例#7
0
 def test_no_function(self):
     exp_emsg = r"function must be a callable. Got <.* 'NoneType'>"
     with self.assertRaisesRegexp(TypeError, exp_emsg):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(), axis=0)
示例#8
0
 def test(self):
     self.assertIsNotNone(COUNT.units_func)
     new_units = COUNT.units_func(None)
     self.assertEqual(new_units, 1)
示例#9
0
 def test(self):
     self.assertEqual(COUNT.name(), 'count')
示例#10
0
 def test_lazy_collapse(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertArrayEqual(lazy_data.compute(), [3])
示例#11
0
 def test_ma(self):
     data = COUNT.aggregate(self.cube.data, axis=0, function=self.func)
     self.assertArrayEqual(data, [2])
示例#12
0
 def test_lazy(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
示例#13
0
 def test_lazy_not_callable(self):
     with self.assertRaisesRegexp(TypeError, 'function must be a callable'):
         COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                              axis=0,
                              function='wibble')
示例#14
0
 def test_not_callable(self):
     with self.assertRaisesRegexp(TypeError, 'function must be a callable'):
         COUNT.aggregate(self.cube.data, axis=0, function='wibble')
示例#15
0
 def test_lazy_collapse(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertArrayEqual(lazy_data.compute(), [3])
示例#16
0
 def test(self):
     shape = ()
     kwargs = dict()
     self.assertTupleEqual(COUNT.aggregate_shape(**kwargs), shape)
     kwargs = dict(wibble='wobble')
     self.assertTupleEqual(COUNT.aggregate_shape(**kwargs), shape)
示例#17
0
 def test(self):
     self.assertIsNotNone(COUNT.units_func)
     new_units = COUNT.units_func(None)
     self.assertEqual(new_units, 1)
示例#18
0
 def test(self):
     shape = ()
     kwargs = dict()
     self.assertTupleEqual(COUNT.aggregate_shape(**kwargs), shape)
     kwargs = dict(wibble='wobble')
     self.assertTupleEqual(COUNT.aggregate_shape(**kwargs), shape)
示例#19
0
 def test_ma(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
     self.assertArrayEqual(lazy_data.compute(), [2])
示例#20
0
 def test_ma(self):
     lazy_data = COUNT.lazy_aggregate(self.lazy_cube.lazy_data(),
                                      axis=0,
                                      function=self.func)
     self.assertTrue(is_lazy_data(lazy_data))
     self.assertArrayEqual(lazy_data.compute(), [2])