171 lines
5.9 KiB
Python
171 lines
5.9 KiB
Python
# Copyright (c) 2020 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.
|
|
|
|
import os
|
|
import tempfile
|
|
import unittest
|
|
import zipfile
|
|
|
|
from paddle.utils.download import (
|
|
_safe_extract_zip,
|
|
get_path_from_url,
|
|
get_weights_path_from_url,
|
|
)
|
|
|
|
|
|
class TestDownload(unittest.TestCase):
|
|
def download(self, url, md5sum):
|
|
get_weights_path_from_url(url, md5sum)
|
|
|
|
def test_download_model(self):
|
|
url = 'https://paddle-hapi.bj.bcebos.com/unittest/single_file.pdparams'
|
|
md5sum = 'd41d8cd98f00b204e9800998ecf8427e'
|
|
self.download(url, md5sum)
|
|
|
|
def test_exist_download(self):
|
|
url = 'https://paddle-hapi.bj.bcebos.com/unittest/single_file.pdparams'
|
|
md5sum = 'd41d8cd98f00b204e9800998ecf8427e'
|
|
self.download(url, md5sum)
|
|
|
|
def test_download_without_md5sum(self):
|
|
url = 'https://paddle-hapi.bj.bcebos.com/unittest/single_file.pdparams'
|
|
self.download(url, None)
|
|
|
|
def test_download_errors(self):
|
|
with self.assertRaises(RuntimeError):
|
|
url = 'https://paddle-hapi.bj.bcebos.com/unittest/single_file.pdparams'
|
|
md5sum = '8ff74f291f72533f2a7956a4eftttttt'
|
|
self.download(url, md5sum)
|
|
|
|
with self.assertRaises(RuntimeError):
|
|
url = 'https://paddle-hapi.bj.bcebos.com/models/mobilenet_v2_x1.0t.pdparams'
|
|
self.download(url, None)
|
|
|
|
def test_download_and_uncompress(self):
|
|
urls = [
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.zip",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_dir.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_dir.zip",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_file.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_file.zip",
|
|
]
|
|
for url in urls:
|
|
self.download(url, None)
|
|
|
|
def test_get_path_from_url(self):
|
|
urls = [
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.zip",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_dir.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_dir.zip",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_file.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_file.zip",
|
|
]
|
|
for url in urls:
|
|
get_path_from_url(url, root_dir='./test')
|
|
|
|
def test_uncompress_result(self):
|
|
results = [
|
|
[
|
|
"files/single_dir/file1",
|
|
"files/single_dir/file2",
|
|
"files/single_file.pdparams",
|
|
],
|
|
["single_dir/file1", "single_dir/file2"],
|
|
["single_file.pdparams"],
|
|
]
|
|
tar_urls = [
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_dir.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_file.tar",
|
|
]
|
|
|
|
for url, uncompressd_res in zip(tar_urls, results):
|
|
uncompressed_path = get_path_from_url(url, root_dir='./test_tar')
|
|
self.assertTrue(
|
|
all(
|
|
os.path.exists(os.path.join("./test_tar", filepath))
|
|
for filepath in uncompressd_res
|
|
)
|
|
)
|
|
|
|
zip_urls = [
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.zip",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_dir.zip",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/single_file.zip",
|
|
]
|
|
for url, uncompressd_res in zip(zip_urls, results):
|
|
uncompressed_path = get_path_from_url(url, root_dir='./test_zip')
|
|
self.assertTrue(
|
|
all(
|
|
os.path.exists(os.path.join("./test_zip", filepath))
|
|
for filepath in uncompressd_res
|
|
)
|
|
)
|
|
|
|
def test_retry_exception(
|
|
self,
|
|
):
|
|
with self.assertRaises(RuntimeError):
|
|
from paddle.utils.download import _download
|
|
|
|
_download(
|
|
'www.baidu.com',
|
|
'./test',
|
|
)
|
|
|
|
def test_download_methods(
|
|
self,
|
|
):
|
|
urls = [
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.tar",
|
|
"https://paddle-hapi.bj.bcebos.com/unittest/files.zip",
|
|
]
|
|
|
|
from paddle.utils.download import _download
|
|
|
|
methods = ['get']
|
|
|
|
for url in urls:
|
|
for method in methods:
|
|
_download(
|
|
url,
|
|
path='./test',
|
|
method=method,
|
|
)
|
|
|
|
|
|
class TestSafeExtractZip(unittest.TestCase):
|
|
def test_path_traversal_error_message(self):
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
zip_path = os.path.join(tmpdir, "unsafe.zip")
|
|
extract_dir = os.path.join(tmpdir, "extract")
|
|
|
|
with zipfile.ZipFile(zip_path, "w") as archive:
|
|
archive.writestr("../evil.txt", "unsafe")
|
|
|
|
with zipfile.ZipFile(zip_path) as archive:
|
|
with self.assertRaises(ValueError) as cm:
|
|
_safe_extract_zip(archive, extract_dir)
|
|
|
|
self.assertEqual(
|
|
str(cm.exception),
|
|
"Attempted path traversal in zip file: ../evil.txt",
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|