common_test.py 753 字节
Newer Older
1 2 3 4 5 6 7
import paddle.v2.dataset.common
import unittest
import tempfile

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

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'))

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