common_test.py 756 字节
Newer Older
1 2 3 4
import paddle.v2.dataset.common
import unittest
import tempfile

Y
Yi Wang 已提交
5

6 7
class TestCommon(unittest.TestCase):
    def test_md5file(self):
Y
Yi Wang 已提交
8
        _, temp_path = tempfile.mkstemp()
9 10
        with open(temp_path, 'w') as f:
            f.write("Hello\n")
Y
Yi Wang 已提交
11 12
        self.assertEqual('09f7e02f1290be211da707a266f153b3',
                         paddle.v2.dataset.common.md5file(temp_path))
13

14 15 16 17 18 19 20
    def test_download(self):
        yi_avatar = 'https://avatars0.githubusercontent.com/u/1548775?v=3&s=460'
        self.assertEqual(
            paddle.v2.dataset.common.DATA_HOME + '/test/1548775?v=3&s=460',
            paddle.v2.dataset.common.download(
                yi_avatar, 'test', 'f75287202d6622414c706c36c16f8e0d'))

Y
Yi Wang 已提交
21

22 23
if __name__ == '__main__':
    unittest.main()