import os import stat import time import unittest import uuid from contextlib import contextmanager from distutils.util import strtobool from enum import Enum from typing import Optional from unittest.mock import patch from huggingface_hub.utils import logging from requests.exceptions import HTTPError from tests.testing_constants import ENDPOINT_PRODUCTION, ENDPOINT_PRODUCTION_URL_SCHEME logger = logging.get_logger(__name__) SMALL_MODEL_IDENTIFIER = "julien-c/bert-xsmall-dummy" DUMMY_DIFF_TOKENIZER_IDENTIFIER = "julien-c/dummy-diff-tokenizer" # Example model ids # An actual model hosted on huggingface.co, # w/ more details. DUMMY_MODEL_ID = "julien-c/dummy-unknown" DUMMY_MODEL_ID_REVISION_ONE_SPECIFIC_COMMIT = "f2c752cfc5c0ab6f4bdec59acea69eefbee381c2" # One particular commit (not the top of `main`) DUMMY_MODEL_ID_REVISION_INVALID = "aaaaaaa" # This commit does not exist, so we should 404. DUMMY_MODEL_ID_PINNED_SHA1 = "d9e9f15bc825e4b2c9249e9578f884bbcb5e3684" # Sha-1 of config.json on the top of `main`, for checking purposes DUMMY_MODEL_ID_PINNED_SHA256 = ( "4b243c475af8d0a7754e87d7d096c92e5199ec2fe168a2ee7998e3b8e9bcb1d3" ) # Sha-256 of pytorch_model.bin on the top of `main`, for checking purposes SAMPLE_DATASET_IDENTIFIER = "lhoestq/custom_squad" # Example dataset ids DUMMY_DATASET_ID = "lhoestq/test" DUMMY_DATASET_ID_REVISION_ONE_SPECIFIC_COMMIT = ( # on branch "test-branch" "81d06f998585f8ee10e6e3a2ea47203dc75f2a16" ) def repo_name(id: Optional[str] = None, prefix: str = "repo") -> str: """ Return a readable pseudo-unique repository name for tests. Example: ```py >>> repo_name() repo-2fe93f-16599646671840 >>> repo_name("my-space", prefix='space') space-my-space-16599481979701 """ if id is None: id = uuid.uuid4().hex[:6] ts = int(time.time() * 10e3) return f"{prefix}-{id}-{ts}" def parse_flag_from_env(key, default=False): try: value = os.environ[key] except KeyError: # KEY isn't set, default to `default`. _value = default else: # KEY is set, convert it to True or False. try: _value = strtobool(value) except ValueError: # More values are supported, but let's keep the message simple. raise ValueError("If set, {} must be yes or no.".format(key)) return _value def parse_int_from_env(key, default=None): try: value = os.environ[key] except KeyError: _value = default else: try: _value = int(value) except ValueError: raise ValueError("If set, {} must be a int.".format(key)) return _value _run_git_lfs_tests = parse_flag_from_env("RUN_GIT_LFS_TESTS", default=False) def require_git_lfs(test_case): """ Decorator marking a test that requires git-lfs. git-lfs requires additional dependencies, and tests are skipped by default. Set the RUN_GIT_LFS_TESTS environment variable to a truthy value to run them. """ if not _run_git_lfs_tests: return unittest.skip("test of git lfs workflow")(test_case) else: return test_case class RequestWouldHangIndefinitelyError(Exception): pass class OfflineSimulationMode(Enum): CONNECTION_FAILS = 0 CONNECTION_TIMES_OUT = 1 HF_HUB_OFFLINE_SET_TO_1 = 2 @contextmanager def offline(mode=OfflineSimulationMode.CONNECTION_FAILS, timeout=1e-16): """ Simulate offline mode. There are three offline simulatiom modes: CONNECTION_FAILS (default mode): a ConnectionError is raised for each network call. Connection errors are created by mocking socket.socket CONNECTION_TIMES_OUT: the connection hangs until it times out. The default timeout value is low (1e-16) to speed up the tests. Timeout errors are created by mocking requests.request HF_HUB_OFFLINE_SET_TO_1: the HF_HUB_OFFLINE_SET_TO_1 environment variable is set to 1. This makes the http/ftp calls of the library instantly fail and raise an OfflineModeEmabled error. """ import socket from requests import request as online_request def timeout_request(method, url, **kwargs): # Change the url to an invalid url so that the connection hangs invalid_url = "https://10.255.255.1" if kwargs.get("timeout") is None: raise RequestWouldHangIndefinitelyError( f"Tried a call to {url} in offline mode with no timeout set. Please set" " a timeout." ) kwargs["timeout"] = timeout try: return online_request(method, invalid_url, **kwargs) except Exception as e: # The following changes in the error are just here to make the offline timeout error prettier e.request.url = url max_retry_error = e.args[0] max_retry_error.args = ( max_retry_error.args[0].replace("10.255.255.1", f"OfflineMock[{url}]"), ) e.args = (max_retry_error,) raise def offline_socket(*args, **kwargs): raise socket.error("Offline mode is enabled.") if mode is OfflineSimulationMode.CONNECTION_FAILS: # inspired from https://stackoverflow.com/a/18601897 with patch("socket.socket", offline_socket): yield elif mode is OfflineSimulationMode.CONNECTION_TIMES_OUT: # inspired from https://stackoverflow.com/a/904609 with patch("requests.request", timeout_request): yield elif mode is OfflineSimulationMode.HF_HUB_OFFLINE_SET_TO_1: with patch("huggingface_hub.constants.HF_HUB_OFFLINE", True): yield else: raise ValueError("Please use a value from the OfflineSimulationMode enum.") def set_write_permission_and_retry(func, path, excinfo): os.chmod(path, stat.S_IWRITE) func(path) def with_production_testing(func): file_download = patch( "huggingface_hub.file_download.HUGGINGFACE_CO_URL_TEMPLATE", ENDPOINT_PRODUCTION_URL_SCHEME, ) hf_api = patch( "huggingface_hub.hf_api.ENDPOINT", ENDPOINT_PRODUCTION, ) return hf_api(file_download(func)) def retry_endpoint(function, number_of_tries: int = 3, wait_time: int = 5): """ Retries test if failure, waiting `wait_time`. Should be added to any test hitting the `moon-staging` endpoint that is downloading Repositories or uploading data Args: number_of_tries: Number of tries to attempt a passing test wait_time: Time to wait in-between attempts in seconds """ def decorator(*args, **kwargs): retry_count = 1 while retry_count < number_of_tries: try: return function(*args, **kwargs) except HTTPError as e: if e.response.status_code == 504: logger.info( f"Attempt {retry_count} failed with a 504 error. Retrying new" f" execution in {wait_time} second(s)..." ) time.sleep(5) retry_count += 1 except OSError: logger.info( "Race condition met where we tried to `clone` before fully" " deleting a repository. Retrying new execution in" f" {wait_time} second(s)..." ) retry_count += 1 # Preserve original traceback return function(*args, **kwargs) return decorator