Exemplo n.º 1
0
 def test_get_repo_checksum_from_scratchpad(self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = \
         {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: 'sha1'}
     self.assertEquals(
         'sha1',
         configuration.get_repo_checksum_type(self.mock_conduit,
                                              self.config))
Exemplo n.º 2
0
 def test_get_repo_checksum_convert_sha_to_sha1(self):
     config_with_checksum = PluginCallConfiguration(
         {}, {CONFIG_KEY_CHECKSUM_TYPE: 'sha'})
     self.assertEquals(
         'sha1',
         configuration.get_repo_checksum_type(self.mock_conduit,
                                              config_with_checksum))
Exemplo n.º 3
0
    def test_get_repo_checksum_update_distributor_config(self, m_dist_qs, m_dist_ctrl):
        self.mock_conduit.get_repo_scratchpad.return_value = {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: "sha1"}

        m_dist_qs.get_or_404.return_value.distributor_type_id = TYPE_ID_DISTRIBUTOR_YUM

        self.assertEquals("sha1", configuration.get_repo_checksum_type(self.mock_conduit, self.config))
        m_dist_ctrl.update.assert_called_with(mock.ANY, mock.ANY, config={"checksum_type": "sha1"})
Exemplo n.º 4
0
 def test_get_repo_checksum_update_distributor_config_non_yum(self, m_dist_qs, m_dist_ctrl):
     """
     If this isn't a yum distributor the config should not be updated in the database
     """
     self.mock_conduit.get_repo_scratchpad.return_value = {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: "sha1"}
     self.assertEquals("sha1", configuration.get_repo_checksum_type(self.mock_conduit, self.config))
     self.assertFalse(m_dist_ctrl.update.called)
Exemplo n.º 5
0
 def test_get_repo_checksum_conduit_with_no_scratchpad(
         self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = None
     self.assertEquals(
         CONFIG_DEFAULT_CHECKSUM,
         configuration.get_repo_checksum_type(self.mock_conduit,
                                              self.config))
Exemplo n.º 6
0
 def test_get_repo_checksum_from_config(self, m_dist_qs, m_dist_ctrl):
     config_with_checksum = PluginCallConfiguration(
         {}, {CONFIG_KEY_CHECKSUM_TYPE: 'sha1'})
     self.assertEquals(
         'sha1',
         configuration.get_repo_checksum_type(self.mock_conduit,
                                              config_with_checksum))
Exemplo n.º 7
0
 def test_get_repo_checksum_distributor_id_not_yum_plugin(
         self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = None
     m_dist_qs.get_or_404.side_effect = MissingResource()
     self.assertEquals(
         CONFIG_DEFAULT_CHECKSUM,
         configuration.get_repo_checksum_type(self.mock_conduit,
                                              self.config))
Exemplo n.º 8
0
 def test_get_repo_checksum_not_in_scratchpad(self, m_dist_qs, m_dist_ctrl):
     # Test with other data in the scratchpad
     self.mock_conduit.get_repo_scratchpad.return_value = \
         {'foo': 'bar'}
     self.assertEquals(
         CONFIG_DEFAULT_CHECKSUM,
         configuration.get_repo_checksum_type(self.mock_conduit,
                                              self.config))
Exemplo n.º 9
0
 def test_get_repo_checksum_update_distributor_config_non_yum(self, mock_distributor_manager):
     """
     If this isn't a yum distributor the config should not be updated in the database
     """
     self.mock_conduit.get_repo_scratchpad.return_value = \
         {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: 'sha1'}
     self.assertEquals('sha1',
                       configuration.get_repo_checksum_type(self.mock_conduit, self.config))
     self.assertFalse(mock_distributor_manager.return_value.update_distributor_config.called)
Exemplo n.º 10
0
    def test_get_repo_checksum_update_distributor_config(self, m_dist_qs, m_dist_ctrl):
        self.mock_conduit.get_repo_scratchpad.return_value = \
            {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: 'sha1'}

        m_dist_qs.get_or_404.return_value.distributor_type_id = TYPE_ID_DISTRIBUTOR_YUM

        self.assertEquals('sha1',
                          configuration.get_repo_checksum_type(self.mock_conduit, self.config))
        m_dist_ctrl.update.assert_called_with(mock.ANY, mock.ANY, config={'checksum_type': 'sha1'})
Exemplo n.º 11
0
    def test_get_repo_checksum_update_distributor_config(self, mock_distributor_manager):
        self.mock_conduit.get_repo_scratchpad.return_value = \
            {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: 'sha1'}

        mock_distributor_manager.return_value.get_distributor.return_value = \
            {'distributor_type_id': TYPE_ID_DISTRIBUTOR_YUM}

        self.assertEquals('sha1',
                          configuration.get_repo_checksum_type(self.mock_conduit, self.config))
        mock_distributor_manager.return_value.update_distributor_config. \
            assert_called_with(ANY, ANY, {'checksum_type': 'sha1'})
Exemplo n.º 12
0
    def test_get_repo_checksum_default_no_update(self, m_dist_qs, m_dist_ctrl):
        """
        Tests that when the default checksum type is used, it does not update the
        distributor config. This is because if a repository is created and then
        published without syncing, it will force the checksum type to be the
        default. When you later sync the repo and it has a checksum type that
        isn't the default, it will break.
        """
        # Setup
        self.mock_conduit.get_repo_scratchpad.return_value = {"foo": "value"}

        # Test
        self.assertEquals(CONFIG_DEFAULT_CHECKSUM, configuration.get_repo_checksum_type(self.mock_conduit, self.config))
        self.assertFalse(m_dist_ctrl.update.called)
Exemplo n.º 13
0
    def test_get_repo_checksum_default_no_update(self, mock_distributor_manager):
        """
        Tests that when the default checksum type is used, it does not update the
        distributor config. This is because if a repository is created and then
        published without syncing, it will force the checksum type to be the
        default. When you later sync the repo and it has a checksum type that
        isn't the default, it will break.
        """
        # Setup
        self.mock_conduit.get_repo_scratchpad.return_value = {'foo': 'value'}

        # Test
        self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
                          configuration.get_repo_checksum_type(self.mock_conduit, self.config))
        self.assertFalse(mock_distributor_manager.return_value.update_distributor_config.called)
Exemplo n.º 14
0
 def test_get_repo_checksum_convert_sha_to_sha1(self, m_dist_qs, m_dist_ctrl):
     config_with_checksum = PluginCallConfiguration({}, {CONFIG_KEY_CHECKSUM_TYPE: 'sha'})
     self.assertEquals('sha1', configuration.get_repo_checksum_type(self.mock_conduit,
                                                                    config_with_checksum))
Exemplo n.º 15
0
 def test_get_repo_checksum_from_default(self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = {'foo': 'value'}
     self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
                       configuration.get_repo_checksum_type(self.mock_conduit, self.config))
Exemplo n.º 16
0
 def test_get_repo_checksum_not_in_scratchpad(self, m_dist_qs, m_dist_ctrl):
     # Test with other data in the scratchpad
     self.mock_conduit.get_repo_scratchpad.return_value = \
         {'foo': 'bar'}
     self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
                       configuration.get_repo_checksum_type(self.mock_conduit, self.config))
Exemplo n.º 17
0
 def test_get_repo_checksum_from_scratchpad(self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = \
         {SCRATCHPAD_DEFAULT_METADATA_CHECKSUM: 'sha1'}
     self.assertEquals('sha1',
                       configuration.get_repo_checksum_type(self.mock_conduit, self.config))
Exemplo n.º 18
0
 def test_get_repo_checksum_from_config(self, m_dist_qs, m_dist_ctrl):
     config_with_checksum = PluginCallConfiguration({}, {CONFIG_KEY_CHECKSUM_TYPE: "sha1"})
     self.assertEquals("sha1", configuration.get_repo_checksum_type(self.mock_conduit, config_with_checksum))
Exemplo n.º 19
0
 def test_get_repo_checksum_from_default(self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = {'foo': 'value'}
     self.assertEquals(
         CONFIG_DEFAULT_CHECKSUM,
         configuration.get_repo_checksum_type(self.mock_conduit,
                                              self.config))
Exemplo n.º 20
0
 def test_get_repo_checksum_conduit_with_no_scratchpad(self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = None
     self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
                       configuration.get_repo_checksum_type(self.mock_conduit, self.config))
Exemplo n.º 21
0
 def test_get_repo_checksum_distributor_id_not_yum_plugin(self, m_dist_qs, m_dist_ctrl):
     self.mock_conduit.get_repo_scratchpad.return_value = None
     m_dist_qs.get_or_404.side_effect = MissingResource()
     self.assertEquals(CONFIG_DEFAULT_CHECKSUM,
                       configuration.get_repo_checksum_type(self.mock_conduit, self.config))
Exemplo n.º 22
0
 def test_get_repo_checksum_from_config(self):
     config_with_checksum = PluginCallConfiguration({}, {CONFIG_KEY_CHECKSUM_TYPE: 'sha1'})
     self.assertEquals('sha1', configuration.get_repo_checksum_type(self.mock_conduit,
                                                                    config_with_checksum))