test_file_utils.py 8.79 KB
Newer Older
Sylvain Gugger's avatar
Sylvain Gugger committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Leandro von Werra's avatar
Leandro von Werra committed
15
import contextlib
16
import importlib
Leandro von Werra's avatar
Leandro von Werra committed
17
import io
18
19
import json
import tempfile
Julien Chaumond's avatar
Julien Chaumond committed
20
import unittest
21
from pathlib import Path
Julien Chaumond's avatar
Julien Chaumond committed
22

23
import transformers
24
25
26

# Try to import everything from transformers to ensure every object can be loaded.
from transformers import *  # noqa F406
27
28
from transformers.testing_utils import DUMMY_UNKNOWN_IDENTIFIER
from transformers.utils import (
Leandro von Werra's avatar
Leandro von Werra committed
29
    CONFIG_NAME,
30
31
    FLAX_WEIGHTS_NAME,
    TF2_WEIGHTS_NAME,
Leandro von Werra's avatar
Leandro von Werra committed
32
33
    WEIGHTS_NAME,
    ContextManagers,
34
35
36
    EntryNotFoundError,
    RepositoryNotFoundError,
    RevisionNotFoundError,
Leandro von Werra's avatar
Leandro von Werra committed
37
    filename_to_url,
38
    find_labels,
39
    get_file_from_repo,
Leandro von Werra's avatar
Leandro von Werra committed
40
    get_from_cache,
41
    has_file,
Leandro von Werra's avatar
Leandro von Werra committed
42
    hf_bucket_url,
43
44
45
    is_flax_available,
    is_tf_available,
    is_torch_available,
Leandro von Werra's avatar
Leandro von Werra committed
46
)
Julien Chaumond's avatar
Julien Chaumond committed
47
48


49
MODEL_ID = DUMMY_UNKNOWN_IDENTIFIER
Julien Chaumond's avatar
Julien Chaumond committed
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# An actual model hosted on huggingface.co

REVISION_ID_DEFAULT = "main"
# Default branch name
REVISION_ID_ONE_SPECIFIC_COMMIT = "f2c752cfc5c0ab6f4bdec59acea69eefbee381c2"
# One particular commit (not the top of `main`)
REVISION_ID_INVALID = "aaaaaaa"
# This commit does not exist, so we should 404.

PINNED_SHA1 = "d9e9f15bc825e4b2c9249e9578f884bbcb5e3684"
# Sha-1 of config.json on the top of `main`, for checking purposes
PINNED_SHA256 = "4b243c475af8d0a7754e87d7d096c92e5199ec2fe168a2ee7998e3b8e9bcb1d3"
# Sha-256 of pytorch_model.bin on the top of `main`, for checking purposes


Leandro von Werra's avatar
Leandro von Werra committed
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Dummy contexts to test `ContextManagers`
@contextlib.contextmanager
def context_en():
    print("Welcome!")
    yield
    print("Bye!")


@contextlib.contextmanager
def context_fr():
    print("Bonjour!")
    yield
    print("Au revoir!")


80
81
82
83
84
class TestImportMechanisms(unittest.TestCase):
    def test_module_spec_available(self):
        # If the spec is missing, importlib would not be able to import the module dynamically.
        assert transformers.__spec__ is not None
        assert importlib.util.find_spec("transformers") is not None
85
86


Julien Chaumond's avatar
Julien Chaumond committed
87
88
89
90
91
92
93
94
95
96
97
98
class GetFromCacheTests(unittest.TestCase):
    def test_bogus_url(self):
        # This lets us simulate no connection
        # as the error raised is the same
        # `ConnectionError`
        url = "https://bogus"
        with self.assertRaisesRegex(ValueError, "Connection error"):
            _ = get_from_cache(url)

    def test_file_not_found(self):
        # Valid revision (None) but missing file.
        url = hf_bucket_url(MODEL_ID, filename="missing.bin")
99
100
101
        with self.assertRaisesRegex(EntryNotFoundError, "404 Client Error"):
            _ = get_from_cache(url)

102
    @unittest.skip("Temp bug in the Hub not returning RepoNotFound errors.")
103
104
105
106
    def test_model_not_found(self):
        # Invalid model file.
        url = hf_bucket_url("bert-base", filename="pytorch_model.bin")
        with self.assertRaisesRegex(RepositoryNotFoundError, "404 Client Error"):
Julien Chaumond's avatar
Julien Chaumond committed
107
108
109
110
111
            _ = get_from_cache(url)

    def test_revision_not_found(self):
        # Valid file but missing revision
        url = hf_bucket_url(MODEL_ID, filename=CONFIG_NAME, revision=REVISION_ID_INVALID)
112
        with self.assertRaisesRegex(RevisionNotFoundError, "404 Client Error"):
Julien Chaumond's avatar
Julien Chaumond committed
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
            _ = get_from_cache(url)

    def test_standard_object(self):
        url = hf_bucket_url(MODEL_ID, filename=CONFIG_NAME, revision=REVISION_ID_DEFAULT)
        filepath = get_from_cache(url, force_download=True)
        metadata = filename_to_url(filepath)
        self.assertEqual(metadata, (url, f'"{PINNED_SHA1}"'))

    def test_standard_object_rev(self):
        # Same object, but different revision
        url = hf_bucket_url(MODEL_ID, filename=CONFIG_NAME, revision=REVISION_ID_ONE_SPECIFIC_COMMIT)
        filepath = get_from_cache(url, force_download=True)
        metadata = filename_to_url(filepath)
        self.assertNotEqual(metadata[1], f'"{PINNED_SHA1}"')
        # Caution: check that the etag is *not* equal to the one from `test_standard_object`

    def test_lfs_object(self):
        url = hf_bucket_url(MODEL_ID, filename=WEIGHTS_NAME, revision=REVISION_ID_DEFAULT)
        filepath = get_from_cache(url, force_download=True)
        metadata = filename_to_url(filepath)
        self.assertEqual(metadata, (url, f'"{PINNED_SHA256}"'))
Leandro von Werra's avatar
Leandro von Werra committed
134

135
136
137
138
139
    def test_has_file(self):
        self.assertTrue(has_file("hf-internal-testing/tiny-bert-pt-only", WEIGHTS_NAME))
        self.assertFalse(has_file("hf-internal-testing/tiny-bert-pt-only", TF2_WEIGHTS_NAME))
        self.assertFalse(has_file("hf-internal-testing/tiny-bert-pt-only", FLAX_WEIGHTS_NAME))

140
141
142
143
144
    def test_get_file_from_repo_distant(self):
        # `get_file_from_repo` returns None if the file does not exist
        self.assertIsNone(get_file_from_repo("bert-base-cased", "ahah.txt"))

        # The function raises if the repository does not exist.
145
146
147
        # Uncomment when bug is fixed.
        # with self.assertRaisesRegex(EnvironmentError, "is not a valid model identifier"):
        #     get_file_from_repo("bert-base-case", "config.json")
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165

        # The function raises if the revision does not exist.
        with self.assertRaisesRegex(EnvironmentError, "is not a valid git identifier"):
            get_file_from_repo("bert-base-cased", "config.json", revision="ahaha")

        resolved_file = get_file_from_repo("bert-base-cased", "config.json")
        # The name is the cached name which is not very easy to test, so instead we load the content.
        config = json.loads(open(resolved_file, "r").read())
        self.assertEqual(config["hidden_size"], 768)

    def test_get_file_from_repo_local(self):
        with tempfile.TemporaryDirectory() as tmp_dir:
            filename = Path(tmp_dir) / "a.txt"
            filename.touch()
            self.assertEqual(get_file_from_repo(tmp_dir, "a.txt"), str(filename))

            self.assertIsNone(get_file_from_repo(tmp_dir, "b.txt"))

Leandro von Werra's avatar
Leandro von Werra committed
166

167
class GenericUtilTests(unittest.TestCase):
Leandro von Werra's avatar
Leandro von Werra committed
168
    @unittest.mock.patch("sys.stdout", new_callable=io.StringIO)
169
    def test_context_managers_no_context(self, mock_stdout):
Leandro von Werra's avatar
Leandro von Werra committed
170
171
172
173
174
175
        with ContextManagers([]):
            print("Transformers are awesome!")
        # The print statement adds a new line at the end of the output
        self.assertEqual(mock_stdout.getvalue(), "Transformers are awesome!\n")

    @unittest.mock.patch("sys.stdout", new_callable=io.StringIO)
176
    def test_context_managers_one_context(self, mock_stdout):
Leandro von Werra's avatar
Leandro von Werra committed
177
178
179
180
181
182
        with ContextManagers([context_en()]):
            print("Transformers are awesome!")
        # The output should be wrapped with an English welcome and goodbye
        self.assertEqual(mock_stdout.getvalue(), "Welcome!\nTransformers are awesome!\nBye!\n")

    @unittest.mock.patch("sys.stdout", new_callable=io.StringIO)
183
    def test_context_managers_two_context(self, mock_stdout):
Leandro von Werra's avatar
Leandro von Werra committed
184
185
186
187
        with ContextManagers([context_fr(), context_en()]):
            print("Transformers are awesome!")
        # The output should be wrapped with an English and French welcome and goodbye
        self.assertEqual(mock_stdout.getvalue(), "Bonjour!\nWelcome!\nTransformers are awesome!\nBye!\nAu revoir!\n")
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214

    def test_find_labels(self):
        if is_torch_available():
            from transformers import BertForPreTraining, BertForQuestionAnswering, BertForSequenceClassification

            self.assertEqual(find_labels(BertForSequenceClassification), ["labels"])
            self.assertEqual(find_labels(BertForPreTraining), ["labels", "next_sentence_label"])
            self.assertEqual(find_labels(BertForQuestionAnswering), ["start_positions", "end_positions"])

        if is_tf_available():
            from transformers import TFBertForPreTraining, TFBertForQuestionAnswering, TFBertForSequenceClassification

            self.assertEqual(find_labels(TFBertForSequenceClassification), ["labels"])
            self.assertEqual(find_labels(TFBertForPreTraining), ["labels", "next_sentence_label"])
            self.assertEqual(find_labels(TFBertForQuestionAnswering), ["start_positions", "end_positions"])

        if is_flax_available():
            # Flax models don't have labels
            from transformers import (
                FlaxBertForPreTraining,
                FlaxBertForQuestionAnswering,
                FlaxBertForSequenceClassification,
            )

            self.assertEqual(find_labels(FlaxBertForSequenceClassification), [])
            self.assertEqual(find_labels(FlaxBertForPreTraining), [])
            self.assertEqual(find_labels(FlaxBertForQuestionAnswering), [])