Ejemplo n.º 1
0
    def __init__(self, owner, repo_name, token=""):
        """Build the GitHub API URL which points to the definition of the repository.

        Args:
            owner (str): the owner's GitHub username
            repo_name (str): the name of the repository
            token (str): the GitHub API token

        Returns:
            dict: a representation of the repo definition

        """
        github = retry_sync(GitHub,
                            kwargs={"token": token},
                            sleeptime_kwargs=_GITHUB_LIBRARY_SLEEP_TIME_KWARGS)
        self._github_repository = retry_sync(
            github.repository,
            args=(owner, repo_name),
            sleeptime_kwargs=_GITHUB_LIBRARY_SLEEP_TIME_KWARGS)
Ejemplo n.º 2
0
def test_retry_sync_always_fail():
    global retry_count
    retry_count["always_fail"] = 0

    def always_fail_sync(*args, **kwargs):
        global retry_count
        retry_count.setdefault("always_fail", 0)
        retry_count["always_fail"] += 1
        raise ScriptWorkerException("fail")

    with mock.patch("asyncio.sleep", new=fake_sleep):
        with pytest.raises(ScriptWorkerException):
            status = utils.retry_sync(always_fail_sync, sleeptime_kwargs={"delay_factor": 0})
            assert status is None
    assert retry_count["always_fail"] == 5
Ejemplo n.º 3
0
def test_retry_sync_fail_first_and_blocks_the_main_process():
    global retry_count
    retry_count["fail_first"] = 0

    def fail_first_sync(*args, **kwargs):
        global retry_count
        retry_count["fail_first"] += 1
        if retry_count["fail_first"] < 2:
            raise ScriptWorkerRetryException("first")
        return "yay"

    start_time = time.time()
    status = utils.retry_sync(fail_first_sync, sleeptime_kwargs={"delay_factor": 0.25, "randomization_factor": 0})
    elapsed_time = time.time() - start_time

    assert 0.4 <= elapsed_time <= 0.6
    assert status == "yay"
    assert retry_count["fail_first"] == 2