-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Function optimization] add unittest for downloading with file-lock (#…
…4972) * add unittest for file lock * add file
- Loading branch information
Showing
2 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Copyright (c) 2023 PaddlePaddle Authors. 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. | ||
|
||
from __future__ import annotations | ||
|
||
import hashlib | ||
import os | ||
import unittest | ||
from tempfile import TemporaryDirectory | ||
|
||
from paddlenlp.utils.downloader import get_path_from_url_with_filelock | ||
|
||
|
||
class LockFileTest(unittest.TestCase): | ||
test_url = ( | ||
"https://bj.bcebos.com/paddlenlp/models/transformers/roformerv2/roformer_v2_chinese_char_small/vocab.txt" | ||
) | ||
|
||
def test_downloading_with_exist_file(self): | ||
|
||
with TemporaryDirectory() as tempdir: | ||
lock_file_name = hashlib.md5((self.test_url + tempdir).encode("utf-8")).hexdigest() | ||
lock_file_path = os.path.join(tempdir, ".lock", lock_file_name) | ||
os.makedirs(os.path.dirname(lock_file_path), exist_ok=True) | ||
|
||
# create lock file | ||
with open(lock_file_path, "w", encoding="utf-8") as f: | ||
f.write("temp test") | ||
|
||
# downloading with exist lock file | ||
config_file = get_path_from_url_with_filelock(self.test_url, root_dir=tempdir) | ||
self.assertIsNotNone(config_file) | ||
|
||
def test_downloading_with_opened_exist_file(self): | ||
|
||
with TemporaryDirectory() as tempdir: | ||
lock_file_name = hashlib.md5((self.test_url + tempdir).encode("utf-8")).hexdigest() | ||
lock_file_path = os.path.join(tempdir, ".lock", lock_file_name) | ||
os.makedirs(os.path.dirname(lock_file_path), exist_ok=True) | ||
|
||
# create lock file | ||
with open(lock_file_path, "w", encoding="utf-8") as f: | ||
f.write("temp test") | ||
|
||
# downloading with opened lock file | ||
open_mode = os.O_RDWR | os.O_CREAT | os.O_TRUNC | ||
_ = os.open(lock_file_path, open_mode) | ||
config_file = get_path_from_url_with_filelock(self.test_url, root_dir=tempdir) | ||
self.assertIsNotNone(config_file) |