示例#1
0
    def test_update_overrides(self, mock_get_distributor, mock_update):
        mock_get_distributor.return_value = None

        RepoPublishScheduleManager.update(
            self.repo, self.distributor, self.schedule_id, {"override_config": {"foo": "bar"}}
        )

        mock_update.assert_called_once_with(self.schedule_id, {"kwargs": {"overrides": {"foo": "bar"}}})
示例#2
0
    def test_validate_options(self, mock_get_distributor,
                              mock_validate_options, mock_update):
        mock_get_distributor.return_value = {'id': self.distributor}

        RepoPublishScheduleManager.update(self.repo, self.distributor,
                                          self.schedule_id, self.updates)

        mock_validate_options.assert_called_once_with(self.updates)
示例#3
0
    def test_update_overrides(self, mock_get_distributor, mock_update):
        mock_get_distributor.return_value = None

        RepoPublishScheduleManager.update(self.repo, self.distributor, self.schedule_id,
                                       {'override_config': {'foo': 'bar'}})

        mock_update.assert_called_once_with(self.schedule_id,
                                            {'kwargs': {'overrides': {'foo': 'bar'}}})
示例#4
0
    def test_update(self, mock_get_distributor, mock_update):
        mock_get_distributor.return_value = {"id": self.distributor}

        ret = RepoPublishScheduleManager.update(self.repo, self.distributor, self.schedule_id, self.updates)

        mock_update.assert_called_once_with(self.schedule_id, self.updates)
        # make sure it passes through the return value from utils.update
        self.assertEqual(ret, mock_update.return_value)
示例#5
0
    def test_update(self, mock_get_distributor, mock_update):
        mock_get_distributor.return_value = {'id': self.distributor}

        ret = RepoPublishScheduleManager.update(self.repo, self.distributor, self.schedule_id, self.updates)

        mock_update.assert_called_once_with(self.schedule_id, self.updates)
        # make sure it passes through the return value from utils.update
        self.assertEqual(ret, mock_update.return_value)
示例#6
0
    def test_validate_options(self, mock_get_distributor, mock_validate_options, mock_update):
        mock_get_distributor.return_value = {"id": self.distributor}

        RepoPublishScheduleManager.update(self.repo, self.distributor, self.schedule_id, self.updates)

        mock_validate_options.assert_called_once_with(self.updates)
示例#7
0
文件: test_repo.py 项目: pcreech/pulp
 def test_validate_options(self, mock_validate_options, mock_update, m_dist_qs):
     RepoPublishScheduleManager.update(self.repo, self.distributor, self.schedule_id, self.updates)
     mock_validate_options.assert_called_once_with(self.updates)