Spaces:
sonalkum
/
Running on Zero

File size: 2,753 Bytes
1e6d67a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright 2022 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.

import os
import sys
import unittest

from git import Repo


git_repo_path = os.path.abspath(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
sys.path.append(os.path.join(git_repo_path, "utils"))

transformers_path = os.path.join(git_repo_path, "src", "transformers")
# Tests are run against this specific commit for reproducibility
# https://github.com/huggingface/transformers/tree/07f6690206e39ed7a4d9dbc58824314f7089bb38
GIT_TEST_SHA = "07f6690206e39ed7a4d9dbc58824314f7089bb38"

from tests_fetcher import checkout_commit, clean_code, get_module_dependencies  # noqa: E402


class CheckDummiesTester(unittest.TestCase):
    def test_clean_code(self):
        # Clean code removes all strings in triple quotes
        self.assertEqual(clean_code('"""\nDocstring\n"""\ncode\n"""Long string"""\ncode\n'), "code\ncode")
        self.assertEqual(clean_code("'''\nDocstring\n'''\ncode\n'''Long string'''\ncode\n'''"), "code\ncode")

        # Clean code removes all comments
        self.assertEqual(clean_code("code\n# Comment\ncode"), "code\ncode")
        self.assertEqual(clean_code("code  # inline comment\ncode"), "code  \ncode")

    def test_checkout_commit(self):
        repo = Repo(git_repo_path)
        self.assertNotEqual(repo.head.commit.hexsha, GIT_TEST_SHA)
        with checkout_commit(repo, GIT_TEST_SHA):
            self.assertEqual(repo.head.commit.hexsha, GIT_TEST_SHA)
        self.assertNotEqual(repo.head.commit.hexsha, GIT_TEST_SHA)

    def test_get_module_dependencies(self):
        bert_module = os.path.join(transformers_path, "models", "bert", "modeling_bert.py")
        expected_deps = [
            "activations.py",
            "modeling_outputs.py",
            "modeling_utils.py",
            "pytorch_utils.py",
            "models/bert/configuration_bert.py",
        ]
        expected_deps = {os.path.join(transformers_path, f) for f in expected_deps}
        repo = Repo(git_repo_path)
        with checkout_commit(repo, GIT_TEST_SHA):
            deps = get_module_dependencies(bert_module)
        deps = {os.path.expanduser(f) for f in deps}
        self.assertEqual(deps, expected_deps)