Example #1
0
 def test_ensure_index(self, mock_workers, mock_dispatch):
     """
     Make sure that the ensure_indexes method is called for all
     the appropriate platform models
     """
     manage.ensure_database_indexes()
     self.assertTrue(mock_dispatch.TaskStatus.ensure_indexes.called)
     self.assertTrue(mock_workers.Worker.ensure_indexes.called)
Example #2
0
 def test_ensure_database_indexes(self, mock_model, mock_plugin_manager):
     """
     Make sure that the ensure_indexes method is called for all
     the appropriate platform models
     """
     test_model = MagicMock()
     mock_plugin_manager.return_value.unit_models.itervalues.return_value = [test_model]
     manage.ensure_database_indexes()
     test_model.ensure_indexes.assert_called_once_with()
Example #3
0
 def test_ensure_database_indexes(self, mock_model, mock_plugin_manager, mock_ensure):
     """
     Make sure that the ensure_indexes method is called for all
     the appropriate platform models
     """
     test_model = MagicMock()
     mock_plugin_manager.return_value.unit_models.itervalues.return_value = [test_model]
     manage.ensure_database_indexes()
     expected = [call(mock_model.RepositoryContentUnit),
                 call(mock_model.Repository),
                 call(mock_model.ReservedResource),
                 call(mock_model.TaskStatus),
                 call(mock_model.Worker),
                 call(test_model)]
     self.assertEquals(mock_ensure.call_args_list, expected)
Example #4
0
 def test_ensure_database_indexes_throws_exception(self, mock_model, mock_plugin_manager):
     """
     Make sure that the ensure_indexes method is called for all
     the appropriate platform models
     """
     test_model = MagicMock()
     test_model.unit_key_fields = ('1', '2', '3')
     unit_key_index = {'fields': test_model.unit_key_fields, 'unique': True}
     test_model._meta.__getitem__.side_effect = [[unit_key_index]]
     mock_plugin_manager.return_value.unit_models.items.return_value = [('test-unit',
                                                                         test_model)]
     with self.assertRaises(ValueError) as context:
         manage.ensure_database_indexes()
     self.assertEqual(context.exception.message, "Content unit type 'test-unit' explicitly "
                                                 "defines an index for its unit key. This is "
                                                 "not allowed because the platform handlesit "
                                                 "for you.")
Example #5
0
 def test_ensure_database_indexes_throws_exception(self, mock_model, mock_plugin_manager):
     """
     Make sure that the ensure_indexes method is called for all
     the appropriate platform models
     """
     test_model = MagicMock()
     test_model.unit_key_fields = ('1', '2', '3')
     unit_key_index = {'fields': test_model.unit_key_fields, 'unique': True}
     test_model._meta.__getitem__.side_effect = [[unit_key_index]]
     mock_plugin_manager.return_value.unit_models.items.return_value = [('test-unit',
                                                                         test_model)]
     with self.assertRaises(ValueError) as context:
         manage.ensure_database_indexes()
     self.assertEqual(context.exception.message, "Content unit type 'test-unit' explicitly "
                                                 "defines an index for its unit key. This is "
                                                 "not allowed because the platform handlesit "
                                                 "for you.")