Esempio n. 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))
Esempio n. 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')
Esempio n. 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')
Esempio n. 4
0
 def test_name(self):
     self.assertEqual(COUNT.name(), 'count')
Esempio n. 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)
Esempio n. 6
0
 def test_ma(self):
     data = COUNT.aggregate(self.cube.data, axis=0, function=self.func)
     self.assertArrayEqual(data, [2])
Esempio n. 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)
Esempio n. 8
0
 def test(self):
     self.assertIsNotNone(COUNT.units_func)
     new_units = COUNT.units_func(None)
     self.assertEqual(new_units, 1)
Esempio n. 9
0
 def test(self):
     self.assertEqual(COUNT.name(), 'count')
Esempio n. 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])
Esempio n. 11
0
 def test_ma(self):
     data = COUNT.aggregate(self.cube.data, axis=0, function=self.func)
     self.assertArrayEqual(data, [2])
Esempio n. 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))
Esempio n. 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')
Esempio n. 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')
Esempio n. 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])
Esempio n. 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)
Esempio n. 17
0
 def test(self):
     self.assertIsNotNone(COUNT.units_func)
     new_units = COUNT.units_func(None)
     self.assertEqual(new_units, 1)
Esempio n. 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)
Esempio n. 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])
Esempio n. 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])